/* Import Fun Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #2E8B57; /* Dark Green text */
    line-height: 1.6;
    background-color: #ffffff; /* Simple white background */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3 {
    font-weight: 700;
    color: #2E8B57;
}

a {
    color: #2E8B57; /* Dark Green */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.logo-image-face {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
border-radius: 50%;
}

.logo-nav-rework {
    width: 120px;
    height: auto;
}
/* Navigation Bar */
.store-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #e6f2e6; /* Light green background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(46, 139, 87, 0.3);
    z-index: 1000;
}

.store-nav .logo {
    font-weight: 700;
    font-size: 1.8em;
    color: #2E8B57;
    cursor: pointer;
}

.store-nav .nav-links {
    display: flex;
    align-items: center;
}

.store-nav .nav-links a {
    margin-left: 25px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: 1em;
    color: #2E8B57;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #2E8B57;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin: 0;
}

.dropdown-content a:hover {
    background-color: #e6f2e6;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 100%;
    height: 100%;
    gap: 0;
}

.hero-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-grid img:hover {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-button {
    background-color: #2E8B57;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #4a7c4a;
    transform: scale(1.05);
}

/* Product Section */
.product-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.product-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-card h3 {
    margin: 0 0 5px 0;
    font-size: 1em;
    font-weight: 600;
    color: #2E8B57;
    line-height: 1.3;
}

.product-card p.price {
    font-weight: 600;
    color: #2E8B57;
    font-size: 1em;
    margin: 0;
}

/* Sold Out Overlay */
.product-card.sold-out {
    position: relative;
    opacity: 0.7;
}

.product-card.sold-out::before {
    content: "SOLD OUT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9em;
    z-index: 10;
    letter-spacing: 1px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(46, 139, 87, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.modal-content img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.modal-details {
    flex: 1;
}

.modal-details h3 {
    margin-top: 0;
    font-size: 1.8em;
    color: #2E8B57;
}

.modal-details p {
    font-size: 1.1em;
    color: #4a7c4a;
    margin-bottom: 15px;
}

.modal-price {
    font-weight: 700;
    font-size: 1.3em;
    color: #2E8B57;
}
#modalDescription {
    white-space: pre-wrap;
}
/* Content Sections */
.content-section {
    padding: 80px 20px;
    background-color: #f9f9f9; /* Light off-white/cream background */
    text-align: center;
}

.content-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2E8B57;
}

.content-section p {
    font-size: 1.2em;
    color: #4a7c4a;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    background-color: #f9f9f9;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-item {
    text-align: center;
    padding: 20px;
}

.impact-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.impact-item h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2E8B57;
}

.impact-item p {
    color: #4a7c4a;
    line-height: 1.6;
}

/* Carousel Section */
.content-section#community {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.content-section#community h2 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}

.content-section#community h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2E8B57, #27ae60);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Carousel Section */
.content-section#community {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.content-section#community h2 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}

.content-section#community h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2E8B57, #27ae60);
    margin: 15px auto 0;
    border-radius: 2px;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 30px 0;
}

.carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontal centering */
    justify-content: center; /* Vertical centering */
    text-align: center;
    box-sizing: border-box;
    padding: 40px 20px; /* Add vertical padding for spacing */
}

.carousel-slide img {
    width: 100%;
    max-width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 3px solid #fff;
    display: block;
    margin: 0 auto; /* Explicit horizontal centering */
}

.carousel-slide img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.carousel-slide h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 100%;
    width: auto;
}

.carousel-slide p {
    color: #7f8c8d;
    line-height: 1.7;
    max-width: 450px;
    font-size: 1.05em;
    margin: 0 auto; /* Ensure paragraph centers too */
}

/* Navigation Buttons */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #2E8B57;
    border: 2px solid #2E8B57;
    padding: 12px 16px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.carousel-prev:hover, .carousel-next:hover {
    background: #2E8B57;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2E8B57;
    transform: scale(1.2);
}

