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

body {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

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

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ebebeb;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo {
    font-weight: 800;
    color: #FF385C; /* Airbnb-style Brand Color */
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Hero Section */
#hero {
    height: 300px;
    text-align: center;
  
    margin-top: 20px;
    border-radius: 12px;
    background-image: url("images/image_0.jpg");
    background-size: 100% auto;
    background-position: center;
   
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Sections */
section {
    padding: 60px 0;
    border-bottom: 1px solid #ebebeb;
}

h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity {
    font-size: 1.1rem;
}

/* Image Gallery Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */
    gap: 15px;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Keeps images uniform size */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Contact Card */
.contact-card {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #717171;
    font-size: 0.8rem;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr; /* 1 image per row on mobile */
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 20px 0;
    }

    #hero {
        height: 200px;
    }
}