
        /* Root Variables */
        :root {
            /* Colors from existing CSS */
            --primary: #4a5d4a;
            --primary-light: #6b7f6b;
            --primary-dark: #2f3e2f;
            --secondary: #8b6f47;
            --secondary-light: #a68860;
            --accent: #7c9885;
            --success: #6b8e72;
            --warning: #d4a574;
            --danger: #c67e61;
            --info: #5b8fa3;
            --dark: #2c3e2c;
            --gray: #6e7c6e;
            --light-gray: #f5f7f5;
            --bg: #fafbfa;
            --white: #ffffff;
            
            /* Shadows */
            --shadow: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
            
            /* Spacing */
            --spacing-xs: 0.25rem;
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 1.5rem;
            --spacing-xl: 2rem;
            --spacing-2xl: 3rem;
            --spacing-3xl: 4rem;
            --spacing-4xl: 6rem;
            
            /* Border Radius */
            --radius: 12px;
            --radius-lg: 20px;
            --radius-xl: 32px;
            
            /* Transitions */
            --transition-smooth: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-elegant: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
            img#logo-icon {
    position: absolute;
    top: 0;
    width: 80px;
    left: 60px;
    top: 30px;
}

img#logo-icon-front {
    display: flex;
    width: 100px;
    position: absolute;
    top: 200px;
}
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--bg);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Full Page Sections */
        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: url();
        }

        /* Opening Sequence */
        .opening-sequence {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 1s ease;
        }

        .opening-sequence.hide {
            opacity: 0;
            pointer-events: none;
        }

        .opening-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            color: var(--white);
            text-align: center;
            max-width: 900px;
            padding: var(--spacing-xl);
            opacity: 0;
            transform: translateY(30px);
            animation: elegantFadeIn 2s ease forwards;
            letter-spacing: 0.05em;
            line-height: 1.1;
        }

        @keyframes elegantFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Section - Full Width Background */
        .hero {
            /* background: linear-gradient(90deg, rgba(250, 251, 250, 0.95) 20%, rgb(229 255 204 / 56%) 50%, rgba(250, 251, 250, 0.3) 90%, #6bd0b04f 100%), center / cover; */
            background-attachment: fixed;
            border-radius: 0px 0px 30px 30px;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--spacing-3xl);
            width: 100%;
        }

        .hero-content {
            max-width: 600px;
            opacity: 0;
            transform: translateY(50px);
            animation: heroReveal 1.5s ease 3.8s forwards;
        }

        .hero-title {
            font-family: 'Italiana', serif;
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 400;
            color: var(--primary-dark);
            margin-bottom: var(--spacing-xl);
            line-height: 0.9;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 300;
            color: #ffffff;
            line-height: 1.4;
            margin-bottom: var(--spacing-3xl);
        }

        @keyframes heroReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Story Section */
        .story-section {
            background: var(--white);
            position: relative;
        }

        .story-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background: 
                radial-gradient(circle at 20% 50%, var(--primary) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--accent) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, var(--secondary-light) 0%, transparent 50%);
        }

        .story-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: var(--spacing-3xl);
            opacity: 0;
            transform: translateY(80px);
        }

        .story-content.fade-in {
            animation: storyFadeIn 1.5s ease forwards;
        }

        @keyframes storyFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .story-title {
            font-family: 'Italiana', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            color: var(--primary-dark);
            margin-bottom: var(--spacing-2xl);
            position: relative;
            line-height: 1;
        }

        .story-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.3rem, 2vw, 1.8rem);
            color: var(--gray);
            line-height: 1.8;
            font-weight: 300;
        }

        /* Philosophy Section */
        .philosophy-section {
            background: var(--bg);
            padding: var(--spacing-4xl) var(--spacing-xl);
        }

        .philosophy-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .philosophy-header {
            text-align: center;
            margin-bottom: var(--spacing-4xl);
            opacity: 0;
            transform: translateY(50px);
        }

        .philosophy-header.fade-in {
            animation: fadeInUp 1.2s ease forwards;
        }
        
        .philosophy-header .story-title {
            font-family: 'Italiana', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            color: var(--primary-dark);
            margin-bottom: 0;
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-3xl);
        }

        .philosophy-card {
            /* background: var(--white); */
            padding: var(--spacing-3xl);
            border-radius: var(--radius);
            /* box-shadow: 0 10px 40px rgba(0,0,0,0.05); */
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all var(--transition-elegant);
        }

        .philosophy-card.fade-in {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .philosophy-card:nth-child(1) { transition-delay: 0.2s; }
        .philosophy-card:nth-child(2) { transition-delay: 0.4s; }
        .philosophy-card:nth-child(3) { transition-delay: 0.6s; }

        .philosophy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            transform: translateX(-100%);
            transition: transform var(--transition-smooth);
        }

        .philosophy-card:hover {
            transform: translateY(-5px) scale(1);
            /* box-shadow: 0 20px 60px rgba(0,0,0,0.1); */
        }
        
        .philosophy-card:hover::before {
            transform: translateX(0);
        }

        .philosophy-title {
            font-family: 'Italiana', serif;
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: var(--spacing-lg);
            text-align: center;
        }

        .philosophy-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.6;
        }

        /* Collections Section */
        .collections-section {
            background: var(--white);
            padding: var(--spacing-4xl) 0;
        }

        .collections-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--spacing-4xl);
            padding: 0 var(--spacing-xl);
            opacity: 0;
            transform: translateY(50px);
        }

        .collections-header.fade-in {
            animation: fadeInUp 1.2s ease forwards;
        }

        .collections-title {
            font-family: 'Italiana', serif;
            font-size: clamp(3rem, 5vw, 4.5rem);
            color: var(--primary-dark);
            margin-bottom: var(--spacing-lg);
        }

        .collections-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.2rem, 2vw, 1.6rem);
            color: var(--gray);
            font-weight: 300;
            line-height: 1.6;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-3xl);
        }

        .collection-card {
            height: 450px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            border-radius: var(--radius-lg);
            cursor: pointer;
            transition: all var(--transition-smooth);
            display: flex;
            align-items: flex-end;
        }

        .collection-card.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .collection-card:nth-child(1) { transition-delay: 0.2s; }
        .collection-card:nth-child(2) { transition-delay: 0.4s; }
        .collection-card:nth-child(3) { transition-delay: 0.6s; }
        .collection-card:nth-child(4) { transition-delay: 0.8s; }

        .collection-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        /* Unique backgrounds for each collection */
        .collection-1 {
            background: 
                linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6)),
                linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        }

        .collection-2 {
            background: 
                linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6)),
                linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
        }

        .collection-3 {
            background: 
                linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6)),
                linear-gradient(135deg, var(--accent) 0%, var(--info) 100%);
        }

        .collection-4 {
            background: 
                linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6)),
                linear-gradient(135deg, var(--success) 0%, var(--accent) 100%);
        }

        .collection-content {
            position: relative;
            width: 100%;
            padding: var(--spacing-3xl);
            color: var(--white);
            z-index: 10;
        }

        .collection-name {
            font-family: 'Italiana', serif;
            font-size: 3rem;
            margin-bottom: var(--spacing-md);
            line-height: 1.1;
            opacity: 0;
            transform: translateY(20px);
            transition: all var(--transition-smooth);
        }

        .collection-card.fade-in .collection-name {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        .collection-description {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.5;
            margin-bottom: var(--spacing-lg);
            opacity: 0;
            transform: translateY(20px);
            transition: all var(--transition-smooth);
        }

        .collection-card.fade-in .collection-description {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        .collection-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0;
            transform: translateY(20px);
            transition: all var(--transition-smooth);
        }

        .collection-card.fade-in .collection-link {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .collection-link span {
            display: inline-block;
            transition: transform var(--transition-smooth);
        }

        .collection-link:hover span {
            transform: translateX(5px);
        }

        /* Call to Action Section */
        .cta-section {
            background: var(--bg);
            padding: var(--spacing-4xl) var(--spacing-xl);
            text-align: center;
        }

        .cta-container {
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
        }

        .cta-container.fade-in {
            animation: fadeInUp 1.2s ease forwards;
        }

        .cta-text {
            font-family: 'Italiana', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-dark);
            margin-bottom: var(--spacing-2xl);
        }

        .cta-buttons {
            display: flex;
            gap: var(--spacing-lg);
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 18px 40px;
            border-radius: var(--radius-lg);
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-sm);
        }

        .cta-primary {
            background: var(--primary);
            color: var(--white);
            border: 2px solid var(--primary);
        }

        .cta-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.8s ease, height 0.8s ease;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Fade In Animations */
        .fade-in {
            animation: fadeInUp 1.2s ease forwards !important;
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .philosophy-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-2xl);
            }

            .collections-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 var(--spacing-md);
            }

            .collection-card {
                height: 350px;
            }

            .collection-name {
                font-size: 2.2rem;
            }

            .collection-description {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            animation: fadeIn 1s ease 5s forwards;
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background: var(--primary-light);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background: var(--primary);
            animation: scrollDown 2s infinite;
        }

        @keyframes scrollDown {
            to {
                transform: translateY(80px);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }


img#logo {
    width: 350px;
}

