/* ===== CUSTOM STYLES ===== */
body {
    font-family: 'Poppins', sans-serif;
    color: #2d3e2c;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #1e4a2b !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: #b8860b;
    font-weight: 300;
}

.nav-link {
    font-weight: 600;
    color: #2d3e2c !important;
    margin: 0 10px;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #b8860b !important;
}

.btn-book-nav {
    /*background-color: #b8860b;*/
    background-color:#EBAD17;
    color: #fff !important;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-book-nav:hover {
    background-color: #8b6508;
    color: #fff !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&h=800&fit=crop&crop=center') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 140px 0 100px 0;
    margin-top: 102px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #f8f9fa, transparent);
    pointer-events: none;
}

.hero-title {
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title span {
    color: #f5c842;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-badge {
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-hero {
    background-color: #f5c842;
    color: #1e3a2b;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 8px 25px rgba(245, 200, 66, 0.4);
    margin: 15px;
}

.btn-hero:hover {
    background-color: #e0b32e;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 200, 66, 0.5);
    color: #1e3a2b;
}

.btn-hero-outline {
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    transition: all 0.3s;
    background: transparent;
    backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
    background: white;
    color: #1e3a2b;
    border-color: white;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-weight: 700;
    /*color: #1e4a2b;*/
    color:#27733D;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    /*background: #b8860b;*/
    background:#EBAD17;
    border-radius: 10px;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: white;
    padding: 80px 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3d4f3c;
}

/* ===== AMENITIES ===== */
.amenity-card {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f3ee;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #b8860b;
}

.amenity-icon {
    font-size: 2.8rem;
    /*color: #b8860b;*/
    color:#EBAD17;
    margin-bottom: 15px;
}

.amenity-card h5 {
    font-weight: 600;
    color: #1e4a2b;
}

.amenity-card .badge-extra {
    background-color: #e9ecef;
    color: #6c757d;
    font-weight: 400;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 30px;
    margin-top: 8px;
    display: inline-block;
}

/* ===== TOUR PLAN ===== */
.tour-section {
    background: #f2f6f0;
    /*background: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?w=600&h=400&fit=crop&crop=center');*/
    
    padding: 80px 0;
}

.amenities-section {
    background: #f2f6f0;
    padding: 80px 0;
}

.tour-item {
    background: white;
    padding: 12px 22px;
    border-radius: 50px;
    display: inline-block;
    margin: 6px 8px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #e2e8dd;
    transition: all 0.2s;
}

.tour-item:hover {
    background: #b8860b;
    color: white;
    border-color: #b8860b;
    transform: scale(1.02);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: white;
    padding: 80px 0;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 250px;
    cursor: pointer;
}

.gallery-card:hover {
    transform: scale(1.03);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.gallery-item.d-none {
    display: none !important;
}

.gallery-item.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gallery Load More Button */
#loadMoreGallery {
    background: #b8860b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#loadMoreGallery:hover {
    background: #9a7209;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.3);
}

/* ===== ROOM CARDS ===== */
.room-boutique {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
    transition: all 0.4s;
    height: 100%;
    border: 1px solid #f0ede8;
}

.room-boutique:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: #c9a84c;
}

.room-boutique .card-body {
    padding: 28px;
}

.room-boutique .room-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: #1a2b22;
}

.room-boutique .room-title small {
    font-weight: 400;
    font-size: 0.8rem;
    color: #8a7a6a;
    display: block;
    margin-top: 4px;
}

.room-boutique .room-feature {
    font-size: 0.85rem;
    color: #5a5a5a;
    margin-bottom: 4px;
}

.room-boutique .room-feature i {
    color: #c9a84c;
    width: 22px;
}

/* ===== ROOM SLIDER ===== */
.room-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.room-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4cfc7;
    color: #888;
    font-size: 3rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    color: #333;
    padding: 0;
}

.room-img-wrapper:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #b8860b;
    transform: scale(1.3);
}

.slider-dot:hover {
    background: rgba(255,255,255,0.9);
}

/* ===== OLD ROOM CARD (Keep for compatibility if needed) ===== */
.room-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #f0f3ee;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.room-card .card-body {
    padding: 25px;
}

.room-card .room-name {
    font-weight: 700;
    color: #1e4a2b;
    font-size: 1.3rem;
}

.room-card .room-name small {
    font-weight: 400;
    color: #6c757d;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.room-icon {
    font-size: 2.2rem;
    color: #b8860b;
}

/* ===== MAP SECTION ===== */
.map-container {
    margin: 50px 85px 50px 90px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: #1e3a2b;
    color: white;
    padding: 80px 0;
}

.booking-section .section-title {
    color: white;
}

.booking-section .section-title:after {
    background: #f5c842;
}

.form-control, .form-select {
    border-radius: 15px;
    padding: 14px 20px;
    border: none;
    background: rgba(255,255,255,0.9);
    font-weight: 400;
}

.form-control:focus, .form-select:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.4);
}

.btn-booking {
    background-color: #f5c842;
    color: #1e3a2b;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    width: 100%;
}

.btn-booking:hover {
    background-color: #e0b32e;
    transform: translateY(-2px);
    color: #1e3a2b;
}

.policy-box {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 25px 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.policy-box ul {
    list-style: none;
    padding-left: 0;
}

.policy-box ul li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.policy-box ul li:last-child {
    border-bottom: none;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f261b;
    color: rgba(255,255,255,0.7);
    padding: 40px 0;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #f5c842;
}

.footer .social-icon {
    font-size: 1.4rem;
    margin: 0 12px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.footer .social-icon:hover {
    color: #f5c842;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 100px 0 60px 0;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title.text-center:after {
        left: 50%;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .gallery-card {
        height: 200px;
    }
    
    .room-img-wrapper {
        height: 180px;
    }
    
    .slider-btn {
        width: 25px;
        height: 25px;
        font-size: 12px;
        opacity: 1;
    }
    
    .map-container {
        margin: 30px 15px;
    }
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.text-gold {
    color: #b8860b;
}

.bg-gold {
    background-color: #b8860b;
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Image lazy loading placeholder */
.lazy {
    background: #f0f0f0;
    min-height: 100px;
}

.lazy.loaded {
    animation: imageFadeIn 0.5s ease;
}

@keyframes imageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}