body {
    font-family: 'Poppins', sans-serif;
    background-color: #faf7f2;
    margin: 0;
    padding: 0;
    color: #444;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    padding: 10px 0;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.site-logo {
    max-height: 80px;
    width: auto;
}

.hero-banner {
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
    padding: 60px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

h1, h2 {
    margin-bottom: 20px;
}

section {
    padding: 30px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: calc(25% - 10px);
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.review {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.btn {
    display: inline-block;
    background-color: #ff9f43;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e68a00;
}

#map {
    height: 350px;
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer a {
    color: #ff9f43;
    text-decoration: none;
}

.hero-banner {
    padding: 50px 0 !important;
    background-size: cover !important;
    background-position: center !important;
    height: auto !important;
}

.gallery img {
    width: calc(25% - 10px) !important;
    height: 160px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

