:root {
    --primary-color: #6366f1;
    --secondary-color: #222222;
    --text-color: #484848;
    --light-bg: #f7f7f7;
    --white: #ffffff;
    --border-color: #dddddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('Images/bit_14.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Gallery Layout */
.gallery-container {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-viewer {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-bg);
}

.main-viewer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.image-caption {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    min-height: 2rem;
}

.thumbnail-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.thumb:hover {
    opacity: 1;
}

.thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .main-viewer {
        height: 300px;
    }
    .thumb {
        width: 80px;
        height: 60px;
    }
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.description h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.description p {
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.stat-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Booking Card */
.booking-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.price span {
    font-size: 1rem;
    font-weight: normal;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.reserve-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.reserve-btn:hover {
    background: #4f46e5;
}

.booking-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenity-item i {
    width: 24px;
    color: var(--secondary-color);
}

/* Map Section */
.map-section {
    margin-bottom: 3rem;
}

.map-section h2 {
    margin-bottom: 1rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-bg);
}

.map-container iframe {
    border: 0;
}

.location-text {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--light-bg);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #717171;
}

.footer-note a {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
        margin-top: 2rem;
    }
}
