/* --- FONTS & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Pacifico&display=swap');

:root {
    --primary-blue: #0e86d4; /* Ocean Blue */
    --light-sand: #fbf9f4;    /* Warm White */
    --accent-gold: #f4d03f;   /* Sun */
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --airbnb: #ff385c;
    --booking: #003580;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-sand);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--light-sand);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

/* --- BUTTONS --- */
.btn-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-airbnb { background-color: var(--airbnb); }
.btn-booking { background-color: var(--booking); }

/* --- CONTENT SECTIONS --- */
.container {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.section-title {
    text-align: center;
    font-family: 'Pacifico', cursive;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Location Grid */
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.local-list h3 { margin-bottom: 10px; color: var(--primary-blue); }
.local-list p { margin-bottom: 20px; }

/* --- FOOTER --- */
footer {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { display: flex; }
    
    .hero h1 { font-size: 3rem; }
    .location-layout { grid-template-columns: 1fr; }
}
