/* --- About Us Page - Ultra Premium Boutique Styling --- */

:root {
    --color-primary: #000000;
    --color-gold: #d4af37;
    --color-gold-light: #f9f295;
    --color-gold-dark: #8c6a42;
    --color-silk: #f8f5f2;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Hero Section - Ultra Premium Redesign --- */
.about-hero {
    height: 100vh; /* Full height for impact */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%; /* Only covers part of the screen for asymmetric look */
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    animation: heroZoom 30s infinite alternate linear;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000 35%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left; /* Asymmetric left-aligned */
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

.hero-text-box {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px; /* More architectural than pill */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-gold);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 95px;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -3px;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.hero-title span {
    display: block;
    color: var(--color-gold);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 0.9em;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 450px;
    animation: fadeInLeft 1.2s ease-out 0.4s both;
    border-left: 2px solid var(--color-gold);
    padding-left: 30px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLineAnim 2s infinite linear;
}

@keyframes scrollLineAnim {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Narrative Section --- */
.about-decorations {
    display: none;
}

.narrative-section {
    padding: 40px 0 80px; /* Significantly reduced top padding */
    background: #fff;
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.narrative-img-box {
    position: relative;
}

.main-about-img {
    width: 100%;
    margin-top: 0; /* Removed 10% margin as requested */
    border-radius: 40px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.1);
}

.floating-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #000;
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    max-width: 300px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.floating-card h4 {
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.floating-card p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

.narrative-content h2 {
    font-size: 50px;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    color: #111;
}

.narrative-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

/* --- Values Section --- */
.values-section {
    background: var(--color-silk);
    padding: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    transition: 0.5s;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-20px);
    border-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(140, 106, 66, 0.1);
}

.value-icon {
    font-size: 45px;
    color: var(--color-gold-dark);
    margin-bottom: 30px;
    display: inline-block;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* --- Founders Quote - Soft Premium Redesign --- */
.quote-section {
    padding: 60px 0 150px; /* Reduced top padding from 150px to 60px */
    background: var(--color-silk); /* Soft cream/silk background */
    color: #111;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/natural-paper.png'); /* Subtle texture */
    opacity: 0.5;
    pointer-events: none;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px;
    background: #fff;
    border-radius: 4px; /* Architectural look */
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

.quote-icon-box {
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    margin: -90px auto 40px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.quote-text {
    font-size: 38px;
    font-family: var(--font-heading);
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 500;
    color: #222;
    font-style: italic;
}

.quote-author {
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.quote-author::before, .quote-author::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold-dark);
    opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 70px;
    }
    
    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: auto;
        padding: 0 0 40px; /* Reduced top padding from 100px */
        flex-direction: column;
    }

    .hero-bg-img {
        width: 100%;
        height: 350px;
        position: relative;
        right: auto;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    }

    .narrative-section {
        position: relative;
        overflow: hidden;
    }

    .hero-overlay {
        background: linear-gradient(0deg, #000 30%, rgba(0,0,0,0) 100%);
    }

    .hero-content {
        padding: 40px 20px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-text-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: 42px !important;
        letter-spacing: -1px !important;
        text-align: center !important;
    }

    .hero-subtitle {
        font-size: 15px !important;
        padding-left: 0 !important;
        border-left: none !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .scroll-indicator {
        display: none; /* Hide on mobile to save space */
    }

    .narrative-content {
        padding: 40px 10px; /* Reduced from 20px to 10px as requested */
        text-align: center;
    }

    .narrative-content h2 {
        font-size: 24px !important; /* Reduced from 32px for better fit */
        margin-bottom: 20px !important;
        line-height: 1.2;
    }

    .narrative-content p {
        font-size: 15px !important; /* Reduced from 18px */
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify; /* Changed to justify as requested */
    }

    /* Nails Effects for Mobile */
    .about-decorations {
        display: block !important;
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
    }

    .about-decor {
        position: absolute;
        font-size: 30px;
        color: var(--color-gold);
        opacity: 0.15;
        animation: floatAboutNails 8s infinite ease-in-out;
    }

    .about-decor.decor-1 { top: 10%; left: 5%; animation-delay: 0s; }
    .about-decor.decor-2 { top: 30%; right: 5%; animation-delay: 2s; }
    .about-decor.decor-3 { top: 60%; left: 10%; animation-delay: 4s; }
    .about-decor.decor-4 { bottom: 10%; right: 10%; animation-delay: 6s; }

    @keyframes floatAboutNails {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-30px) rotate(15deg); }
    }

    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -40px 20px 0;
        z-index: 10;
        background: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(212, 175, 55, 0.4);
        padding: 30px !important;
        border-radius: 24px !important;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212, 175, 55, 0.1);
    }

    .floating-card h4 {
        font-size: 42px !important;
        margin-bottom: 5px !important;
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }

    .values-section {
        padding: 60px 0; /* Set to 0 to maximize card width as requested */
    }

    .values-grid {
        grid-template-columns: 1fr !important; /* Explicitly one per line */
        gap: 20px;
    }

    .value-card {
        padding: 25px 15px; /* Reduced from 40px 25px */
        margin-bottom: 0;
        border-radius: 20px;
        background: #fff;
        border: 1px solid rgba(212, 175, 55, 0.2); /* Soft gold border */
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .value-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--color-gold); /* Decorative gold bottom bar */
        opacity: 0.7;
    }

    .value-icon {
        font-size: 34px; /* Slightly smaller icon */
        color: var(--color-gold);
        margin-bottom: 15px; /* Reduced from 25px */
        filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.2));
    }

    .value-card h3 {
        font-size: 20px; /* Slightly smaller title */
        margin-bottom: 8px; /* Reduced from 15px */
    }

    .value-card p {
        text-align: justify;
        font-size: 13px; /* Slightly smaller text for compact look */
        line-height: 1.5;
        color: #666;
    }

    .quote-section {
        padding: 100px 10px; /* Precise 10px side gap as requested */
    }

    .quote-box {
        padding: 50px 15px; /* Slightly more vertical, less horizontal for wider look */
        width: 100%;
    }

    .quote-text {
        font-size: 22px; /* Slightly smaller for better fit */
        line-height: 1.6;
    }

    .quote-author {
        font-size: 11px;
        letter-spacing: 3px;
        gap: 10px;
    }

    .quote-author::before, .quote-author::after {
        width: 20px;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
