/* Enhanced About Page Styles */
/* General Styles */
body {
    margin-top: 80px;
}

:root {
    --ivory: #FEFCFA;
    --clay: #E3C8B0;
    --sage: #B5C2B7;
    --taupe: #A58F86;
    --dusty-rose: #D4A59A;
    --deep-moss: #6B7E6B;
    --chocolate: #5C4D3D;
    --linen: #F4ECE3;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-title {
    font-family: "Urbanist", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #FEFCFA;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color:  #FEFCFA;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #FEFCFA;
    font-size: 1.5rem;
}

/* Founder Section */
.founder-section {
    padding: 8rem 2rem;
    background-color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.founder-image-container {
    flex: 1;
    position: relative;
    min-width: 400px;
}

.founder-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(92, 77, 61, 0.15);
    transition: transform 0.5s ease;
}

.founder-content {
    flex: 1;
}

.section-tag {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4B9A3;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    color: #2D2C2A;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.founder-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #85827C;
    margin-bottom: 2rem;
}

.signature {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.8rem;
    color: #4A4845;
    margin-top: 2rem;
    position: relative;
    display: inline-block;
}

.signature::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--dusty-rose), var(--sage));
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--linen);
    position: relative;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.philosophy-card {
    background: var(--ivory);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(165, 143, 134, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(165, 143, 134, 0.2);
}

.philosophy-icon {
    font-size: 2.5rem;
    color: #D4B9A3;
    margin-bottom: 1.5rem;
}

.philosophy-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.5rem;
    color: #4A4845;
    margin-bottom: 1rem;
}

.philosophy-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #85827C;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 2rem;
    background-color: var(--ivory);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1/1;
    box-shadow: 0 5px 15px rgba(92, 77, 61, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(92, 77, 61, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Floating Elements */
.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .founder-container {
        flex-direction: column;
    }

    .founder-image-container {
        min-width: auto;
        max-width: 500px;
        margin-bottom: 3rem;
    }

    .philosophy-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        margin-top: 70px;
    }
    .hero-title {
        font-size: 3rem;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 60px;
    }
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}