.indicator:hover {
    background: #27ae60;
}



/* Responsive Design */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .product-card img {
        height: 200px;
    }

    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .model-card img {
        height: 200px;
    }

    .collaborations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collaboration-item {
        padding: 15px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-item {
        padding: 15px;
    }

    .content-section {
        padding: 60px 15px;
    }

    .content-section h2 {
        font-size: 2em;
    }

    .hero-overlay h1 {
        font-size: 2.5em;
    }

    .hero-overlay h2 {
        font-size: 1.5em;
    }

    .store-nav .nav-links {
        display: none; /* Hide nav links on mobile, could add hamburger later */
    }

    .store-nav .logo img {
        width: 100px;
    }

    .carousel-slide img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .product-card img {
        height: 180px;
    }

    .model-card img {
        height: 180px;
    }

    .content-section {
        padding: 40px 10px;
    }

    .content-section h2 {
        font-size: 1.8em;
    }

    .hero-overlay h1 {
        font-size: 2em;
    }

    .hero-overlay h2 {
        font-size: 1.2em;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .impact-item h3 {
        font-size: 1.3em;
    }

    .impact-item p {
        font-size: 0.9em;
    }

    .carousel-slide img {
        height: 180px;
    }
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10; /* Much lower z-index to ensure it's way behind content */
    pointer-events: none; /* Prevent interaction with background elements */
    overflow: hidden; /* Prevent background elements from extending beyond container */
}

.light-rays, .shimmer, .floating-elements, .geometric-shapes, .sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10; /* Ensure all background elements are behind content */
}

/* Product Section - Ensure products are above background */
.product-section {
    position: relative;
    z-index: 10; /* Higher than background */
}

.product-grid {
    position: relative;
    z-index: 10; /* Higher than background */
}

.product-card {
    position: relative;
    z-index: 10; /* Higher than background */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Portfolio Section */
.portfolio-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    text-align: center;
}

.portfolio-section h2 {
    margin-bottom: 20px;
}

.portfolio-section p {
    margin-bottom: 40px;
    color: #4a7c4a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: #f9fff9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.portfolio-item h3 {
    margin: 0;
    font-size: 1.2em;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    text-align: center;
}

.about-section h2 {
    margin-bottom: 20px;
}

.about-section p {
    margin-bottom: 40px;
    color: #4a7c4a;
    font-size: 1.1em;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.about-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.about-text h3 {
    margin-bottom: 15px;
}

.about-text p {
    color: #4a7c4a;
}

/* Activities Section */
.activities-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.activities-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.activity-card {
    display: flex;
    align-items: center;
    background: #f9fff9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 30px;
    flex-shrink: 0;
}

.activity-card:nth-child(even) {
    flex-direction: row-reverse;
}

.activity-card:nth-child(even) img {
    margin-right: 0;
    margin-left: 30px;
}

.activity-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
}

.activity-card p {
    color: #4a7c4a;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.testimonial-card {
    display: flex;
    align-items: center;
    background: #f9fff9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 30px;
    flex-shrink: 0;
}

.testimonial-card:nth-child(even) {
    flex-direction: row-reverse;
}

.testimonial-card:nth-child(even) img {
    margin-right: 0;
    margin-left: 30px;
}

.testimonial-card p {
    font-style: italic;
    color: #4a7c4a;
    margin: 0 0 10px 0;
    flex: 1;
}

.testimonial-card cite {
    font-weight: 600;
    color: #2E8B57;
}

/* Footer */
.store-footer {
    background-color: #e6f2e6;
    color: #2E8B57;
    padding: 40px 20px 0;
    margin-top: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #c8e6c8;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.left-column {
    gap: 20px;
}

