/* --- Base Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; }
h1, h2, .logo { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
.container { max-width: 1100px; margin: auto; padding: 4rem 2rem; }
.text-center { text-align: center; }
.bg-light { background: #f4f7f6; }

/* --- Navigation --- */
#navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed; top: 0; width: 100%; z-index: 100;
}
.logo { font-size: 1.5rem; font-weight: 600; color: #2c3e50; }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { padding: 0 1rem; }
.nav-links a { color: #333; transition: color 0.3s; }
.nav-links a:hover { color: #16a085; }
.nav-btn { background: #2c3e50; color: #fff !important; padding: 0.5rem 1rem; border-radius: 5px; }

/* --- Hero Section --- */
.hero {
    /* Notice the image path below */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center; color: #fff;
    padding: 0 20px; margin-top: 60px; /* Offset for fixed navbar */
}
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 1rem 2rem; font-size: 1.1rem; border-radius: 5px; transition: 0.3s; cursor: pointer; }
.btn-primary { background: #16a085; color: #fff; }
.btn-primary:hover { background: #12876f; }
.btn-airbnb { background: #FF5A5F; color: white; margin: 10px; font-weight: 500;}
.btn-airbnb:hover { background: #e04e53; }
.btn-booking { background: #003580; color: white; margin: 10px; font-weight: 500;}
.btn-booking:hover { background: #002255; }

/* --- About Section --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 1rem; color: #2c3e50; }
.amenities { list-style: none; margin-top: 1rem; }
.amenities li { padding: 0.5rem 0; }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* --- Gallery Section --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; transition: transform 0.3s; }
.gallery-grid img:hover { transform: scale(1.03); }

/* --- Footer --- */
footer { background: #2c3e50; color: #fff; text-align: center; padding: 1.5rem 0; }

/* --- Mobile Responsiveness --- */
@media(max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; /* Simple hiding for mobile, you can expand this later */ }
}
/* --- Direct Contact Buttons --- */
.btn-call { background: #34495e; color: white; margin: 10px; font-weight: 500; }
.btn-call:hover { background: #2c3e50; }
.btn-whatsapp { background: #25D366; color: white; margin: 10px; font-weight: 500; }
.btn-whatsapp:hover { background: #20b858; }