/* Base Variables */
:root {
    --bg-dark: #121212;
    --card-bg: #1c1c1c;
    --gold: #c4a575;
    --gold-hover: #d1b488;
    --text-light: #f5f5f5;
    --text-muted: #888888;
    --border-color: #333333;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Typography & Titles */
.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    height: 50px;
    object-fit: contain;
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}
.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18,18,18,0.3), rgba(18,18,18,0.9));
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}
.hero-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about {
    padding: 100px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
/* Airbnb-style Listing Highlights */
.listing-highlights {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}
.highlight-item:first-child {
    border-top: 1px solid var(--border-color);
}
.highlight-item i {
    color: var(--gold);
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}
.highlight-item div {
    display: flex;
    flex-direction: column;
}
.highlight-item strong {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}
.highlight-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Amenities Heading */
.amenities-heading {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Amenities Grid */
.amenities-list {
    list-style: none;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.amenities-list li {
    padding: 12px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
.amenities-list i {
    color: var(--text-muted);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #171717;
}
.gallery-swiper {
    width: 100%;
    padding-bottom: 50px;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 80%;
    height: 60vh;
    border-radius: 8px;
    overflow: hidden;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
}
.swiper-pagination-bullet {
    background: var(--gold) !important;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: url('https://www.transparenttextures.com/patterns/stardust.png') var(--bg-dark); /* Subtle texture */
}
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.booking-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}
.card-header i {
    color: var(--gold);
    font-size: 1.5rem;
}
.card-header h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

/* Form Styling */
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: 600;
}
.input-wrapper {
    position: relative;
}
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}
.booking-form input,
.booking-form select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(196, 165, 117, 0.05);
}
.booking-form select {
    appearance: none;
    cursor: pointer;
}
.booking-form option {
    background: var(--card-bg); /* Match the form's card background */
    color: var(--text-light);
}
.btn-submit {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.btn-submit:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* Flatpickr Customization (Matching the Screenshot) */
.calendar-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.flatpickr-calendar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-family: var(--font-body) !important;
    width: 100% !important;
}
.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: var(--text-light) !important;
}
.flatpickr-current-month {
    font-family: var(--font-heading) !important;
    font-size: 1.3rem !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 400 !important;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    color: var(--gold) !important;
    fill: var(--gold) !important;
}
.flatpickr-weekdays {
    background: transparent !important;
}
span.flatpickr-weekday {
    color: var(--gold) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
}
.flatpickr-day {
    color: var(--text-muted) !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    border: 1px solid transparent !important;
}
.flatpickr-day:hover, .flatpickr-day:focus {
    background: rgba(255,255,255,0.1) !important;
    color: var(--text-light) !important;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--bg-dark) !important;
    font-weight: 600 !important;
}
.flatpickr-day.inRange {
    background: rgba(196, 165, 117, 0.15) !important;
    border-color: transparent !important;
    box-shadow: -5px 0 0 rgba(196, 165, 117, 0.15), 5px 0 0 rgba(196, 165, 117, 0.15) !important;
    color: var(--text-light) !important;
}
.booking-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 1px;
    margin-top: 20px;
    text-transform: uppercase;
}
.hidden-input {
    display: none;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-logo img {
    height: 60px;
}
.footer-logo p {
    color: var(--text-muted);
    margin-top: 10px;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* Location Section Styles */
.location {
    padding: 100px 0;
    background: #171717;
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
}
.waze-btn:hover {
    background: #33b1ff;
    border-color: #33b1ff;
    color: #fff;
    transform: translateY(-2px);
}

/* 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.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .booking-grid, .location-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3rem;
    }
    .swiper-slide {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .amenities-list { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; gap: 10px; padding: 0 40px; }
}
