/* 1. RESET & GLOBAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fdfdfa; /* A very light, warm beige */
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    content-visibility: auto; /* Browser optimization for off-screen images */
}

/* 2. TYPOGRAPHY & COLORS */
:root {
    --font-serif: 'Lora', serif;
    --font-sans: 'Roboto', sans-serif;

    --color-text: #2c2c2c;
    --color-heading: #1a1a1a;
    --color-background: #ede0c2;
    --color-light: #f5f5f5;
    --color-accent: #a1887f; /* Muted, earthy brown */
    --color-dark: #3a3a3a;
    --color-white: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-heading);
    font-weight: 400;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 1px;
}

p {
    font-family: var(--font-sans);
    color: var(--color-text);
    margin-bottom: 1rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-dark);
}

/* 3. LAYOUT & HELPERS */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--color-light);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-accent);
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}


/* 4. HEADER & NAVIGATION */


.main-header {


    background-color: var(--color-background);


    border-bottom: 1px solid #e0e0e0;


    padding: 1rem 0;


    width: 100%;


    z-index: 1000;




}





.main-header .container {


    display: flex;


    justify-content: space-between;


    align-items: center;


}





.logo img {


    width: 180px;


    height: auto;


    transition: opacity 0.3s ease;


}





.logo:hover img {


    opacity: 0.8;


}





.main-nav ul {


    display: flex;


    list-style: none;


}





.main-nav li {


    margin-left: 2.5rem;


}





.main-nav a {


    color: var(--color-text);


    font-family: var(--font-sans);


    text-transform: uppercase;


    font-size: 0.9rem;


    letter-spacing: 1.5px;


    padding-bottom: 5px;


    border-bottom: 2px solid transparent;


    transition: border-bottom-color 0.3s ease;


}





.main-nav a:hover {


    color: var(--color-heading);


    border-bottom-color: var(--color-accent);


}





.main-nav a.active {


    font-weight: bold;


    color: var(--color-heading);


    border-bottom-color: var(--color-accent);


}





.nav-toggle {


    display: none;


}








/* 5. HERO & INTRO SECTIONS */

















/* The new, text-free hero image banner */








#hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    background-color: #000; /* Dark base for better contrast during load */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/IMG_0110.jpg');
    background-size: cover;
    background-position: center;
    /* Professional Cinematic Motion: Slow zoom combined with a very slight pan */
    animation: cinematicMotion 30s infinite alternate ease-in-out;
    filter: brightness(0.9);
    will-change: transform; /* Hint browser to optimize this */
    transform: translate3d(0,0,0); /* Force GPU acceleration */
}

