        /* Custom Styles for "Romantic/Lookbook" Feel */
        body {
            background-color: #FAFBF8;
            color: #2E2E2E;
        }
        
        /* Smooth, elegant scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #FAFBF8; 
        }
        ::-webkit-scrollbar-thumb {
            background: #E8E1D9; 
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #7FB69C; 
        }

        /* Image Styling */
        .img-hover-zoom {
            overflow: hidden;
        }
        .img-hover-zoom img {
            transition: transform 0.8s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }

        /* Text selection */
        ::selection {
            background: #E8E1D9;
            color: #2E2E2E;
        }

        /* Hide Scrollbar for horizontal scroll areas but keep functionality */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Section Transition Logic */
        .page-section {
            opacity: 0;
            display: none;
            transition: opacity 0.6s ease-in-out;
            min-height: calc(100vh - 80px); /* Ensure minimum height for non-home pages */
        }
        .page-section.active {
            display: block;
            opacity: 1;
            animation: fadeIn 0.8s ease-out;
        }

        /* Hero Slider */
        .hero-slide {
            display: none;
            animation: fadeIn 1s ease-in-out;
        }
        .hero-slide.active {
            display: block;
        }
        
        /* Blur Header */
        .header-blur {
            backdrop-filter: blur(10px);
            background-color: rgba(250, 251, 248, 0.85);
        }
        @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}
