:root {
    --white: #FFFFFF;
    --warm-white: #F7F7F7;
    --gold: #C6A75E;
    --gold-light: #D4B76A;
    --charcoal: #222222;
    --gray: #666666;
    --whatsapp: #25D366;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.navbar.scrolled.menu-open {
    background: var(--white);
    z-index: 1002;
}

.navbar.menu-open {
    z-index: 1002;
}

.navbar.menu-open::before {
    display: none;
}

.navbar.menu-open .logo,
.navbar.menu-open .logo span,
.navbar.menu-open .hamburger span {
    transition: color 0.4s ease, background 0.4s ease;
}

.navbar.scrolled.menu-open .logo {
    color: var(--charcoal);
}

.navbar.scrolled.menu-open .logo span {
    color: var(--gold);
}

.navbar.scrolled.menu-open .hamburger span {
    background: var(--charcoal);
}

.navbar.scrolled .nav-links a {
    color: var(--charcoal);
}

.navbar.scrolled .logo {
    color: var(--charcoal);
}

.navbar.scrolled .logo span {
    color: var(--gold);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-decoration: none;
    transition: color 0.4s ease;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.4s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.4s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--charcoal);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transition: right 0.4s ease;
    padding-top: 80px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 40px;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: var(--gold);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-down span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    opacity: 0.7;
}

/* Section Styles */
section {
    padding: 120px 0;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    letter-spacing: 1px;
}

.gold-text {
    color: var(--gold);
}

/* Collection Section */
.collection {
    background: var(--white);
}

/* Collection Slider */
.collection-slider {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.slider-wrapper {
    overflow: hidden;
    margin: 0 -20px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.collection-slider .product-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    min-width: 280px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--gold);
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.slider-prev {
    left: -10px;
}

.slider-next {
    right: -10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dots .dot.active {
    background: var(--gold);
}

/* Slider Responsive */
@media (max-width: 992px) {
    .collection-slider .product-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .collection-slider .product-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid transparent;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--warm-white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.product-info p {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.collection-cta {
    text-align: center;
    margin-top: 60px;
}

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

.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

/* How It Works */
.how-it-works {
    background: var(--warm-white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.step:hover .step-icon {
    background: var(--gold);
}

.step:hover .step-icon svg {
    stroke: var(--white);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.4s ease;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Wedding Section */
.wedding {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
                url('https://images.unsplash.com/photo-1606800052052-a08af7148866?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.wedding-content {
    max-width: 800px;
    margin: 0 auto;
}

.wedding h2 {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 25px;
    line-height: 1.2;
}

.wedding p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

/* Visit Store Section */
.visit-store {
    background: var(--warm-white);
    padding-bottom: 160px;
}

.store-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
}

.store-info {
    width: 100%;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.map-container {
    width: 100%;
    height: 450px;
    max-width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-radius: 8px;
    margin-top: 30px;
    z-index: 0;
}

.store-info h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.store-details {
    margin-bottom: 60px;
}

.store-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.store-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
}

.store-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.store-item p {
    font-size: 16px;
    color: var(--charcoal);
    line-height: 1.6;
}

.store-item a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-item a:hover {
    color: var(--gold);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 997;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* Footer */
.footer {
    background: var(--white);
    padding: 80px 0 40px;
}

.footer-top {
    border-bottom: 1px solid rgba(198,167,94,0.3);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand .logo {
    color: var(--charcoal);
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 300px;
}

.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
}

.social-links a:hover svg {
    stroke: var(--white);
}

.social-links svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    transition: stroke 0.3s ease;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 56px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-rows: repeat(2, 250px);
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0 30px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 48px;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .steps-container::before {
        display: none;
    }

    .store-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 350px;
        margin-bottom: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .section-header h2 {
        font-size: 36px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .wedding h2 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .btn {
        padding: 15px 30px;
        font-size: 12px;
    }

    .map-container {
        height: 300px;
        margin-bottom: 80px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
