/* public/assets/css/about_premium.css */

:root {
    /* Brand Colors extracted from style.css */
    --color-premium-cream: #FFFCF5;
    /* Matches Home Page bg */
    --color-premium-gold: #FFB303;
    /* Matches Home Page Primary */
    --color-premium-gold-dark: #DA8E00;
    /* Matches Home Page Primary Dark */
    --color-forest-green: #234B24;
    /* Kept for forest accent */
    --color-soft-brown: #3D352E;
    /* Matches Home Page Text */
    --color-text-dark: #2D2720;
    /* Matches Home Page Secondary */
    --color-text-inv: #FFFFFF;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    /* Adjusted to match Home Page Header font */

    --spacing-xs: 0.75rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 5rem;

    --spacing-xl: 8rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Global Reset & Typography */
.about-page-container {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-premium-cream);
    overflow-x: hidden;
}

.about-page-container h1,
.about-page-container h2,
.about-page-container h3 {
    font-family: var(--font-serif);
    color: var(--color-text-dark);
    /* Switched to dark brown for consistency */
    font-weight: 700;
    line-height: 1.1;
}

.about-page-container p {
    color: var(--color-soft-brown);
    font-size: 1.15rem;
    font-weight: 300;
}

/* Hero Section - "Liquid Gold" Theme */
.about-hero {
    position: relative;
    height: 85vh;
    /* Slightly reduced height */
    min-height: 550px;
    background: url('../../assets/images/about_beekeeper.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-inv);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Warmer Gradient to mimic "Liquid Gold" feel */
    background: linear-gradient(to bottom, rgba(40, 25, 0, 0.3), rgba(60, 40, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-md);
    animation: fadeUp 1.2s ease-out;
}

.hero-title {
    font-size: 5rem;
    /* Larger impact */
    margin-bottom: var(--spacing-sm);
    color: #FDFDF7 !important;
    /* Force light color */
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;

    /* Frosted Glass Effect */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Modern Section Styling */
.about-section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    color: var(--color-forest-green);
}

/* Decorative Underline */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-premium-gold);
    margin: 1.5rem auto 0;
    border-radius: 4px;
}

/* Story Section - Asymmetric Layout */
.story-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Image takes less space */
    gap: 5rem;
    align-items: center;
}

.story-text {
    font-size: 1.25rem;
    color: var(--color-soft-brown);
    line-height: 1.8;
}

.story-image-wrapper {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    /* Custom Arch modern shape */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    /* Stylish tilt */
    transition: transform 0.5s ease;
    border: 8px solid white;
    max-width: 400px;
    /* Constrain width */
    margin: 0 auto;
}

.story-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: inherit;
    pointer-events: none;
}

.story-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    /* Vertical portrait ratio */
}

.story-highlight {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-forest-green);
    margin-top: 3rem;
    padding-left: 30px;
    border-left: 3px solid var(--color-premium-gold);
    line-height: 1.3;
    font-style: italic;
}

/* The Difference - Modern Cards */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-md);
}

.diff-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-premium-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 95, 45, 0.1);
}

.diff-card:hover::before {
    transform: scaleX(1);
}

.diff-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-forest-green);
}

.diff-card p {
    font-size: 1.05rem;
    color: #666;
    margin: 0;
}

/* Promise Section - Clean List */
.promise-section {
    background-color: var(--color-forest-green);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Pattern overlay for texture */
.promise-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../../assets/images/pattern_honeycomb.png');
    opacity: 0.05;
    pointer-events: none;
}

.promise-section .section-title {
    color: var(--color-premium-cream);
}

.promise-section .section-title::after {
    background: white;
    opacity: 0.3;
}

.promise-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.promise-item {
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    /* Glassy background */
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}

.promise-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.check-icon {
    color: var(--color-premium-gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Mission & Vision - Elegant Boxes */
.mv-section {
    background: linear-gradient(to bottom, #fff 50%, var(--color-premium-cream) 50%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mv-box {
    text-align: left;
    padding: 4rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
}

.mv-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mv-box h3::before {
    content: '';
    /* Decorative dot */
    width: 12px;
    height: 12px;
    background: var(--color-premium-gold);
    border-radius: 50%;
    display: inline-block;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../../assets/images/hero_honey_drip.jpg') center/cover fixed;
    color: white;
    padding: 10rem 2rem;
}

.closing-statement {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-premium-cream);
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-premium {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    /* Fully rounded like Home Page */
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--font-sans);
    /* Use sans-serif for buttons to match home */
}

.btn-primary-gold {
    background: var(--color-premium-gold);
    color: #2D2720;
    /* Dark text on bright yellow as per style.css */
    border: none;
    box-shadow: 0 4px 15px rgba(255, 179, 3, 0.4);
}

.btn-primary-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-primary-gold:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-secondary-outline {
    border: 2px solid var(--color-premium-cream);
    color: var(--color-premium-cream);
    background: transparent;
}

.btn-secondary-outline:hover {
    background: var(--color-premium-cream);
    color: var(--color-text-dark);
}

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .closing-statement {
        font-size: 2.2rem;
    }

    .story-image-wrapper {
        order: -1;
        /* Image first on mobile */
        margin-bottom: 1rem;
        box-shadow: 10px 10px 0 var(--color-premium-gold);
    }
}