@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

body {
    font-family: "Merriweather Sans", sans-serif;
    background-color: RGB(54, 83, 65);
    padding-top: 16.5vh; /* Adjust based on navbar height */
    margin: 0;  /* Ensure no margin */
    width: 100%;  /* Ensure the body takes up 100% of the width */
}

.logo {
    height: 115px;
}
.logo2 {
    height: 100px;
}
@media (max-width: 1589px) {
    a.nav-link {
        font-size: 16px !important; /* Adjust font size for smaller screens */
    }
    
}
@media (max-width: 1523px) {
    a.nav-link {
        font-size: 14px !important; /* Adjust font size for smaller screens */
    }
    .navbar-brand {
        font-size: 14px !important; /* Adjust brand font size for smaller screens */
    }
    
}
@media (max-width: 1457px) {
    a.nav-link {
        font-size: 12px !important; /* Adjust font size for smaller screens */
    }
    
}
@media (max-width: 1288px) {
    .navbar-brand {
        font-size: 12px !important; /* Adjust brand font size for smaller screens */
    }
    .logo {
        height: 70px; /* Smaller logo for tablets */
    }
    .slow-gan {
        top: 35% !important;
        left: 40% !important;
        font-size: 3.2vw !important; /* Smaller font size for tablets */
        padding: 0 !important; /* Smaller padding for tablets */ 
        width: 70vw !important; /* Adjust width for better visibility */
        background-color: transparent !important; /* Make background transparent for tablets */
        font-weight: bold !important; /* Make text bold for better visibility */
        color: white !important; /* Ensure text is visible */
    }
    
}
@media (max-width: 593px) {
    #logo2{
        display: none; /* Hide the second logo on small screens */
    }
    #certification{
        visibility: visible;
    }
}
@media (max-width: 1190px) {
    .logo{
        height: 70px; /* Smaller logo for phones */
    }
    .logo2 {
        height: 70px; /* Smaller logo for phones */
    }
    .navbar-brand {
        display: flex;
        align-items: center;
    }
    .navbar-brand span {
        font-size: 12px; /* Reduce text size */
        white-space: nowrap; /* Prevent wrapping */
    }
    .navbar-brand {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        margin-bottom: 5px;
    }
    .team-member {
        margin-bottom: 20px;
    }
    
}

.navbar-custom {
    background: rgb(39,65,53);
    padding: 10px 3%;
}
.navbar-custom .nav-link {
    color: white !important;
    font-size: 18px;
    transition: all 0.3s;
}
.navbar-custom .nav-link:hover {
    font-weight: bold;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
}
#keyVisualCarousel {
    width: 93vw; /* 80% of the viewport width */
    margin: 20px auto; /* Center the carousel horizontally */
}
.carousel-item img {
    width: 100%;
    height: 69vh;
    object-fit: cover;
    border-radius: 10px;
}

/* Add to your existing CSS */
.slow-gan {
    font-family: "Handlee", cursive;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3vw;  /* Responsive font size */
    font-weight: 500;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    z-index: 10;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 1vw 1vw;
    border-radius: 8px;
    width: 80vw; /* Adjust width for better visibility */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .slow-gan {
        font-size: 4vw;
        padding: 3vw 4vw;
    }
}
.certification {
    visibility: hidden; /* Hide by default */
    position: absolute;
    top: 30%;
    right: 5%;
    color: white;
    font-size: 1.0vw;
    font-weight: 600;
    font-family: "Handlee", cursive;
    text-transform: uppercase;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 1vw;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    width: 14vw;
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.certification img {
    width: 100%;
    height: auto;
}
.certification:hover {
    transform: scale(1.05);
}




.footer {
    background: rgb(39,65,53);
    padding: 10px 0;
    margin-top: 10px;
}

/*End style for Header and footer */

/* for about us style */
/* Add to the .about-team-container to style it as a 2-column layout */
.about-team-container {
    /* display: flex;
    gap: 20px; Add space between columns */
    width: 93vw;
    margin: 0 auto;
}

/* Left column for About Us */
.about-us {
    /* flex: 0.5;  This will make About Us take up available space */
    font-family: "Handlee";
    color: white;
    padding: 20px;
    border: 0px solid whitesmoke;
    border-radius: 10px;
    background-color: transparent;
    /* box-shadow: 0px 0px 10px gray; */
    display: flex;
    flex-direction: column;  /* Ensure content is stacked vertically */
    justify-content: center;  /* Vertically center the content */
    align-items: center;  /* Horizontally center the content */
    height: auto;  /* Ensure the container has a defined height */
}


/* Right column for Team Members */
.team-container {
    /* flex: 1;  This will make Team Members take up available space */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.team-member {
    position: relative;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 100%; /* Increased width */
    height: 33vh; /* Increased height */
}
.team-member:hover {
    transform: scale(1.05);
}
.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-us h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/*Our Farm */

.our-farm {
    flex: 0.5;  /* This will make About Us take up available space */
    font-family: "Handlee";
    color: white;
    padding: 20px;
    border: 0px solid whitesmoke;
    border-radius: 10px;
    background-color: transparent;
    box-shadow: 0px 0px 10px gray;
}
.packing-team-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

/*our packing */

.ourpacking {
    color: white;
    padding: 20px;
    border: 2px solid whitesmoke;
    border-radius: 10px;
    background-color: #4CAF50;
    box-shadow: 0px 0px 10px gray;
    width: 100%; /* Make it full-width on small screens */
    margin: 10px auto;
}

/* long image */
.team-member.large {
    width: 98%; /* Increased width */
    height: 98%; /* Increased height */
    margin: 0 auto; /* Center the image */
}
.team-container-contact {
    flex: 1;  /* This will make Team Members take up available space */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* Responsive grid */
    gap: 20px;
    height: auto;
}

/*Contact US */

.contact-us {
    color: white;
    padding: 20px;
    border: 0px solid whitesmoke;
    border-radius: 10px;
    background-color: transparent;
    box-shadow: 0px 0px 10px gray;

    margin: 0 auto;
}