/* --- ROOT VARIABLES --- */
:root {
    --primary: #000000;
    --secondary: #111111;
    --accent: #c5a059; /* Gold */
    --text-light: #ffffff;
    --text-dim: #cccccc;
    --transition: all 0.3s ease-in-out;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.sticky {
    background: rgba(0, 0, 0, 0.95);
    padding: 12px 0;
    border-bottom: 1px solid var(--accent);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent); }

/* --- HERO --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span { color: var(--accent); }

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-dim);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--accent);
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--accent);
}

/* --- SERVICES --- */
.services { padding: 100px 0; background: var(--secondary); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--primary);
    padding: 40px;
    text-align: center;
    border: 1px solid #222;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 15px; letter-spacing: 1px; }

.service-card .price {
    display: block;
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

/* --- GALLERY --- */
.gallery { padding: 100px 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(197, 160, 89, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .overlay { opacity: 1; }

/* --- BOOKING FORM --- */
.booking { padding: 100px 0; background: var(--secondary); }

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--primary);
    padding: 50px;
    border: 1px solid #222;
}

.booking-form .form-group { margin-bottom: 20px; }

.booking-form input, .booking-form select {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: white;
    font-family: inherit;
}

.btn-full { width: 100%; }

/* --- CONTACT --- */
.contact { padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details p { margin-bottom: 15px; }
.contact-details i { color: var(--accent); margin-right: 10px; }

.social-icons { margin-top: 25px; }
.social-icons a {
    font-size: 1.5rem;
    margin-right: 20px;
    transition: var(--transition);
}

.whatsapp-link {
    display: block;
    margin-top: 20px;
    color: #25d366 !important;
    font-weight: bold;
}

/* --- FOOTER --- */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified for demo, you can add a mobile menu toggle */
    .hero h1 { font-size: 2.5rem; }
    .booking-wrapper, .contact-grid { grid-template-columns: 1fr; }
}