/* Public pages combined styles for Resorts, Rooms, Banquet Hall
   Extracted from inline styles to keep PHP views clean.
   Only Bootstrap utility classes are recommended; this file contains
   minimal enhancements used across the public pages.
*/

/* Hero Section shared styles */
.hero-section {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-visual {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.hero-meta { flex-wrap: wrap; }
.meta-item { text-align: center; min-width: 120px; }

/* Gallery */
.gallery-section { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.gallery-item { cursor: pointer; transition: all 0.3s ease; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-img { transition: transform 0.3s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-overlay { background: rgba(0,0,0,0.7); transition: opacity 0.3s ease; }

/* Cards hover */
.amenity-card, .feature-card, .location-card, .service-card, .resort-card { transition: all 0.3s ease; }
.amenity-card:hover, .feature-card:hover, .location-card:hover, .service-card:hover, .resort-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.amenity-icon, .feature-icon, .location-icon, .service-icon { transition: transform 0.3s ease; }
.amenity-card:hover .amenity-icon, .feature-card:hover .feature-icon, .location-card:hover .location-icon { transform: scale(1.08); }

/* Section titles */
.section-title { color: #2c3e50; position: relative; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: linear-gradient(90deg, #007bff, #0056b3); border-radius: 2px; }
.section-subtitle { font-size: 1.05rem; color: #6c757d; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); }
.cta-buttons .btn { transition: all 0.3s ease; }
.cta-buttons .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.16); }

/* Minimal responsive tweaks */
@media (max-width: 768px) {
    .hero-section { text-align: center; padding: 3rem 0; }
    .hero-meta { justify-content: center; margin-top: 2rem; }
    .meta-item { min-width: 100px; }
    .gallery-item { margin-bottom: 1rem; }
    .section-title { font-size: 1.6rem; }
    .cta-buttons .btn { width: 100%; }
}

@media (max-width: 576px) {
    .hero-visual { display: none; }
    .section-title { font-size: 1.4rem; }
}
