:root {
    --burgundy: #5C1435;
    --burgundy-light: #7a2d4a;
    --gold: #d4af91;
    --cream: #e8d5c4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--burgundy);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Navigation */
nav {
    transition: all 0.3s ease;
}

/* Mobile: keep hamburger visible (logo + title must not push it off-screen) */
@media (max-width: 1023px) {
    .nav-hamburger {
        display: inline-flex !important;
        flex-shrink: 0;
        position: relative;
        z-index: 60;
    }
}

.hero-rose {
    position: relative;
}

.hero-rose .logo-center {
    position: absolute;
    top: 20px; /* set top position as needed */
    left: 50%;
    transform: translateX(-50%); /* perfectly center horizontally */
    text-align: center;
    z-index: 20;
    width: 100%;
    max-width: 700px;
    padding: 0 16px;
}

.hero-rose .logo-center h1,
.hero-rose .logo-center p {
    margin: 0;
}


/* Footer hero style like your sample */
.footer-hero {
    background: linear-gradient(135deg, #6D0F1B, #800020);
    padding: 3rem 1.5rem;
}

.footer-logo {
    width: 350px;
    max-width: 80%;
}

nav ul li a {
    transition: all 0.3s ease;
}

/* Desktop nav pills: gold/beige = current section only (.active). Hover uses a different cue so two pills never look selected. */
nav ul.lg\:flex .nav-link {
    background-color: var(--burgundy);
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.15px;
    text-transform: capitalize;
    padding: 0.4rem 0.8rem;
}

nav ul.lg\:flex .nav-link.active {
    background-color: var(--gold) !important;
    color: var(--burgundy) !important;
}

nav ul.lg\:flex .nav-link:hover:not(.active) {
    background-color: var(--burgundy-light) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(92, 20, 53, 0.22);
}

/* Mobile drawer links: transparent by default; gold only when .active */
nav #mobileMenu .nav-link {
    background-color: transparent !important;
    color: var(--burgundy) !important;
    font-size: 1rem;
    letter-spacing: 0.15px;
    text-transform: capitalize;
}

nav #mobileMenu .nav-link.active {
    background-color: var(--gold) !important;
    color: var(--burgundy) !important;
}

nav #mobileMenu .nav-link:hover:not(.active) {
    background-color: rgba(92, 20, 53, 0.07) !important;
    color: var(--burgundy) !important;
}

/* Hero Rose Background */
.hero-rose {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Cdefs%3E%3Cpattern id="roses" patternUnits="userSpaceOnUse" width="200" height="200"%3E%3Ccircle cx="100" cy="100" r="60" fill="%235C1435" opacity="0.08"/%3E%3Ccircle cx="120" cy="80" r="20" fill="%235C1435" opacity="0.05"/%3E%3Ccircle cx="85" cy="70" r="15" fill="%235C1435" opacity="0.05"/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill="%23f5f1ed" width="1200" height="800"/%3E%3Crect fill="url(%23roses)" width="1200" height="800"/%3E%3C/svg%3E');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

@media (max-width: 1023px) {
    .hero-rose {
        background-attachment: scroll;
    }
}

.hero-rose::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(92, 20, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 20, 53, 0.4);
    background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--burgundy) 100%);
}

/* Form Styling */
input, textarea {
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    color: #1f1f1f; /* dark text for readability */
    font-weight: 600;
}

input::placeholder, textarea::placeholder {
    color: rgba(92, 20, 53, 0.45);
}

.bg-cream {
    background: linear-gradient(135deg, #f5f1ed 0%, #ebe4dc 100%);
}

.text-gold {
    color: var(--gold);
}

.text-burgundy {
    color: var(--burgundy);
}

.bg-gold {
    background-color: var(--gold);
}

.bg-burgundy {
    background-color: var(--burgundy);
}

.bg-burgundy-light {
    background-color: var(--burgundy-light);
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(92, 20, 53, 0.15);
}

.shadow-2xl {
    box-shadow: 0 20px 50px rgba(92, 20, 53, 0.2);
}

.transition {
    transition: all 0.3s ease;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:bg-burgundy:hover {
    background-color: var(--burgundy);
}

.hover\:bg-gold:hover {
    background-color: var(--gold);
}

.hover\:text-burgundy:hover {
    color: var(--burgundy);
}

.hover\:text-white:hover {
    color: var(--white);
}

.hover\:text-gold:hover {
    color: var(--gold);
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

/* Service cards */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 213, 196, 0.5) 100%);
    border-left: 4px solid var(--gold);
    backdrop-filter: blur(10px);
}

.contact-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 50%, var(--burgundy) 100%);
}

.contact-section h2 {
    font-size: 1.875rem;
    line-height: 1.05;
}

@media (min-width: 640px) {
    .contact-section h2 {
        font-size: 2.25rem;
    }
}

.contact-section h3 {
    font-size: 1.75rem;
}

.contact-section p,
.contact-section a,
.contact-section .text-sm,
.contact-section .text-lg {
    font-size: 0.95rem;
}

.contact-section .text-xl {
    font-size: 1.25rem !important;
}

.contact-section .text-2xl {
    font-size: 1.35rem !important;
}

.contact-section .btn-whatsapp {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

.service-card:hover {
    border-left-color: var(--burgundy);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, #f8e4ce 100%);
    color: var(--burgundy);
    border: none;
    box-shadow: 0 14px 30px rgba(92, 20, 53, 0.18);
    transition: all 0.25s ease;
}

.btn-whatsapp:hover {
    background: #ffffff;
    color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(92, 20, 53, 0.22);
}

.whatsapp-fixed {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    right: max(20px, env(safe-area-inset-right, 0px));
    background-color: #25D366;
    color: white;
    font-size: 24px;
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-fixed:hover {
    background-color: #1ebd5a;
    transform: scale(1.1);
}

/* Hero logo image: keep desktop dimensions; fluid below lg */
.hero-main-logo {
    width: 100%;
    max-width: min(24rem, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .hero-main-logo {
        width: 24rem;
        height: 24rem;
        max-width: none;
        aspect-ratio: auto;
    }
}

/* Contact: prevent flex overflow on narrow screens */
.contact-section .contact-info-text {
    min-width: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

.text-blush {
    color: var(--blush);
}

.bg-blush {
    background-color: var(--blush);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition {
    transition: all 0.3s ease;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--gold);
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3rem;
    }
    #hero p {
        font-size: 1.25rem;
    }
}