/* --- 1. GENERAL RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden { display: none !important; }

/* --- 2. NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: 0.4s ease-in-out;
    padding: 20px 0;
}

nav.scrolled {
    background: rgba(15, 15, 15, 0.98);
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.main-logo {
    height: 140px;
    width: auto;
    transition: 0.4s;
    filter: brightness(0) invert(1); 
}

nav.scrolled .main-logo {
    height: 60px;
}

/* --- 3. HERO SECTION --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&q=80&w=1000') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero-content h1 span {
    font-style: italic;
    color: #d4af37;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); 
}

/* --- 4. PORTFOLIO GRID --- */
.services { padding: 100px 0; text-align: center; }

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: #151515;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.card-img {
    height: 450px;
    background-size: cover;
    background-position: center;
    transition: 0.6s ease;
}

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

.card-text { padding: 25px; text-align: left; }
.card-text h3 { color: #d4af37; font-size: 1.8rem; margin-bottom: 5px; }

.boudoir { background-image: url('https://images.unsplash.com/photo-1519311965067-36d3e5f33d39?w=800'); }
.feet { background-image: url('https://images.unsplash.com/photo-1549298916-b41d501d3772?w=800'); }

/* --- 5. ABOUT SECTION --- */
.about { background-color: #d4af37; color: #000; padding: 100px 0; text-align: center; }

/* --- 6. THE BOOKING FORM (RECONSTRUCTED) --- */
.booking-section { padding: 100px 0; background-color: #000; text-align: center; }
.booking-form { max-width: 600px; margin: 40px auto 0; text-align: left; }

.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 20px; }

input, select, textarea {
    width: 100%; padding: 15px; background: #1a1a1a; border: 1px solid #333;
    color: #fff; border-radius: 8px; outline: none; font-family: inherit;
}

input:focus, select:focus, textarea:focus { border-color: #d4af37; }

.submit-btn { width: 100%; margin-top: 10px; }

/* --- 7. DETAIL VIEW --- */
#detail-view {
    padding: 150px 0 100px;
    background: #0f0f0f;
    min-height: 100vh;
}

.back-link {
    background: none; border: none; color: #d4af37;
    font-family: 'Poppins', sans-serif; font-size: 1rem;
    cursor: pointer; margin-bottom: 30px;
    text-transform: uppercase; letter-spacing: 2px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.detail-item {
    width: 100%; aspect-ratio: 1/1; object-fit: cover;
    border-radius: 8px; border: 1px solid #222; transition: 0.3s;
}

/* --- 8. FOOTER & RESPONSIVE --- */
footer { padding: 50px; text-align: center; font-size: 0.8rem; color: #444; }

@media (min-width: 768px) {
    .service-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 5.5rem; }
    .form-row { flex-direction: row; }
}

@media (max-width: 767px) {
    .form-row { flex-direction: column; gap: 0; }
}