/* ==========================================================================
   1. FONTS & VARIABLES & RESET
   ========================================================================== */
/* Đã thay đổi font Great Vibes thành Mrs Saint Delafield để giống hình mẫu */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Mrs+Saint+Delafield&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --gold: #b69142;       /* Màu vàng thương hiệu */
    --dark: #111111;       /* Màu đen đậm */
    --text-gray: #666666;  /* Màu chữ nội dung */
    --bg-light: #f9f9f9;   /* Màu nền sáng */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Helper Classes */
.container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }

/* ==========================================================================
   2. TOP BAR & HEADER
   ========================================================================== */
   
/* Class đánh dấu ngôn ngữ đang chọn */
.top-lang a.active-lang {
    color: #b69142;      /* Màu vàng gold */
    font-weight: 700;    /* In đậm */
    pointer-events: none;/* Không cho click lại vào ngôn ngữ đang xem (UX tốt hơn) */
    cursor: default;
}   
   
.top-lang {
    background: #000;
    color: #ccc;
    text-align: right;
    padding: 8px 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.top-lang a { margin: 0 10px; }
.top-lang a:hover { color: #fff; }

header {
    background: #fff;
    padding: 10px 0; /* Giảm padding trên dưới chút cho gọn */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f0f0f0;
}

.header-inner {
    display: flex;
    justify-content: space-between; /* Chia đều không gian */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* --- CẤU HÌNH MENU CHIA ĐÔI (QUAN TRỌNG) --- */
.nav-side {
    flex: 1; /* Chiếm không gian bằng nhau 2 bên */
    display: flex;
    align-items: center;
    /* Khoảng cách giữa các mục menu con (VD: Trang chủ cách Loại phòng 30px) */
    gap: 30px; 
}

/* Menu bên TRÁI: Đẩy nội dung về phía bên phải (Về phía Logo) */
.nav-side.left-nav {
    justify-content: flex-end; 
    padding-right: 40px; /* Khoảng cách từ chữ 'Loại phòng' tới Logo */
}

/* Menu bên PHẢI: Đẩy nội dung về phía bên trái (Về phía Logo) */
.nav-side.right-nav {
    justify-content: flex-start;
    padding-left: 40px; /* Khoảng cách từ chữ 'Liên hệ' tới Logo */
}

.nav-side a {
    text-transform: uppercase;
    font-size: 13px;
    color: #222;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    white-space: nowrap; /* Không xuống dòng */
}

.nav-side a:hover { color: var(--gold); }


/* --- LOGO Ở GIỮA --- */
.logo-center {
    flex: 0 0 auto; /* Không co giãn logo */
}
.logo-center img {
    height: 85px; 
    margin: 0; /* Xóa margin cũ vì đã dùng padding của menu để canh */
    display: block;
}


/* --- DROPDOWN MENU (Giữ nguyên) --- */
.has-sub { position: relative; }
.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px); /* Chỉnh lại vị trí chút cho đẹp */
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border-top: 3px solid var(--gold);
    text-align: left; /* Chữ trong menu con canh trái */
    z-index: 999;
}
.has-sub:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.sub-menu li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f9f9f9;
    font-size: 12px;
    text-align: left;
}
.sub-menu li a:hover { background: #fafafa; color: var(--gold); }


/* --- MOBILE BUTTON --- */
.mobile-menu-btn {
    display: none;
    background: #111;
    color: #fff;
    padding: 8px 20px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
}
.mobile-nav-list { display: none; }

/* ==========================================================================
   3. TYPOGRAPHY & SECTION TITLES (Đã tăng kích thước lớn hơn)
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px; /* Tăng khoảng cách dưới để thoáng hơn */
    position: relative;
    padding-top: 40px;
}

/* Chữ nền cách điệu (Awesome, Luxury...) */
.script-font {
    font-family: 'Mrs Saint Delafield', cursive;
    /* Tăng kích thước từ 80px lên 110px */
    font-size: 150px; 
    color: #d1d1d1;
    position: absolute;
    /* Điều chỉnh vị trí top để căn giữa với chữ chính */
    top: -35px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    white-space: nowrap;
    opacity: 0.5;
    font-weight: 400;
}

/* Tiêu đề chính (SERVICES, ROOMS...) */
.main-title {
    font-family: 'Cinzel', serif;
    /* Tăng kích thước từ 32px lên 45px */
    font-size: 60px; 
    text-transform: uppercase;
    letter-spacing: 6px; /* Tăng khoảng cách các chữ cái */
    color: #222;
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 700; /* Chữ đậm hơn */
    text-shadow: 3px 3px 0px #fff; /* Viền trắng giúp chữ tách khỏi nền script */
}

