:root {
    --primary: #1C0F00;
    --secondary: #DEC990;
    --black: #0F0F0F;
    --charcoal: #1B1B1B;
    --cream: #F8F5EF;
    --white: #ffffff;
    --gray: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--cream);
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar {
    background: #050505;
    color: var(--secondary);
    font-size: 14px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.navbar {
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(222, 201, 144, 0.25);
}

.navbar-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.site-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
}

.site-logo span {
    color: var(--secondary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-menu li a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--secondary);
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.book-btn {
    background: var(--primary);
    color: var(--white);
    padding: 13px 24px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid var(--secondary);
    transition: 0.3s;
}

.book-btn:hover {
    background: var(--secondary);
    color: var(--black);
}

.mobile-toggle {
    display: none;
    background: none;
    color: var(--secondary);
    border: none;
    font-size: 28px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #050505, #1b1b1b);
    color: var(--white);
    padding-top: 70px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 35px;
}

.footer-logo {
    width: 180px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-col p {
    color: var(--gray);
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: var(--gray);
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.map-box iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(222, 201, 144, 0.2);
    text-align: center;
    padding: 18px;
    margin-top: 50px;
    color: var(--gray);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .top-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .nav-menu {
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background: #0f0f0f;
        flex-direction: column;
        display: none;
        padding: 25px;
    }

    .nav-menu.active {
        display: flex;
    }

    .book-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    background: linear-gradient(rgba(10,10,10,0.75), rgba(28,15,0,0.85)), url('../images/hotel-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 65px 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 38px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.page-hero p {
    max-width: 620px;
    margin: auto;
    color: #eee;
    font-size: 16px;
}

.booking-section {
    padding: 80px 0;
}

.booking-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(28, 15, 0, 0.12);
    border: 1px solid rgba(28, 15, 0, 0.08);
}

.booking-card .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.booking-card .form-group {
    margin-bottom: 20px;
}

.booking-card label {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 14px;
    outline: none;
    font-family: inherit;
}

.booking-card textarea {
    min-height: 120px;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
    border-color: var(--secondary);
}

.primary-btn {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid var(--secondary);
    font-weight: 800;
    cursor: pointer;
}

.primary-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.booking-success {
    background: #d1e7dd;
    color: #146c43;
    padding: 14px 16px;
    border-radius: 14px;
    margin: 18px 0;
    font-weight: 700;
}

.booking-error {
    background: #f8d7da;
    color: #842029;
    padding: 14px 16px;
    border-radius: 14px;
    margin: 18px 0;
    font-weight: 700;
}

@media (max-width: 768px) {
    .booking-card .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    
    .page-hero {
        padding: 48px 0;
    }

    .page-hero h1 {
        font-size: 30px;
    }
}

.nav-menu li a.active {
    color: var(--secondary);
}

.nav-menu li a.active::after {
    width: 100%;
}

.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 620px;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: 1.2s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.default-hero {
    background: linear-gradient(rgba(10,10,10,0.55), rgba(28,15,0,0.8));
}

.hero-content {
    color: white;
    max-width: 760px;
}

.hero-content span,
.section-kicker,
.section-title span {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 800;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.05;
    margin: 18px 0;
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    color: #eee;
    margin-bottom: 28px;
}

.quick-booking {
    margin-top: -55px;
    position: relative;
    z-index: 20;
}

.quick-booking-form {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 22px 55px rgba(28, 15, 0, 0.18);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 18px;
    align-items: end;
    border: 1px solid rgba(222, 201, 144, 0.45);
}

.quick-booking-form label {
    display: block;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.quick-booking-form input {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #ddd;
}

.quick-booking-form button {
    background: var(--primary);
    color: white;
    border: 1px solid var(--secondary);
    padding: 15px 28px;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
}

.quick-booking-form button:hover {
    background: var(--secondary);
    color: var(--primary);
}

.intro-section {
    padding: 110px 0 60px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.intro-grid h2,
.section-title h2,
.feature-content h2 {
    color: var(--primary);
    font-size: 42px;
    line-height: 1.15;
}

.intro-grid p {
    font-size: 18px;
    color: #555;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* PREMIUM ROOM CARDS */

.room-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.08);
    border: 1px solid rgba(28, 15, 0, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(28, 15, 0, 0.16);
    border-color: rgba(222, 201, 144, 0.28);
}

.room-img {
    height: 250px;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-card:hover .room-img img {
    transform: scale(1.06);
}

.room-content {
    padding: 24px;
}

.room-content h3 {
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.room-card:hover h3 {
    color: #8a6a34;
}

.room-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.room-meta span {
    background: #f4efe7;
    color: var(--primary);
    padding: 9px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(222, 201, 144, 0.35);
}

.room-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.room-bottom strong {
    color: var(--primary);
    font-size: 22px;
}

.room-actions {
    display: flex;
    gap: 12px;
}

.learn-btn,
.book-small {
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 46px;

    border-radius: 999px;

    font-weight: 800;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.learn-btn {
    background: rgba(28, 15, 0, 0.06);
    color: var(--primary);
}

.learn-btn:hover {
    background: rgba(28, 15, 0, 0.1);
    color: #8a6a34;
    transform: translateY(-3px);
}

.book-small {
    background: linear-gradient(135deg, #1C0F00, #2c1802);
    color: #fff;
    border: 1px solid rgba(222, 201, 144, 0.35);
    cursor: pointer;
    padding: 0 18px;
}

.book-small:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #2c1802, #3b2204);
    color: var(--secondary);
    box-shadow: 0 16px 35px rgba(28, 15, 0, 0.18);
}

.learn-btn::before,
.book-small::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.22),
        transparent
    );
    transition: 0.65s ease;
}

.learn-btn:hover::before,
.book-small:hover::before {
    left: 120%;
}

@media (max-width: 768px) {

    .room-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-actions {
        width: 100%;
    }

    .learn-btn,
    .book-small {
        flex: 1;
    }

}

.feature-section {
    padding: 90px 0;
    background: white;
}

.alt-bg {
    background: #f4efe7;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.feature-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.mini-slider {
    height: 430px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #111;
    box-shadow: 0 18px 45px rgba(28, 15, 0, 0.18);
}

.mini-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: 0.8s ease;
}

.mini-slide.active {
    opacity: 1;
    transform: scale(1);
}

.feature-content h4 {
    color: #8a6a34;
    font-size: 20px;
    margin: 12px 0;
}

.feature-content p {
    color: #555;
    margin-bottom: 26px;
    font-size: 17px;
}

.dark-section {
    background: linear-gradient(135deg, #050505, #1C0F00);
}

.section-title.light h2 {
    color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(222, 201, 144, 0.25);
    padding: 28px;
    border-radius: 22px;
    color: white;
}

.stars {
    color: var(--secondary);
    margin-bottom: 14px;
}

.review-card p {
    color: #eee;
    margin-bottom: 20px;
}

.review-card h4 {
    color: var(--secondary);
}

.review-card span {
    color: #ccc;
    font-size: 14px;
}

.faq-container {
    max-width: 850px;
}

.faq-item {
    background: white;
    margin-bottom: 14px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(28, 15, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.1);
}

.blog-card img,
.blog-card .image-placeholder {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.blog-card div {
    padding: 22px;
}

.blog-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-card p {
    color: #666;
    margin-bottom: 14px;
}

.blog-card a {
    color: var(--primary);
    font-weight: 800;
}

.blog-detail-section {
    padding: 70px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 34px;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

.blog-detail-image {
    height: 430px;
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 18px 45px rgba(28, 15, 0, 0.14);
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    background: #fff;
    padding: 34px;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.08);
}

.blog-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.blog-meta span {
    background: #f4efe7;
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
}

.blog-detail-content h2 {
    color: var(--primary);
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.blog-body {
    color: #555;
    font-size: 17px;
    line-height: 1.9;
}

.blog-back-link {
    margin-top: 30px;
}

.blog-sidebar {
    position: sticky;
    top: 130px;
}

.sidebar-box {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.08);
    margin-bottom: 22px;
}

.sidebar-box h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 18px;
}

.latest-blog-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.latest-blog-item:last-child {
    border-bottom: none;
}

.latest-blog-item img,
.latest-placeholder {
    width: 82px;
    height: 68px;
    border-radius: 14px;
    object-fit: cover;
}

.latest-placeholder {
    background: linear-gradient(135deg, #1C0F00, #0A0A0A);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.latest-blog-item h4 {
    color: var(--primary);
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 6px;
}

.latest-blog-item span {
    color: #8a6a34;
    font-size: 13px;
    font-weight: 700;
}

.dark-sidebar-box {
    background: linear-gradient(135deg, #050505, #1C0F00);
    color: #fff;
    border: 1px solid rgba(222, 201, 144, 0.25);
}

.dark-sidebar-box h3 {
    color: var(--secondary);
}

.dark-sidebar-box p {
    color: #ddd;
    margin-bottom: 20px;
}

.sidebar-book-btn {
    display: inline-flex;
    background: var(--secondary);
    color: var(--primary);
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 900;
}

@media (max-width: 1000px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 650px) {
    .blog-detail-image {
        height: 280px;
    }

    .blog-detail-content {
        padding: 24px;
    }

    .blog-detail-content h2 {
        font-size: 26px;
    }
}

.nearby-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.nearby-card {
    background: white;
    padding: 22px;
    border-radius: 20px;
    border-left: 4px solid var(--secondary);
}

.nearby-card h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.nearby-card span {
    color: #8a6a34;
    font-weight: 800;
    font-size: 14px;
}

.nearby-card p {
    color: #666;
    margin-top: 10px;
}

.image-placeholder {
    background: linear-gradient(135deg, #1C0F00, #0A0A0A);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    min-height: 220px;
}

.image-placeholder.large {
    height: 430px;
}

@media (max-width: 1000px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .quick-booking-form,
    .intro-grid,
    .feature-grid,
    .feature-grid.reverse {
        grid-template-columns: 1fr;
    }

    .rooms-grid,
    .reviews-grid,
    .blog-grid,
    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .hero-slider {
        height: 75vh;
        min-height: 520px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .rooms-grid,
    .reviews-grid,
    .blog-grid,
    .nearby-grid {
        grid-template-columns: 1fr;
    }

    .room-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MOBILE HEADER IMPROVEMENTS */

@media (max-width: 900px) {

    .top-bar {
        display: none;
    }

    .navbar {
        position: sticky;
        top: 0;
        z-index: 9999;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(14px);
    }

    .navbar-inner {
        height: 78px;
    }

    .site-logo img {
        height: 80px;
    }

    .mobile-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(222, 201, 144, 0.12);
        border: 1px solid rgba(222, 201, 144, 0.22);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .nav-menu {
        top: 78px;
        padding: 22px;
        gap: 18px;
        border-top: 1px solid rgba(222, 201, 144, 0.15);
        box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    }

    .nav-menu li a {
        font-size: 16px;
    }
}

.room-detail-section {
    padding: 80px 0;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 35px;
    align-items: start;
}

.room-main-image {
    height: 470px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(28, 15, 0, 0.16);
}

.room-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.room-gallery-strip img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.room-description-box {
    background: #fff;
    margin-top: 24px;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.08);
}

.room-description-box h2 {
    color: var(--primary);
    margin-bottom: 14px;
}

.room-description-box p {
    color: #555;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenities-grid span {
    background: #f4efe7;
    color: var(--primary);
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 700;
    border: 1px solid rgba(222, 201, 144, 0.45);
}

.room-booking-sidebar {
    position: sticky;
    top: 130px;
}

.booking-summary-card {
    background: linear-gradient(135deg, #050505, #1C0F00);
    color: white;
    padding: 30px;
    border-radius: 26px;
    border: 1px solid rgba(222, 201, 144, 0.25);
    box-shadow: 0 20px 55px rgba(28, 15, 0, 0.22);
}

.booking-summary-card h3 {
    color: var(--secondary);
    font-size: 26px;
    margin-bottom: 12px;
}

.price-line {
    font-size: 30px;
    font-weight: 900;
    color: white;
    margin-bottom: 22px;
}

.price-line span {
    font-size: 15px;
    color: #ddd;
}

.booking-summary-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.booking-summary-card li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #eee;
}

.full-btn {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 12px;
}

.outline-btn {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 800;
}

.outline-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

@media (max-width: 900px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
    }

    .room-booking-sidebar {
        position: static;
    }

    .room-main-image {
        height: 330px;
    }

    .room-gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

.top-bar {
    transition: 0.3s ease;
}

.site-header.scrolled .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-card {
    position: relative;
    height: 290px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
}

.gallery-overlay h3 {
    color: var(--secondary);
    font-size: 22px;
}

.gallery-overlay span {
    font-size: 14px;
    color: #eee;
}

.detail-feature-section {
    padding: 80px 0;
}

.detail-feature-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.detail-feature-content {
    background: white;
    padding: 36px;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.08);
}

.detail-feature-content h2 {
    color: var(--primary);
    font-size: 42px;
    line-height: 1.15;
    margin: 10px 0;
}

.detail-feature-content h4 {
    color: #8a6a34;
    font-size: 20px;
    margin-bottom: 16px;
}

.detail-feature-content p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 26px;
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.detail-gallery img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(28, 15, 0, 0.12);
}

.detail-gallery img:first-child {
    grid-column: span 2;
    height: 330px;
}

@media (max-width: 900px) {
    .gallery-grid,
    .detail-feature-grid {
        grid-template-columns: 1fr;
    }

    .detail-gallery img:first-child {
        height: 250px;
    }
}

@media (max-width: 650px) {
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .detail-gallery img:first-child {
        grid-column: span 1;
    }

    .gallery-card {
        height: 240px;
    }
}

.contact-section {
    padding: 80px 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    padding: 34px;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.08);
}

.contact-info-box {
    background: linear-gradient(135deg, #050505, #1C0F00);
    color: white;
    border: 1px solid rgba(222, 201, 144, 0.25);
}

.contact-info-box h2 {
    color: var(--secondary);
    font-size: 34px;
    line-height: 1.2;
    margin: 12px 0 24px;
}

.contact-info-list {
    margin-bottom: 26px;
}

.contact-info-list p {
    color: #eee;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-list strong {
    color: var(--secondary);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(222, 201, 144, 0.22);
}

.map-section {
    padding: 40px 0 80px;
}

.map-full-box {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.12);
}

.map-full-box iframe {
    width: 100%;
    height: 430px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-box h2 {
        font-size: 28px;
    }

    .map-full-box iframe {
        height: 320px;
    }
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.menu-item-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 120px;
    box-shadow: 0 12px 30px rgba(28, 15, 0, 0.07);
    border: 1px solid rgba(28, 15, 0, 0.06);
    transition: 0.3s ease;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(28, 15, 0, 0.12);
}

.menu-item-card img {
    width: 120px;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
}

.menu-item-content {
    padding: 16px 18px;
}

.menu-title-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.menu-title-row h3 {
    color: var(--primary);
    font-size: 18px;
    line-height: 1.25;
}

.menu-title-row strong {
    color: #8a6a34;
    white-space: nowrap;
    font-size: 14px;
}

.menu-item-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 1000px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .menu-item-card {
        grid-template-columns: 100px 1fr;
        min-height: 100px;
    }

    .menu-item-card img {
        width: 100px;
        min-height: 100px;
    }

    .menu-item-content {
        padding: 14px;
    }

    .menu-title-row h3 {
        font-size: 16px;
    }

    .menu-item-content p {
        font-size: 13px;
    }
}

.offers-highlight-section,
.offers-page-section {
    padding: 80px 0;
    background: #f8f5ef;
}

.offers-highlight-grid,
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.offer-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(28, 15, 0, 0.08);
    border: 1px solid rgba(28, 15, 0, 0.07);
    transition: 0.35s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(28, 15, 0, 0.15);
}

.offer-image {
    height: 230px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.07);
}

.offer-content {
    padding: 26px;
}

.offer-content span {
    color: var(--secondary);
    background: #1C0F00;
    padding: 7px 13px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 14px;
}

.offer-content h3 {
    color: var(--primary);
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.offer-content strong {
    display: block;
    color: #8a6a34;
    font-size: 20px;
    margin-bottom: 10px;
}

.offer-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
}

.center-btn-wrap {
    text-align: center;
    margin-top: 36px;
}

.outline-light-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 900;
    background: #fff;
}

.outline-light-btn:hover {
    background: var(--primary);
    color: white;
}

/* POPUP */

.offer-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.68);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.offer-popup-overlay.active {
    display: flex;
}

.offer-popup-box {
    position: relative;
    background: #fff;
    border-radius: 28px;
    max-width: 760px;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
    animation: popupIn 0.45s ease;
}

.offer-popup-close {
    position: absolute;
    right: 16px;
    top: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #1C0F00;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

.offer-popup-image {
    min-height: 340px;
}

.offer-popup-image img,
.offer-popup-image .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-popup-content {
    padding: 42px 34px;
}

.offer-popup-content span {
    color: var(--secondary);
    background: #1C0F00;
    padding: 7px 13px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 14px;
}

.offer-popup-content h3 {
    color: var(--primary);
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.offer-popup-content strong {
    color: #8a6a34;
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
}

.offer-popup-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1000px) {
    .offers-highlight-grid,
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .offers-highlight-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-popup-box {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .offer-popup-image {
        min-height: 220px;
    }
}