:root {
    --primary-color: #59aaec;
    --secondary-color: #007acc;
    --accent-color: #ff9800;
    --dark-color: #333;
    --light-color: #f9f7f3;
    --white: #fff;
    --shadow: 0 4px 8px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

/* Main Content */
.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Amenity Sections */
.amenity-section {
    margin-bottom: 80px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-color);
}

.section-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.amenity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr;
}

/* Gallery */
.amenity-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    aspect-ratio: 1/1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

/* Features List */
.amenity-features {
    padding: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.features-list i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:hover {
    background: #e68900;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,152,0,0.3);
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 5% 15px;
    font-size: 0.85rem;
    margin-top: 10rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.footer-section p, .footer-section li {
    margin-bottom: 6px;
    opacity: 0.75;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #ff9800;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.8rem;
}
/* Responsive Design */
@media (max-width: 992px) {
    .amenity-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-overlay h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .amenity-gallery {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 50vh;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}