/* --- Universal Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

:root {
    --primary-color: #1a2a4c; /* Deep Navy Blue */
    --secondary-color: #c0a062; /* Gold */
    --text-color: #555;
    --light-gray: #f7f9fc;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }

/* --- Header & Navigation --- */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    transition: color 0.3s ease;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: #a98c53;
    transform: translateY(-3px);
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(26, 42, 76, 0.7), rgba(26, 42, 76, 0.7)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center center/cover no-repeat;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: auto;
}

/* --- General Section Styling --- */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* --- Amenities Section --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
}

.amenity-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.amenity-card h3 {
    margin-bottom: 0.5rem;
}

/* --- Availability Section --- */
.availability-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem;
    border-radius: 8px;
}

.availability-content h2 {
    color: var(--white);
}

.availability-content .btn {
    margin-top: 1.5rem;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* --- Location Section --- */
.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.location-map iframe {
    border-radius: 8px;
}

.location-text h3 {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
}

/* --- Contact Section --- */
.contact-box {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.contact-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-box a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    
    .nav-menu {
        display: none; /* Simplification for this example. A real site would use a hamburger menu. */
    }
    
    .about-grid, .location-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}