:root {
    --text-dark: #3a3335;
    --text-light: #7a7072;
    --grad-1: #ffd1ff;
    --grad-2: #fae1d9;
    --grad-3: #e6e6fa;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #fcfafb;
    position: relative;
    overflow-x: hidden;
}

/* Ambient Animated Gradients */
.bg-gradient {
    position: fixed; border-radius: 50%; filter: blur(100px); z-index: -1;
    animation: float 20s infinite alternate ease-in-out; opacity: 0.6;
}
.bg-1 { width: 60vw; height: 60vw; background: var(--grad-1); top: -10%; left: -10%; }
.bg-2 { width: 50vw; height: 50vw; background: var(--grad-3); bottom: -10%; right: -10%; animation-delay: -5s;}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}

/* Glassmorphism Utilities */
.glass-card, .glass-nav {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(138, 115, 122, 0.1);
}

h1, h2, h3, .logo { font-family: var(--font-heading); font-weight: 400; }
i { font-style: italic; color: #b78a9c; }

/* Gradient Pill Button */
.btn-pill {
    display: inline-block; padding: 1rem 2.5rem; border-radius: 50px;
    background: linear-gradient(135deg, #f5d3d6, #e2c2c6); color: var(--text-dark);
    font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.8rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); cursor: pointer; transition: all 0.3s;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.btn-pill:active { transform: translateY(1px); box-shadow: inset 0 2px 5px rgba(0,0,0,0.1); }

/* Nav */
.glass-nav {
    position: fixed; top: 1rem; left: 5%; width: 90%; padding: 1rem 3rem;
    border-radius: 50px; display: flex; justify-content: space-between; align-items: center; z-index: 100;
}
.logo { font-size: 1.8rem; letter-spacing: 4px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a:not(.btn-pill) { text-decoration: none; color: var(--text-dark); font-weight: 400; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: flex-end; padding: 0 10%; position: relative; }
.hero-image { position: absolute; top: 15%; left: 10%; width: 45%; height: 70%; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); z-index: 1;}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; max-width: 500px; padding: 4rem; border-radius: 20px; margin-top: 10%; margin-right: 5%; }
.hero h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 1.5rem; }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.8; }

/* Sections */
.section-title { text-align: center; font-size: 3rem; margin: 6rem 0 3rem; font-style: italic; }
.services-wrapper { display: flex; justify-content: center; gap: 2rem; padding: 0 5%; flex-wrap: wrap; }
.service-card { width: 350px; padding: 2rem; border-radius: 20px; text-align: center; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.srv-img { width: 100%; height: 250px; border-radius: 10px; overflow: hidden; margin-bottom: 1.5rem; }
.srv-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.6; }
.price { font-family: var(--font-heading); font-size: 1.2rem; font-style: italic; color: #b78a9c; }

/* Portfolio */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; padding: 0 10%; margin-bottom: 6rem;}
.glass-img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; padding: 10px; background: rgba(255,255,255,0.3); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* Booking */
.booking { padding: 4rem 10% 8rem; }
.booking-container { display: flex; padding: 4rem; border-radius: 30px; gap: 4rem; align-items: center; }
.booking-text { flex: 1; }
.booking-text h2 { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1; }
.booking-text p { color: var(--text-light); font-size: 1.1rem; line-height: 1.6; }
.glam-form { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.glam-form input, .glam-form select {
    width: 100%; padding: 1.2rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.5); font-family: var(--font-body); font-size: 1rem; color: var(--text-dark);
}
.glam-form input:focus, .glam-form select:focus { outline: none; background: rgba(255,255,255,0.8); }

/* Footer */
.footer { position: static; width: auto; margin: 0 5% 2rem; flex-direction: column; gap: 1rem; padding: 3rem; text-align: center; }
.copy { font-size: 0.8rem; color: var(--text-light); }

@media (max-width: 992px) {
    .hero { flex-direction: column; justify-content: center; padding-top: 100px; }
    .hero-image { position: relative; width: 100%; height: 400px; top: 0; left: 0; margin-bottom: -50px; }
    .hero-content { margin: 0; }
    .booking-container { flex-direction: column; padding: 2rem; }
    .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .glass-nav { justify-content: center; }
}
