/* --- Design System --- */
:root {
    /* Colors */
    --clr-bg: #FAF9F6; /* Cream/Off-white */
    --clr-primary: #1A1A1A; /* Obsidian Black */
    --clr-accent: #F8C8DC; /* Blush Pink */
    --clr-accent-dark: #e6b0c5;
    --clr-text-main: #333333;
    --clr-text-light: #777777;
    --clr-white: #FFFFFF;
    
    /* Typography */
    --ff-heading: "Playfair Display", serif;
    --ff-body: "Inter", sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* --- UI Components --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

.section__title {
    font-family: var(--ff-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 500;
}

.section__title--left {
    text-align: left;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn--primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn--primary:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn--outline {
    background-color: transparent;
    border: 1px solid var(--clr-white);
    color: var(--clr-white);
}

.btn--outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-3px);
}

.btn--large {
    padding: 1.25rem 3rem;
    width: fit-content;
}

/* --- Header & Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav__links a:hover {
    opacity: 1;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-primary);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    background: url('assets/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--clr-white);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero__title {
    font-family: var(--ff-heading);
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero__trust {
    font-size: 0.9rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1s;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.2s;
}

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

/* --- Collections Grid --- */
.collections__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.collection__card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

.collection__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collection__info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--clr-white);
    transition: 0.4s;
}

.collection__info h3 {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.collection__card:hover .collection__img {
    transform: scale(1.05);
}

/* --- About Section --- */
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--shadow-soft);
}

.about__text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--clr-text-light);
}

.about__stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat__num {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.stat__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-light);
}

/* --- Gallery Section --- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    aspect-ratio: 1/1.2;
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--clr-white);
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tag--limited {
    color: #e63946;
}

.gallery__enquire {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--clr-white);
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    white-space: nowrap;
}

.gallery__item:hover img {
    filter: brightness(0.9);
    transform: scale(1.05);
}

.gallery__item:hover .gallery__enquire {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) !important;
    pointer-events: auto;
}

/* --- Features Section --- */
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature__card {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--clr-white);
    transition: 0.3s;
}

.feature__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

.feature__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature__card h3 {
    margin-bottom: 1rem;
    font-family: var(--ff-heading);
}

.feature__card p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

/* --- Testimonials --- */
.testimonials__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    padding: 2rem;
}

.testimonial__text {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial__author {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* --- Contact Section --- */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__details {
    margin: 2rem 0;
}

.contact__details p {
    margin-bottom: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* --- Instagram Section --- */
.instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.instagram__item {
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.instagram__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram__item:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .instagram__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .instagram__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: 5rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer__about h3 {
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.footer__links h4, .footer__social h4 {
    margin-bottom: 1.5rem;
    font-family: var(--ff-heading);
}

.footer__links ul li {
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.footer__links ul li:hover {
    opacity: 1;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* --- Sidebar/Mobile Nav --- */
@media (max-width: 992px) {
    .section__title { font-size: 2.5rem; }
    .hero__title { font-size: 3.5rem; }
    
    .nav__links { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--clr-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav__links.active {
        right: 0;
    }

    .nav__links a {
        font-size: 1.5rem;
    }

    .nav__toggle { 
        display: flex; 
        z-index: 1001;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .collections__grid, .gallery__grid, .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__container, .contact__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .collections__grid, .gallery__grid, .features__grid {
        grid-template-columns: 1fr;
    }
    .hero__title { font-size: 2.5rem; }
}

/* --- WhatsApp Sticky --- */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

.whatsapp-sticky img {
    width: 35px;
}