/* Chỉnh lại riêng cho Mobile để không bị vỡ khung */
@media screen and (max-width: 768px) {
    .script-font { font-size: 60px; top: -15px; }
    .main-title { font-size: 28px; letter-spacing: 3px; }
    .section-title { margin-bottom: 30px; padding-top: 20px; }
}

.desc-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-gray);
    font-size: 15px; /* Tăng size chữ mô tả lên xíu cho dễ đọc */
    margin-top: 25px;
    line-height: 1.8;
}

/* ==========================================================================
   4. HOME SLIDER (FULL SCREEN HEIGHT)
   ========================================================================== */
#home-slider {
    width: 100%;
    
    /* CÔNG THỨC QUAN TRỌNG: 
       100vh = 100% chiều cao màn hình thiết bị.
       Trừ đi 135px (là chiều cao ước lượng của Header + Top Bar) 
       để slider nằm gọn gàng, không bị phải cuộn xuống dưới mới thấy hết. */
    height: calc(100vh - 135px);
    
    /* Đặt chiều cao tối thiểu để trên màn hình laptop nhỏ quá nó vẫn đẹp */
    min-height: 550px; 
    
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.slide-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Fix hình ảnh nằm giữa đẹp hơn */
    background-repeat: no-repeat; 
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-item.active { opacity: 1; z-index: 1; }


/* ==========================================================================
   5. ROOMS SECTION
   ========================================================================== */
.room-display {
    display: flex;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.room-img-side {
    width: 50%;
    height: 380px;
    overflow: hidden;
}
.room-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.room-display:hover .room-img-side img { transform: scale(1.05); }

.room-text-side {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.room-name {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #222;
}

.room-dots { text-align: center; margin-top: 30px; }
.dot {
    display: inline-block;
    width: 10px; height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.2); }


/* ==========================================================================
   6. SERVICES SECTION (Đã chỉnh sửa: Cao hơn & Full Width)
   ========================================================================== */
.services-grid {
    display: flex;
    /* Thay đổi 1: Giảm khoảng cách giữa các ảnh (gap) để liền mạch hơn */
    gap: 5px; 
    /* Thay đổi 2: Mở rộng chiều ngang gần như 100% màn hình */
    max-width: 98%; 
    margin: 0 auto;
    padding: 0; /* Bỏ padding để ảnh sát lề hơn */
}

.service-item {
    flex: 1;
    /* Thay đổi 3: Tăng chiều cao từ 400px lên 700px (hoặc 80vh) */
    height: 700px; 
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo ảnh không bị méo khi kéo dài */
    transition: transform 0.8s ease; /* Tăng thời gian lướt chậm cho sang */
}
.service-item:hover img { transform: scale(1.05); }

/* Lớp phủ đen mờ */
.service-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2); /* Phủ tối nhẹ để chữ nổi bật */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.service-item:hover .service-overlay { background: rgba(0,0,0,0); }