.backgroundphoto {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -09;
    left: 0;
    opacity: 020.9;
    background: url('../../uploads/page/section_1.png') center/cover;
    filter: brightness(0.8);
}


/* ========================================
   TABLET LANDSCAPE & SMALL DESKTOP
   ======================================== */
@media (max-width: 1024px) {
    /* Spacing adjustments */
    :root {
        --spacing-3xl: 3rem;
        --spacing-4xl: 4rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: clamp(3.5rem, 8vw, 6rem);
    }

    .hero-subtitle {
        font-size: clamp(1.3rem, 2vw, 1.8rem);
    }

    /* Story Section */
    .story-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .story-text {
        font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    }

    /* Collections */
    .collections-grid {
        padding: 0 var(--spacing-xl);
    }

    .collection-card {
        height: 400px;
    }

    .collection-name {
        font-size: 2.5rem;
    }
}

/* ========================================
   TABLET PORTRAIT
   ======================================== */
@media (max-width: 768px) {
    /* Global spacing for tablet */
    :root {
        --spacing-2xl: 2rem;
        --spacing-3xl: 2.5rem;
        --spacing-4xl: 3rem;
    }

    /* Opening Sequence */
    .opening-text {
        font-size: clamp(2rem, 4vw, 3rem);
        padding: var(--spacing-lg);
    }

    /* Hero Section */
    .hero-container {
        padding: 0 var(--spacing-xl);
    }

    .hero-title {
        font-size: clamp(3rem, 7vw, 5rem);
        margin-bottom: var(--spacing-md);
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        margin-bottom: var(--spacing-2xl);
    }

    /* Story Section */
    .story-content {
        padding: var(--spacing-2xl);
    }

    .story-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        margin-bottom: var(--spacing-lg);
    }

    .story-text {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        line-height: 1.6;
    }

    /* Philosophy Section */
    .philosophy-section {
        padding: var(--spacing-3xl) var(--spacing-lg);
    }

    .philosophy-header .story-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .philosophy-card {
        padding: var(--spacing-xl);
    }

    .philosophy-title {
        font-size: 1.6rem;
        margin-bottom: var(--spacing-md);
    }

    .philosophy-text {
        font-size: 1.1rem;
    }

    /* Collections Section */
    .collections-section {
        padding: var(--spacing-3xl) 0;
    }

    section#section4{display: block;}

    .collections-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

    .collections-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-lg);
    }


    .collection-card {
        height: 350px;
    }

    .collection-content {
        padding: var(--spacing-xl);
    }

    .collection-name {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }

    .collection-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .collection-link {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: var(--spacing-3xl) var(--spacing-lg);
    }

    .cta-text {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .cta-button {
        width: 100%;
        padding: 16px 32px;
        justify-content: center;
    }

    /* Logo */
    img#logo {
        width: 200px;
    }
}