.award-badge {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.land-acknowledgment {
    font-size: 0.9em;
    color: #2E8B57;
    line-height: 1.5;
    margin: 0;
}

.menu-column h4 {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a7c4a;
    margin-bottom: 25px;
}

.footer-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-group h5 {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2E8B57;
    margin-bottom: 15px;
    font-weight: 600;
}

.menu-group a {
    display: block;
    color: #2E8B57;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.menu-group a:hover {
    color: #4a7c4a;
}

.newsletter-column h4 {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a7c4a;
    margin-bottom: 15px;
}

.newsletter-column p {
    color: #2E8B57;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #c8e6c8;
    border-radius: 4px;
    font-size: 0.9em;
    background: rgba(255,255,255,0.7);
}

.newsletter-form button {
    background: #2E8B57;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
}

.newsletter-form button:hover {
    background: #4a7c4a;
}

.social-column h4 {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a7c4a;
    margin-bottom: 25px;
}

.social-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-column li {
    margin-bottom: 12px;
}

.social-column a {
    color: #2E8B57;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.social-column a:hover {
    color: #4a7c4a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    color: #4a7c4a;
    border-top: 1px solid #c8e6c8;
}

.bottom-left select {
    background: transparent;
    border: none;
    color: #2E8B57;
    font-size: 0.85em;
    padding: 5px;
}

.bottom-center {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85em;
}

.bottom-center span {
    white-space: nowrap;
}

.bottom-right .payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .left-column {
        grid-column: span 2;
    }
    
    .menu-column {
        grid-column: span 2;
    }
    
    .newsletter-column,
    .social-column {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .bottom-left select {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .footer-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        padding: 20px 0 15px;
    }
}

/* Categories Section */
.categories-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    text-align: center;
}

.categories-section h2 {
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: #f9fff9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.category-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
}

.category-card p {
    color: #4a7c4a;
    margin: 0;
}

/* Models Section */
/* Models Section */
.models-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.models-section h2 {
    text-align: center;
    font-size: 2.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
}

.models-section .models-subtitle {
    text-align: center;
    color: #4a7c4a;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.model-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.model-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px 12px 0 0;
}

.model-card:hover img {
    transform: scale(1.05);
}

.model-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(46, 139, 87, 0.9), rgba(46, 139, 87, 0.6));
    padding: 20px;
    color: white; /* 👈 WHITE TEXT FOR MAXIMUM CONTRAST */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: center;
    border-radius: 0 0 12px 12px;
}

.model-card:hover .model-overlay {
    opacity: 1;
    transform: translateY(0);
}

.model-overlay h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* 👈 Adds depth for better legibility */
}

.model-overlay p {
    font-size: 0.9em;
    opacity: 0.95;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* 👈 Improves readability */
}

/* Optional: Add subtle glow on hover */
.model-card:hover .model-overlay h3,
.model-card:hover .model-overlay p {
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .models-section {
        padding: 40px 15px;
    }
    
    .models-section h2 {
        font-size: 1.8em;
    }
    
    .models-section .models-subtitle {
        font-size: 1em;
    }
    
    .model-card img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .models-section {
        padding: 30px 10px;
    }
    
    .models-section h2 {
        font-size: 1.6em;
    }
    
    .model-card img {
        height: 200px;
    }
}

/* Collaborations Section */
.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.collaboration-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.collaboration-item:hover {
    transform: translateY(-5px);
}

.collaboration-item h3 {
    margin-bottom: 10px;
    color: #2E8B57;
}

.collaboration-item p {
    color: #4a7c4a;
    font-size: 0.9em;
}
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 200px;
        height: 200px;
    }

    .activity-card,
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .activity-card img,
    .testimonial-card img {
        margin: 0 0 20px 0;
    }

    .activity-card:nth-child(even),
    .testimonial-card:nth-child(even) {
        flex-direction: column;
    }

    .activity-card:nth-child(even) img,
    .testimonial-card:nth-child(even) img {
        margin: 0 0 20px 0;
    }

    .portfolio-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }




