
/* General body settings */
body {
    margin: 0;
    font-family: 'Anton', sans-serif;
    background: url('./images/background\ image.png') no-repeat center center fixed;
    background-size: cover;
    color: #4e4e4e;
    overflow-x: hidden;
}
.logo-text {
    /* font-family: 'Anton', sans-serif; */
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
/* Header styling */
header {
    background-color: rgba(210, 180, 140, 0.8); /* Light brown */
    padding: 10px 20px;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
    font-family: 'Anton',sans-serif;
}

.logo-img {
    width: 50px;
    height: auto;
}

nav .nav-button {
    margin-left: 10px;
    background-color: #f5f5dc; /* Cream background */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Anton', sans-serif;
    border-radius: 5px; /* Rounded corners for buttons */
    transition: background-color 0.3s ease;
}

nav .nav-button:hover {
    background-color: #e0e0d1; /* Slightly darker cream on hover */
}

/* Slider container to control size and position */
.slider-container {
    position: relative;
    width: 70%; /* Adjust to fit your desired size */
    max-width: 800px; /* Maximum width */
    margin: 20px auto;
    overflow: hidden; /* Hide overflow */
}

/* Slider settings */
.slider {
    display: flex;
    width: calc(100% * 3); /* Total width of all slides */
    transition: transform 0.5s ease-in-out; /* Smooth transition */
    position: relative; /* Required for absolutely positioned descriptions */
}

/* Each slide settings */
.slide {
    flex: 0 0 33.33%; /* Each slide takes up 33.33% of the container width */
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center; /* Center image vertically */
    position: relative; /* For positioning the description */
    transition: transform 0.5s ease, border 0.5s ease;
    background-size: contain;
   
}

/* Image settings */
.slide img {
    width: 100%; /* Smaller width for side images */
    height: 375px;
    display: block;
    border: 3px solid transparent; /* Default border */
    transition: transform 0.5s ease, border 0.5s ease;
   
    margin: top 40px; ;

}
.slide img :hover {
    height: 400
0px;
}


/* Description box */
.description {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    width: 80%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 5px;
}

/* Show description on hover */
.slide:hover .description {
    opacity: 1;
    width: 100%;
    
}

/* When the slide is active (in center) */
.slide-active img {
    transform: scale(1.3); /* Enlarge the image */
    border: 3px solid #4CAF50; /* Green border when active */
}

/* Adjust sizes for side images */
.slide:not(.slide-active) img {
    width: 50%; /* Even smaller size for side images */
}

/* Footer content styling */
footer.main-footer {
    background-color: rgba(210, 180, 140, 0.8); /* Light brown background */
    color: #4e4e4e;
    padding: 40px 20px;
    text-align: center;
   
}
footer{
    position:absolute;
    bottom:0px;
    width:100%;


}

.footer-content {
    display: flex;
    justify-content: center; /* Center horizontally */
    gap: 30px; /* Gap between the boxes */
    max-width: 1000px; /* Adjust max-width */
    margin: auto;
    flex-wrap: wrap;
}

.our-vision, .our-mission {
    width: 40%; /* Adjust width to fit side by side */
    padding: 15px;
    background-color: rgba(245, 245, 220, 0.8); /* Cream background with reduced opacity */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px; /* Add margin to create space around each box */
}

.our-vision h2, .our-mission h2 {
    margin-bottom: 10px;
    font-size: 20px; /* Adjust font size */
}

.our-vision p, .our-mission p {
    font-size: 14px; /* Adjust font size */
}

/* Footer section styling */
footer.footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 5px 10px; /* Reduced padding */
    text-align: center;
    font-size: 14px; /* Smaller font size */
}

.footer-content {
    max-width: 1000px; /* Adjust max width to fit content */
    margin: auto;
}

.footer-text {
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    gap: 15px; /* Smaller space between items */
}

.footer-link {
    color: #fff; /* White text for links */
    text-decoration: none; /* Remove underline */
    font-size: 14px; /* Smaller font size for links */
}

.footer-link:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Responsive design for small screens */
@media (max-width: 768px) {
    .slider-container {
        width: 90%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Smaller gap for mobile view */
    }

    .our-vision, .our-mission {
        width: 90%;
        margin-bottom: 20px;
    }
}