/* ========================================
   MOBILE LANDSCAPE & LARGE MOBILE
   ======================================== */
@media (max-width: 640px) {
    /* Hero adjustments */
    .hero {
        /* background: linear-gradient(90deg, rgba(250, 251, 250, 0.95) 10%, rgb(229 255 204 / 56%) 70%, rgba(250, 251, 250, 0.3) 90%, #6bd0b04f 100%), center / cover; */
    }

    .hero-container {
        padding: 0 var(--spacing-lg);
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
    }

    /* Section padding adjustments */
    .section {
        min-height: 100vh;
        padding: var(--spacing-2xl) 0;
    }

    section#section5{
        display: flex;
    }

    /* Scroll indicator smaller */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-line {
        height: 40px;
    }
}

/* ========================================
   SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    /* Global spacing for small mobile */
    :root {
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-2xl: 2rem;
        --spacing-3xl: 2.5rem;
    }

    /* Opening Sequence */
    .opening-text {
        font-size: 1.75rem;
        line-height: 1.4;
        padding: var(--spacing-md);
    }

    /* Hero Section */
    .hero-container {
        padding: 0 var(--spacing-md);
        position: absolute;
        /* top: 50px; */
    }

    img#logo-icon{
    left: 25px;
    top: 25px;
    width: 60px;
}

    .hero-content {
        text-align: center;
        display: block;
        top: 112px;
        position: absolute;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-sm);
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        line-height: 1.1;
        /* margin-bottom: var(--spacing-xl); */
        text-align: left;
        padding-left: 10px;
    }

    /* Story Section */
    .story-content {
        padding: var(--spacing-lg);
    }

    .story-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }

    .story-text {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    /* Philosophy Section */
    .philosophy-section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .philosophy-header .story-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-xl);
    }

    .philosophy-card {
        padding: var(--spacing-lg);
        border-radius: var(--radius);
    }

    .philosophy-title {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-sm);
    }

    .philosophy-text {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
    }

    /* Collections Section */
    .collections-header {
        padding: 0 var(--spacing-md);
        margin-bottom: var(--spacing-2xl);
    }

    .collections-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    img#logo-icon-front{
        width: 50px;
    }

    .collections-subtitle {
        font-size: 1.05rem;
    }

    .collections-grid {
        padding: 0 var(--spacing-md);
        gap: var(--spacing-md);
    }

    .collection-card {
        height: 300px;
        border-radius: var(--radius);
    }

    .collection-content {
        padding: var(--spacing-lg);
    }

    .collection-name {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-xs);
    }

    .collection-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-sm);
    }

    .collection-link {
        font-size: 0.95rem;
    }

    /* CTA Section */
    .cta-text {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-lg);
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: var(--radius);
    }

    /* Logo */
    img#logo {
        width: 200px;
        font-size: 47px;
        display: block;
    }

    .backgroundphoto{/* width: 200%; *//* height: 200%; *//* left: -243px; */background-position: -419px 0;background-size: cover;}

    /* Scroll indicator */
    .scroll-indicator {
        display: none; /* Hide on very small screens */
    }
}

