.hero-section {
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero-section h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}
.amenity-item {
    text-align: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}
.amenity-item i {
    font-size: 2rem;
    color: #AA8453;
    margin-bottom: 0.5rem;
}
.booking-section {
    text-align: center;
    padding: 2rem 0;
}
.booking-section .gt-theme-btn {
    background: #AA8453;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.booking-section .gt-theme-btn:hover {
    background: #AA8453;
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
    .amenities {
        grid-template-columns: 1fr;
    }
}