@keyframes cinematicMotion {
    0% {
        transform: scale(1.0) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.15) translate3d(-1%, -1%, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    width: 160px;
    margin: 0 auto 2.5rem;
    /* Soften the shadow to match the elegant theme */
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    /* Using the theme's warm beige for a more matched look */
    color: var(--color-background);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-content p {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    /* Using white with slight opacity to blend with the beige h1 */
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 8px rgba(0,0,0,0.4);
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.8s;
}

.hero-content .btn {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    padding: 1rem 2.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 1.1s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-content .btn:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* 6. PAGE-SPECIFIC SECTIONS */





/* --- Generic Page Header (for About, Contact, etc.) --- */


.page-header {


    background-color: var(--color-light);


    text-align: center;


    padding: 4rem 0;


}





.page-header h1 {


    font-size: 3rem;


    margin-bottom: 0.5rem;


}





/* --- Collection & Product Grids --- */

.interactive-banner {
    perspective: 1000px; /* Enable 3D perspective */
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out; /* Smooth tilt transition */
}

.live-collection-banner {
    text-align: center;
    margin: 2rem auto 5rem;
    padding: 6rem 2rem;
    background: #fff;
    border: 1px solid rgba(161, 136, 127, 0.15);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
}

/* Cursor-following spotlight glow */
.banner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(161, 136, 127, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%); /* Center on cursor */
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.interactive-banner:hover .banner-glow {
    opacity: 1;
}

.animate-text {
    font-size: 3.5rem;
    color: var(--color-heading);
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transform: translateZ(50px); /* Lift text in 3D space */
    text-shadow: 2px 2px 20px rgba(255,255,255,1);
    animation: fadeInUpElegant 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-subtext {
    font-size: 1rem;
    color: var(--color-accent);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transform: translateZ(30px); /* Lift subtext in 3D space */
    opacity: 0;
    animation: fadeInUpElegant 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

/* Elegant separator line */
.animate-subtext::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 2.5rem auto 0;
    opacity: 0;
    transform: scaleX(0);
    animation: expandLine 1.2s ease-out forwards 1s;
}

@keyframes fadeInUpElegant {
    from {
        opacity: 0;
        transform: translateY(40px) translateZ(0);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(50px); /* Keep lifted state */
        filter: blur(0);
    }
}

@keyframes expandLine {
    to {
        opacity: 0.5;
        transform: scaleX(1);
    }
}

.collection-grid, .product-grid {


    display: grid;


    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));


    gap: 2rem;


}





.collection-item {


    position: relative;


    overflow: hidden;


    cursor: pointer;


}





.collection-item img {


    transition: transform 0.5s ease;


}





.collection-item:hover img {





    transform: scale(1.05);





}











/* 6. PAGE-SPECIFIC SECTIONS - REFINED GRID GALLERY */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
    width: 100%;
}

.product-card {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5; /* Placeholder background */
    opacity: 0;
    transform: translateY(20px);
    animation: revealCard 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    /* Performance hint */
    content-visibility: auto;
    contain-intrinsic-size: 1px 400px;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5; /* Fixed aspect ratio to prevent layout shifts */
    overflow: hidden;
    cursor: zoom-in;
    background-color: #f0f0f0;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop to fit aspect ratio */
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); /* Elegant subtle dimming */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.view-details {
    color: var(--color-white);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    padding: 10px 24px;
    border: 1px solid var(--color-white);
    backdrop-filter: blur(4px); /* Modern frosted glass effect */
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover img {
    transform: scale(1.05); /* Gentle zoom to preserve image quality */
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .view-details {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.1);
}

/* Ensure the homepage featured section also respects form if using same classes */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Cleanup old styles */
/* .product-info removed as requested */




















.brand-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
    padding: 3rem;
}

.brand-image img {
    max-width: 80% !important;
    height: auto !important;
    object-fit: contain !important;
}

















.story-grid {








    display: grid;








    grid-template-columns: 1.2fr 0.8fr;








    gap: 4rem;








    align-items: stretch;








    margin-bottom: 6rem;








}

















.story-grid.reverse {








    grid-template-columns: 0.8fr 1.2fr;








}

















.story-grid.reverse .story-text {








    order: 2;








}

















.story-text {








    display: flex;








    flex-direction: column;








    justify-content: center;








}

















.story-image {








    position: relative;








}

















.story-image img {








    border-radius: 8px;








    box-shadow: 0 10px 30px rgba(0,0,0,0.1);








    width: 100%;








    height: 100%;








    object-fit: cover;








}

















.story-image.clean-style img {








    box-shadow: none;








    border-radius: 4px;








    object-fit: cover;








}



































/* --- Contact Page --- */








.contact-section .contact-grid {








    display: grid;








    grid-template-columns: 2fr 1fr;








    gap: 4rem;








}





.form-group {


    margin-bottom: 1.5rem;


}





.form-group label {


    display: block;


    margin-bottom: 0.5rem;


    font-family: var(--font-sans);


    font-weight: bold;


    font-size: 0.9rem;


}





.form-group input,


.form-group textarea {


    width: 100%;


    padding: 1rem;


    border: 1px solid #ccc;


    border-radius: 4px;


    background-color: var(--color-white);


    font-family: var(--font-sans);


    font-size: 1rem;


    transition: border-color 0.3s ease;


}





.form-group input:focus,


.form-group textarea:focus {


    outline: none;


    border-color: var(--color-accent);


}





.contact-details h2 {


    margin-bottom: 1.5rem;


}





.contact-details p {


        line-height: 1.8;


    }


    


    .contact-item {


        margin-bottom: 2rem;


    }


    


    .contact-item h3 {


        font-size: 1.1rem;


        font-weight: bold;


        margin-bottom: 0.5rem;


        color: var(--color-accent);


        text-transform: uppercase;


        letter-spacing: 1px;


    }


    


    .contact-item p {


        margin-bottom: 0.5rem;


    }


    


    .direction-link {


        display: inline-block;


        font-size: 0.9rem;


        font-weight: bold;


        margin-top: 0.2rem;


        text-decoration: underline;


    }


    


    .map-section {


        width: 100%;


        height: 450px;


        background-color: #eee;


        margin-bottom: -6rem; /* Pull footer up slightly if needed, or just let it sit */


    }


    


    .map-section iframe {


        width: 100%;


        height: 100%;


        border: 0;


        filter: grayscale(20%) contrast(90%); /* Artistic touch */


    }


    


    /* 7. FOOTER */


.main-footer {
    padding: 5rem 0 3rem;
    text-align: center;
    background-color: var(--color-dark);
    color: #a0a0a0;
    margin-top: 8rem;
}

.footer-social {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.social-icon.instagram {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #a0a0a0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    padding: 10px 20px;
    border: 1px solid rgba(160, 160, 160, 0.2);
    border-radius: 50px;
}

.instagram-svg {
    width: 22px;
    height: 22px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-text {
    opacity: 0.6;
    transition: all 0.5s ease;
}

/* Stunning Shimmer & Magnetic Hover */
.social-icon.instagram:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(161, 136, 127, 0.15);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.social-icon.instagram:hover .instagram-svg {
    transform: rotate(12deg) scale(1.1);
    stroke: #fff;
}

.social-icon.instagram:hover .social-text {
    opacity: 1;
    letter-spacing: 3px;
}

/* Subtle idle pulse for attention */
@keyframes softPulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
}

.main-footer p {


    color: #a0a0a0;


    font-size: 0.9rem;


    margin: 0;


}





/* 8. RESPONSIVE DESIGN */





@media (max-width: 992px) {





    .story-grid, .contact-section .contact-grid {





        grid-template-columns: 1fr;





    }





    .story-grid.reverse .story-text {





        order: initial;





    }





    .story-image img {





        height: auto;





        aspect-ratio: 3/2;





        margin-top: 2rem;





    }





}





@media (max-width: 768px) {





    .main-nav {





        display: flex;





        position: fixed;





        top: 0;





        right: 0;





        width: 80%;





        max-width: 320px;





        height: 100vh;





        background-color: var(--color-background);





        box-shadow: -5px 0 20px rgba(0,0,0,0.1);





        flex-direction: column;





        justify-content: center;





        align-items: center;





        transform: translateX(100%);





        transition: transform 0.35s ease-in-out;





    }











    .main-nav--open {





        transform: translateX(0);





    }











    .main-nav li {





        margin: 1.5rem 0;





    }











    .main-nav a {





        font-size: 1.2rem;





    }











    .nav-toggle {





        display: block; /* Show hamburger */





        background: none;





        border: none;





        cursor: pointer;





        padding: 0;





        width: 30px;





        height: 25px;





        position: relative;





        z-index: 1001; /* Ensure it's above the nav */





    }











    .nav-toggle .hamburger,





    .nav-toggle .hamburger::before,





    .nav-toggle .hamburger::after {





         content: '';





         display: block;





         background: var(--color-heading);





         height: 3px;





         width: 100%;





         border-radius: 3px;





         position: absolute;





         left: 0;





         transition: all 0.3s ease-in-out;





    }











     .nav-toggle .hamburger::before {





        top: -10px;





    }





     .nav-toggle .hamburger::after {





        bottom: -10px;





    }





    





    .nav-toggle.is-active .hamburger {





        background: transparent;





    }





    





    .nav-toggle.is-active .hamburger::before {





        transform: rotate(45deg) translate(6px, 6px);





    }





    .nav-toggle.is-active .hamburger::after {





        transform: rotate(-45deg) translate(6px, -6px);





    }











    .hero-content h1 {
        font-size: 2.5rem;
    }
    .page-header {
        padding: 3rem 0;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }

    /* Fix for mobile navigation layout */
    .main-header .container {
        padding: 0 15px;
    }

    .logo img {
        width: 140px;
    }

    /* Grid adjustments for mobile */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Banner adjustments */
    .live-collection-banner {
        padding: 3rem 1rem;
        margin-bottom: 3rem;
    }

    .animate-text {
        font-size: 2rem;
    }

    .story-grid {
        gap: 2rem;
    }

    .story-text {
        text-align: center;
    }

    .brand-image {
        padding: 1.5rem;
    }

    /* Contact form mobile */
    .contact-section .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-section {
        height: 300px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}