/* ========================================
   VERY SMALL MOBILE (iPhone SE, etc)
   ======================================== */
@media (max-width: 375px) {
    /* Hero Section */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Story Section */
    .story-title {
        font-size: 1.8rem;
    }

    .story-text {
        font-size: 1rem;
    }

    /* Philosophy */
    .philosophy-title {
        font-size: 1.3rem;
    }

    .philosophy-text {
        font-size: 0.95rem;
    }

    /* Collections */
    .collection-card {
        height: 280px;
    }

    .collection-name {
        font-size: 1.6rem;
    }

    .collection-description {
        font-size: 0.9rem;
    }

    /* CTA */
    .cta-text {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .backgroundphoto {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -09;
    left: 0;
    opacity: 0.9;
}
}

/* ========================================
   LANDSCAPE ORIENTATION FIXES
   ======================================== */
@media (max-height: 600px) and (orientation: landscape) {
    /* Reduce section heights on landscape */
    .section {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }

    /* Smaller hero text */
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Hide scroll indicator in landscape */
    .scroll-indicator {
        display: none;
    }

    /* Reduce card heights */
    .collection-card {
        height: 250px;
    }

    .philosophy-card {
        padding: var(--spacing-lg);
    }
}

/* ========================================
   HIGH DPI SCREENS (Retina)
   ======================================== */
@media (-webkit-min-device-pixel-ratio: 2), 
       (min-resolution: 192dpi) {
    /* Ensure crisp text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Adjust font weights for better rendering */
    .hero-title,
    .story-title,
    .collections-title,
    .collection-name,
    .philosophy-title {
        font-weight: bold;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    /* Hide unnecessary elements */
    .opening-sequence,
    .scroll-indicator,
    .cta-section,
    .backgroundphoto {
        display: none !important;
    }

    /* Adjust colors for print */
    body {
        background: white;
        color: black;
    }

    /* Remove shadows and animations */
    * {
        box-shadow: none !important;
        animation: none !important;
        transition: none !important;
    }
}

.philosophy-card img {
    height: 60px;
    margin: auto;
    display: block;
    margin-bottom: 50px;
}
/* Fade-in animation untuk sections */
/* Override untuk memastikan fade-in sections bekerja */
.section:not(.hero) {
    opacity: 0 !important;
    transform: translateY(50px) !important;
    transition: opacity 1s ease-out, transform 1s ease-out !important;
}

.section.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Khusus untuk hero section agar tidak konflik dengan animasi existing */
.hero.section {
    opacity: 1 !important;
    transform: none !important;
}

/* Pastikan story content tidak double animation */
.story-content {
    transition: none !important;
}

.story-content.fade-in {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

