/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo-svg {
    filter: brightness(0) invert(0);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .nav-link {
    color: #333;
}

.navbar.scrolled .nav-link:hover {
    color: #8b7355;
}

.nav-actions {
    display: flex;
    gap: 20px;
}

.nav-icon {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .nav-icon {
    color: #333;
}

.navbar.scrolled .nav-icon:hover {
    color: #8b7355;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar.scrolled .bar {
    background-color: #333;
}

/* Hero Gallery */
.hero-gallery {
    margin-top: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid white;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.cta-button:hover {
    background-color: white;
    color: #000;
}

.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}

.hero-prev, .hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-prev:hover, .hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Scrolling Gallery */
.scrolling-gallery {
    padding: 120px 0;
    background: #fafafa;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    grid-auto-rows: min-content; /* Auto-adjust to content height */
    justify-content: center;
    align-content: start;
    transition: max-width 0.3s ease;
    height: auto; /* Let container size to content */
}

/* Dynamic classes for different item counts */
.gallery-container.few-items {
    max-width: 900px;
}

.gallery-container.single-item {
    max-width: 400px;
}

.gallery-container.two-items {
    max-width: 700px;
}

.gallery-container.three-items {
    max-width: 900px;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Pinterest-style varying heights - using actual heights */
.gallery-item.small {
    height: 250px;
}

.gallery-item.medium {
    height: 350px;
}

.gallery-item.large {
    height: 450px;
}

.gallery-item.tall {
    height: 550px;
}

.gallery-item.wide {
    height: 300px;
}

.gallery-item.extra-tall {
    height: 650px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    border-radius: 5px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: left;
    padding: 20px;
    border-radius: 5px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

/* Discover More Section */
.discover-more {
    padding: 120px 0;
    background: #fff;
}

.discover-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 80px;
}

.discover-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.discover-text h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.discover-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.discover-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.discover-btn {
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid #2c2c2c;
}

.discover-btn.primary {
    background-color: #2c2c2c;
    color: white;
}

.discover-btn.primary:hover {
    background-color: transparent;
    color: #2c2c2c;
}

.discover-btn.secondary {
    background-color: transparent;
    color: #2c2c2c;
}

.discover-btn.secondary:hover {
    background-color: #2c2c2c;
    color: white;
}

.discover-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #2c2c2c;
    color: white;
}

.feature-icon i {
    font-size: 2rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.discover-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #f8f8f8;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-family: 'Playfair Display', serif;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8b7355;
    width: 30px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c2c2c;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b7355;
    background: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    background-color: #8b7355;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit:hover:not(:disabled) {
    background-color: #6b5a45;
    transform: translateY(-2px);
}

.contact-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: #2c2c2c;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    font-size: 16px;
}

.newsletter-form button {
    background-color: #8b7355;
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #6b5a45;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #ccc;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #8b7355;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu .nav-link {
        color: #333;
        padding: 15px 0;
    }

    .nav-menu .nav-link:hover {
        color: #8b7355;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-gallery {
        height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-navigation {
        padding: 0 20px;
    }

    .hero-prev, .hero-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        grid-auto-rows: min-content; /* Auto-adjust to content height */
    }
    
    .gallery-container.single-item,
    .gallery-container.two-items {
        max-width: 100%;
    }

    .gallery-item.small {
        height: 200px;
    }

    .gallery-item.medium {
        height: 256px;
    }

    .gallery-item.large {
        height: 320px;
    }

    .gallery-item.tall {
        height: 384px;
    }

    .gallery-item.wide {
        height: 200px;
    }

    .gallery-item.extra-tall {
        height: 448px;
    }

    .discover-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .discover-actions {
        flex-direction: column;
        align-items: center;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 10px;
        grid-auto-rows: min-content; /* Auto-adjust to content height */
    }
    
    .gallery-container.single-item,
    .gallery-container.two-items,
    .gallery-container.three-items,
    .gallery-container.few-items {
        max-width: 100%;
    }

    .gallery-item.small {
        height: 150px;
    }

    .gallery-item.medium {
        height: 180px;
    }

    .gallery-item.large {
        height: 240px;
    }

    .gallery-item.tall {
        height: 300px;
    }

    .gallery-item.wide {
        height: 120px;
    }

    .gallery-item.extra-tall {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .gallery-title {
        font-size: 2rem;
    }

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

    .discover-text h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 20px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-item i {
        font-size: 1.2rem;
        width: 25px;
    }
}

/* About Page Styles */
.about-hero {
    height: 60vh;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('public/medium_Whats_App_Image_2025_09_19_at_18_11_05_121e9fe242.jpeg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

/* Our Story Section */
.our-story {
    padding: 120px 0;
    background: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover .story-img {
    transform: scale(1.05);
}

/* Philosophy Section */
.philosophy {
    padding: 120px 0;
    background: #f8f8f8;
}

.philosophy-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.philosophy-item {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.philosophy-item:hover .philosophy-icon {
    background: #8b7355;
    color: white;
}

.philosophy-icon i {
    font-size: 2rem;
    color: #8b7355;
    transition: color 0.3s ease;
}

.philosophy-item:hover .philosophy-icon i {
    color: white;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    font-size: 1rem;
}

/* Team Section */
.team {
    padding: 120px 0;
    background: #fff;
}

.team-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.team-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.member-role {
    color: #8b7355;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.95rem;
}

/* About Stats Section */
.about-stats {
    padding: 80px 0;
    background: #2c2c2c;
    color: white;
}

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

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: #f8f8f8;
}

.process-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.process h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.process-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #8b7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
    margin-top: 20px;
    letter-spacing: 1px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    font-size: 1rem;
}

/* About CTA Section */
.about-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #8b7355 0%, #6b5a45 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid white;
}

.cta-button.primary {
    background-color: white;
    color: #8b7355;
}

.cta-button.primary:hover {
    background-color: transparent;
    color: white;
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #8b7355;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text h2 {
        font-size: 2.5rem;
    }

    .story-img {
        height: 300px;
    }

    .philosophy h2,
    .team h2,
    .process h2 {
        font-size: 2.5rem;
    }

    .philosophy-grid,
    .team-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .story-text h2,
    .philosophy h2,
    .team h2,
    .process h2,
    .cta-content h2 {
        font-size: 2rem;
    }

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

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .philosophy-item,
    .team-member,
    .process-step {
        padding: 30px 20px;
    }

    .member-image {
        height: 250px;
    }
}