/* Chữ tên dịch vụ */
.service-name {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px; /* Tăng khoảng cách chữ */
    font-size: 18px;
    border-bottom: 2px solid rgba(255,255,255,0.8);
    padding-bottom: 8px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* ==========================================================================
   7. SEASONAL SPECIALS (Đã điều chỉnh: Tương phản cao & Font nền rõ hơn)
   ========================================================================== */
.seasonal-section {
    margin-top: 0; /* Bỏ margin top nếu muốn dính liền với phần trên */
    width: 100%;
    height: 500px; /* Tăng chiều cao để thoáng hơn */
    
    /* Cấu hình hình nền Parallax */
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Lớp phủ màu đen lên ảnh (Quan trọng để đọc được chữ) */
.seasonal-section::before {
    content: '';
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%;
    /* Tăng độ tối lên 0.6 (60%) để nền ảnh trầm xuống, chữ nổi lên */
    background: rgba(0, 0, 0, 0.65); 
    z-index: 1;
}

.seasonal-content { 
    position: relative; 
    z-index: 2; 
    padding: 0 20px;
}

/* Chữ nền cách điệu "Discount" */
.seasonal-content .script-font { 
    font-family: 'Mrs Saint Delafield', cursive;
    /* Màu trắng mờ (opacity thấp) tạo hiệu ứng Watermark */
    color: rgba(255, 255, 255, 0.15); 
    font-size: 250px; /* Tăng kích thước lớn hơn nữa */
    position: absolute;
    top: -180px; /* Đẩy lên cao để nằm sau chữ chính */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none; /* Không cho user bôi đen chữ này */
}

/* Tiêu đề chính */
.seasonal-content h2 {
    font-family: 'Cinzel', serif; /* Hoặc dùng 'Open Sans' nếu muốn hiện đại hơn */
    font-size: 52px; /* Chữ to rõ */
    font-weight: 400;
    letter-spacing: 4px; /* Khoảng cách chữ rộng ra cho sang */
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Đổ bóng nhẹ cho chữ */
}

/* --- RESPONSIVE CHO MOBILE --- */
@media screen and (max-width: 768px) {
    .seasonal-section {
        height: 350px; /* Giảm chiều cao trên mobile */
        background-attachment: scroll; /* Tắt hiệu ứng parallax trên mobile cho mượt */
    }
    .seasonal-content .script-font {
        font-size: 70px; /* Giảm size chữ nền */
        top: -30px;
    }
    .seasonal-content h2 {
        font-size: 24px; /* Giảm size chữ chính */
        letter-spacing: 2px;
    }
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
footer {
    background: #111;
    color: #888;
    padding: 60px 0;
    text-align: center;
}
.footer-social a { color: #777; margin: 0 12px; font-size: 16px; }
.footer-social a:hover { color: #fff; }
.footer-info { margin-top: 30px; }
.footer-info h3 {
    color: #ccc;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.footer-contact span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ==========================================================================
   9. RESPONSIVE (TABLET & MOBILE)
   ========================================================================== */
@media screen and (max-width: 992px) {
    .header-inner { flex-direction: column; padding: 10px 0; }
    .logo-center img { height: 70px; margin: 0; }
    .nav-side { display: none; }
    .mobile-menu-btn { display: block; }
    
    .mobile-nav-list {
        background: #fff;
        border-top: 1px solid #eee;
        text-align: center;
        margin-top: 15px;
    }
    .mobile-nav-list li { border-bottom: 1px solid #f5f5f5; }
    .mobile-nav-list li a {
        display: block; padding: 15px; font-size: 14px; text-transform: uppercase; color: #333;
    }

    #home-slider { height: 350px; }
    /* Giảm font chữ nền trên tablet cho vừa */
    .script-font { font-size: 60px; top: -20px; }
    .main-title { font-size: 26px; }
    
    .room-display { flex-direction: column; width: 90%; }
    .room-img-side { width: 100%; height: 300px; }
    .room-text-side { width: 100%; padding: 30px 20px; }
    
    .services-grid { flex-direction: column; max-width: 100%; gap: 10px; padding: 0 15px; }
    .service-item { height: 300px; margin-bottom: 0; } /* Chiều cao trên mobile giảm xuống 300px */
}

@media screen and (max-width: 576px) {
    #home-slider { height: 250px; }
    /* Giảm font chữ nền trên mobile */
    .script-font { font-size: 50px; top: -15px; }
    .main-title { font-size: 22px; letter-spacing: 2px; }
    
    .room-display { width: 100%; box-shadow: none; }
    .room-img-side { height: 220px; }
    
    .seasonal-section { height: 300px; background-attachment: scroll; }
    .seasonal-content h2 { font-size: 22px; }
    .footer-contact span { font-size: 10px; }
}

/* MOBILE UPDATE */
@media screen and (max-width: 768px) {
    /* Trên điện thoại thì set chiều cao cố định cho gọn */
    #home-slider {
        height: 300px; 
        min-height: auto; /* Bỏ min-height của desktop */
    }
}


/* ==========================================================================
   10. PAGE BANNER (Dành cho các trang con: Rooms, Contact...)
   ========================================================================== */
.page-banner {
    width: 100%;
    height: 400px; /* Chiều cao ngắn hơn Slider trang chủ */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Phủ tối để chữ trắng nổi bật */
}

.banner-content {
    position: relative; z-index: 2; color: #fff;
}

.banner-content h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #eee;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 5px; }


/* ==========================================================================
   11. ROOMS PAGE GRID (Lưới hiển thị phòng)
   ========================================================================== */
.rooms-page-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px; /* Khoảng cách giữa các ô */
}

.room-card-item {
    width: 48%; /* Chia 2 cột trên Desktop (48% + gap) */
    background: #fff;
    transition: transform 0.3s ease;
}

.room-card-item:hover {
    transform: translateY(-5px);
}

/* Ảnh phòng */
.room-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card-item:hover .room-card-img img {
    transform: scale(1.1); /* Zoom ảnh khi hover */
}

/* Tên phòng bên dưới */
.room-card-info {
    text-align: center;
    padding: 20px 0;
}

.room-card-info h3 {
    font-family: 'Poppins', sans-serif; /* Dùng font thường theo mẫu */
    font-size: 18px;
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-card-item:hover .room-card-info h3 {
    color: var(--gold); /* Đổi màu vàng khi hover */
}

/* RESPONSIVE CHO ROOMS PAGE */
@media screen and (max-width: 768px) {
    .page-banner { height: 250px; }
    .banner-content h1 { font-size: 32px; }
    
    .rooms-page-grid {
        flex-direction: column; /* Mobile xếp dọc 1 cột */
        gap: 30px;
    }
    .room-card-item {
        width: 100%; /* Full màn hình */
    }
    .room-card-img {
        height: 220px;
    }
}



/* ==========================================================================
   12. CONTACT PAGE STYLES
   ========================================================================== */
.contact-page-section {
    padding: 80px 0; /* Khoảng cách trên dưới rộng rãi */
    background: #fff;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px; /* Khoảng cách giữa cột trái và phải */
}

/* --- Cột Trái (Info & Map) --- */
.contact-info-col {
    width: 45%;
}

.info-text {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.map-frame {
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* --- Cột Phải (Form) --- */
.contact-form-col {
    width: 55%;
}

.form-heading {
    font-family: 'League Spartan', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
}

.form-note {
    font-size: 13px;
    color: #777;
    margin-bottom: 25px;
    font-style: italic;
}

/* Style cho Form */
.hotel-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.hotel-contact-form .form-group {
    flex: 1; /* Chia đều chiều rộng */
    width: 100%;
    margin-bottom: 15px;
}

.hotel-contact-form label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.hotel-contact-form input, 
.hotel-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #333;
    outline: none;
    transition: 0.3s;
}

.hotel-contact-form input:focus, 
.hotel-contact-form textarea:focus {
    border-color: var(--gold);
    background: #fff;
}

/* Nút Gửi */
.btn-submit {
    background: #C19D76; /* Màu nâu vàng giống hình */
    color: #fff;
    border: none;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--gold);
}

/* Responsive cho Mobile */
@media screen and (max-width: 768px) {
    .contact-page-section { padding: 40px 0; }
    
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }
    .contact-info-col, 
    .contact-form-col {
        width: 100%;
    }
    
    .hotel-contact-form .form-row {
        flex-direction: column; /* Input xếp chồng lên nhau trên mobile */
        gap: 0;
    }
}


/* Thông báo Gửi mail */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}
.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



/* ==========================================================================
   13. ROOM DETAIL PAGE
   ========================================================================== */
.room-detail-section {
    padding: 60px 0;
    background: #fff;
}

.room-detail-container {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

/* --- CỘT TRÁI (GALLERY) --- */
.detail-left { width: 60%; }

.detail-gallery .main-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 15px;
}
.detail-gallery .main-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s ease;
}

.thumb-list {
    display: flex; gap: 10px;
}
.thumb-item {
    width: 100px; height: 70px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: 0.3s;
}
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.thumb-item:hover, .thumb-item.active {
    opacity: 1;
    border-color: var(--gold);
}

/* Icons Tiện ích */
.room-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.icon-box {
    text-align: center;
    color: #666;
}
.icon-box i {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
    color: #888; /* Màu icon xám giống hình */
}
.icon-box span {
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 1px;
}

/* --- CỘT PHẢI (INFO) --- */
.detail-right { width: 40%; }

/* Tabs */
.room-tabs {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
.tab-btn {
    background: none; border: none;
    padding: 10px 20px;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    color: #888;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.tab-btn.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}
.tab-btn:hover { color: var(--gold); }

.tab-content {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    min-height: 100px;
    margin-bottom: 30px;
    animation: fadeEffect 0.5s;
}
@keyframes fadeEffect { from {opacity: 0;} to {opacity: 1;} }

.room-services-list li {
    margin-bottom: 8px;
    font-size: 13px;
}
.room-services-list i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 12px;
}

/* Specs Table */
.room-specs h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
    font-weight: 400;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}
.spec-label { color: #777; }
.spec-value { color: #333; font-weight: 600; }

/* Responsive */
@media screen and (max-width: 768px) {
    .room-detail-container { flex-direction: column; }
    .detail-left, .detail-right { width: 100%; }
    .detail-gallery .main-image { height: 250px; }
}