:root {
    --rose-gold: #9E2A2B;
    --rose-gold-light: #C04E50;
    --beige: #F5ECD5;
    --cream: #FFF8E7;
    --cream-light: #FCF9F2;
    --blush: #F4E3E3;
    --blush-dark: #E2C7C7;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --dark: #1F1413;
    --text: #3D2B28;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

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

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--rose-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--rose-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn-primary:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 37, 35, 0.3);
}

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

.w-100 { width: 100%; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--rose-gold);
    transition: var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--white);
    color: var(--dark);
}
.navbar.scrolled .btn-nav {
    background-color: var(--rose-gold);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--cream-light);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: 0.5s ease-in-out;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu a {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 1.5rem;
}
.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider, .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.bg-1 { background-image: url('assets/hero_1.png'); }
.bg-2 { background-image: url('assets/hero_2.png'); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: -1;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Social Proof */
.social-proof {
    background: var(--rose-gold);
    color: var(--white);
    padding: 3rem 0;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

/* Bridal Block */
.image-block {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.image-block:hover img {
    transform: scale(1.05);
}
.image-block-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}
.image-block-content h3 {
    color: var(--white);
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.glassmorphism:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(183, 110, 121, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Services */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}
.overlay-light {
    position: absolute;
    inset: 0;
    background: rgba(252, 235, 235, 0.85); /* Blush tint */
}
.relative { position: relative; z-index: 1; }
.service-card {
    text-align: center;
}
.service-card i {
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

/* Spa Carousel */
.spa-carousel {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.spa-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.spa-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.9);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    max-width: 400px;
}

/* Before / After Slider */
.ba-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ba-after {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}
.ba-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
pointer-events: none;
}
.ba-before {
    display: block;
    width: 800px; /* Must match container width dynamically in actual impl if fluid */
    height: 100%;
    object-fit: cover;
pointer-events: none;
}
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    margin-left: -20px;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ba-handle::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.ba-handle i {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--rose-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 2;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.stars {
    color: #FFD700;
    margin-bottom: 1rem;
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-weight: 500;
    margin-top: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.7);
    font-family: inherit;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--rose-gold);
    background: var(--white);
}
.location-info p {
    margin-bottom: 1rem;
}
.map-wrapper {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}
footer h3 {
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
}
.social-links a:hover {
    background: var(--rose-gold);
    transform: translateY(-3px);
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a:hover {
    color: var(--rose-gold);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 900px) {
    .grid-4, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 3rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-btns { flex-direction: column; }
    .grid-4, .reviews-grid { grid-template-columns: 1fr; }
}
