:root {
    --primary: #8C5F56;
    /* Atelier Blush - Elegant muted red/brown */
    --secondary: #2C3A33;
    /* Dark Forest Green */
    --accent: #E8D3C3;
    /* Golden Petal/Soft Elegance */
    --text-dark: #1A1A1A;
    --text-light: #F8F5F2;
    --bg-light: #FAF8F5;
    /* Very soft cream */
    --bg-dark: #1b1c1c;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.15s ease-out;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(140, 95, 86, 0.5);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    cursor: none;
    /* Ensure custom cursor remains consistent */
}

.logo span {
    color: var(--secondary);
    font-style: italic;
}

.nav-links a {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    margin-left: 2rem;
    font-weight: 500;
    position: relative;
    cursor: none;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.2s;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.4s;
}

.hero-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.6s;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid var(--primary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.8s;
    cursor: none;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

/* Background Abstract Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: floating 8s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    top: 10%;
    right: 15%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    /* Pink Forest vibez */
    bottom: 20%;
    right: 5%;
    animation-delay: -3s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #a8e6cf, #dcedc1);
    /* Green Rose vibez */
    top: 40%;
    left: -100px;
    animation-delay: -5s;
}

/* Sections */
.section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Gallery / Products */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
    cursor: none;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--text-light);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    cursor: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(140, 95, 86, 0.15);
}

.card-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    background: white;
    position: relative;
    z-index: 2;
}

.card-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.card-desc {
    color: #666;
    font-size: 0.95rem;
}

/* Placeholders Gradients (Wow Factor!) */
.placeholder-img {
    background: linear-gradient(45deg, #f3ec78, #af4261);
}

.blush {
    background: linear-gradient(120deg, #FAD0C4 0%, #FFD1FF 100%);
}

.red-velvet {
    background: linear-gradient(to right, #DA4453, #89216B);
}

.juicy {
    background: linear-gradient(to right, #ff9966, #ff5e62);
}

.pink {
    background: linear-gradient(-20deg, #ddd6f3 0%, #faaca8 100%, #faaca8 100%);
}

.green {
    background: linear-gradient(to top, #0ba360 0%, #3cba92 100%);
}

.christmas-img {
    background: linear-gradient(to right, #11998e, #38ef7d);
}

/* Christmas Section */
.dark-section {
    background-color: var(--secondary);
    color: var(--text-light);
}

.dark-section .section-title {
    color: var(--text-light);
}

.red-section {
    background-color: #A31F34;
    /* Premium Festive Red */
    background: linear-gradient(135deg, #B5223A, #7A1727);
    color: var(--text-light);
}

.red-section .section-title {
    color: var(--text-light);
}

.holiday-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.holiday-text {
    flex: 1;
}

.holiday-subtitle {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.holiday-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.holiday-image {
    flex: 1;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.holiday-mini-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.holiday-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.holiday-thumb:hover {
    transform: scale(1.1) translateY(-5px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--accent);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid var(--accent);
    cursor: none;
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--secondary);
}

/* Footer */
.footer {
    text-align: center;
    padding: 6rem 5% 3rem;
    background: linear-gradient(to bottom, var(--bg-light), var(--accent));
}

.footer h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.social-links {
    margin: 3rem 0;
}

.social-btn {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
    transition: var(--transition);
    cursor: none;
    border-bottom: 2px solid transparent;
}

.social-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: 3rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* Scroll Fade In Utility */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .holiday-container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .nav-links {
        display: none;
        /* Add a hamburger menu for full experience ideally */
    }
}

/* --- Lightbox Styles --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 28, 28, 0.95);
    /* Dark transparent background */
    backdrop-filter: blur(15px);
    /* Premium glass effect */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
    font-family: var(--font-heading);
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.3s;
}

.lightbox.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: var(--accent);
    font-size: 3rem;
    cursor: none;
    transition: color 0.3s, transform 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

@media (max-width: 800px) {
    .lightbox-close {
        top: -40px;
        right: 0px;
    }
}