/* --- THE BEAUTY BABE CAVE: MASTER STYLING --- */

:root {
    --pink: #ffb7c5;
    --hot-pink: #ff69b4;
    --dark: #1a1a1a;
    --glass: rgba(255, 255, 255, 0.85);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fffafa 0%, #ffe4e1 100%);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-logo span { color: var(--hot-pink); }

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

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

/* --- HERO SECTIONS --- */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffd1dc;
}

.hero-small {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffd1dc;
}

.hero h1, .hero-small h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 12vw, 6.5rem);
    line-height: 0.9;
    margin: 0;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--dark);
}

.hero p { font-size: 1.2rem; letter-spacing: 2px; margin-top: 20px; }

/* --- CONTAINERS & CARDS --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 40px;
}

/* --- SERVICE LISTS (HOME PAGE) --- */
.category { transition: var(--transition); }

.category h3 {
    color: var(--hot-pink);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 0;
    border-bottom: 1px solid var(--pink);
    padding-bottom: 10px;
}

ul { list-style: none; padding: 0; }

li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

li span { font-weight: 600; color: var(--hot-pink); }

/* --- BOOKING GRID & CARDS --- */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.book-card {
    text-align: center;
    transition: var(--transition);
}

.book-card:hover {
    transform: translateY(-10px);
    border-color: var(--hot-pink);
}

.book-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.book-card .price {
    font-size: 1.3rem;
    color: var(--hot-pink);
    font-weight: 700;
    margin: 15px 0;
}

/* --- THE BUTTONS --- */
.add-service-btn {
    background: linear-gradient(135deg, var(--dark) 0%, #444 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.add-service-btn:hover {
    background: var(--hot-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s;
}

.cta-button:hover {
    background: var(--hot-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- FLOATING BASKET --- */
.floating-basket {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: var(--dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: var(--transition);
}

.floating-basket:hover { background: var(--hot-pink); }

.basket-icon { font-size: 1.5rem; }

#basket-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--hot-pink);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* --- BASKET DRAWER --- */
.basket-drawer {
    position: fixed;
    top: 0;
    left: -400px;
    width: 350px;
    height: 100vh;
    z-index: 3000;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 0 40px 40px 0 !important;
}

.basket-drawer.open { left: 0; }

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.basket-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.drawer-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--pink);
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    margin-bottom: 20px;
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.photo-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    margin-bottom: 15px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 80px 20px;
    background: var(--dark);
    color: white;
}

footer a {
    color: var(--pink);
    text-decoration: none;
    font-weight: bold;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 4rem; }
    .basket-drawer { width: 100%; left: -100%; border-radius: 0 !important; }
}