:root {
    --gold: #d4af37;
    --dark: #1a1a1a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    padding-top: 76px;
    background-color: var(--white);
    color: var(--dark);
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.navbar {
    background: rgba(0,0,0,0.9) !important;
    backdrop-filter: blur(4px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #ccc !important;
    font-weight: 400;
    margin: 0 10px;
    transition: color 0.3s;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--gold) !important;
    }

.btn-outline-gold {
    color: var(--gold);
    border-color: var(--gold);
    border-radius: 30px;
    padding: 6px 20px;
    transition: all 0.3s;
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: #000;
    }

.btn-gold {
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-gold:hover {
        background: #c5a02e;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    }

.hero-section {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px 0;
}

    .hero-content h1 {
        font-size: 4.5rem;
        text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

.search-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

    .search-box .form-control {
        background: rgba(255,255,255,0.9);
        border: none;
        border-radius: 12px;
        padding: 12px 18px;
    }

    .search-box .btn-gold {
        border-radius: 12px;
        padding: 12px;
    }

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.filter-bar {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

    .filter-bar .form-select {
        border-radius: 10px;
        padding: 10px 14px;
        border-color: #ddd;
    }

        .filter-bar .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
        }

.luxury-pagination .page-link {
    color: var(--dark);
    border-radius: 10px !important;
    margin: 0 4px;
    border: 1px solid #e0e0e0;
    min-width: 42px;
    text-align: center;
}

.luxury-pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 600;
}

.luxury-pagination .page-item.disabled .page-link {
    color: #ccc;
}

.brand-intro {
    background: #fff;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

    .feature-list li i {
        margin-right: 12px;
    }

.luxury-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    height: 100%;
}

    .luxury-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.card-img {
    height: 220px;
    background-color: #1a1a1a; /* nền dự phòng khi ảnh Unsplash chưa tải xong/lỗi, tránh khoảng trắng vỡ layout */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.badge.bg-gold {
    background: var(--gold);
    color: #000;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.luxury-card .card-body {
    padding: 20px;
}

/* ===== IS COMING PARTIAL (Views/Shared/_IsComing.cshtml) =====
   Dùng chung cho Trang chủ và Trang chi tiết Homestay - style đặt tại đây
   (thay vì trong Partial View) để đảm bảo hiển thị đồng nhất ở mọi nơi được nhúng. */
.is-coming-section {
    background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
}

.is-coming-card {
    position: relative;
}

.is-coming-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    margin-bottom: 0;
}

.is-coming-carousel .carousel-control-prev,
.is-coming-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    opacity: 0.85;
}

    .is-coming-carousel .carousel-control-prev:hover,
    .is-coming-carousel .carousel-control-next:hover {
        background: var(--gold);
        opacity: 1;
    }

.is-coming-carousel .carousel-control-prev {
    left: -22px;
}

.is-coming-carousel .carousel-control-next {
    right: -22px;
}


.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}

    .price .text-muted {
        font-weight: 300;
        font-size: 0.9rem;
    }

.btn-outline-gold {
    border-radius: 30px;
    padding: 5px 18px;
}

.amenities {
    background: var(--light-gray);
}

.amenity-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

    .amenity-item i {
        font-size: 3.2rem;
        color: var(--gold);
        margin-bottom: 10px;
    }

    .amenity-item h6 {
        font-weight: 600;
        margin-top: 5px;
    }

    .amenity-item:hover {
        transform: scale(1.05);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--gold);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
}

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.footer-section {
    background: #111;
    color: #ccc;
    padding-top: 60px;
    padding-bottom: 20px;
}

    .footer-section h4, .footer-section h5 {
        color: #fff;
        font-family: 'Playfair Display', serif;
    }

    .footer-section a {
        color: #aaa;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-section a:hover {
            color: var(--gold);
        }

.social-icons a {
    display: inline-block;
    background: #222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 8px;
    transition: 0.3s;
}

    .social-icons a:hover {
        background: var(--gold);
        color: #000;
    }

.footer-section .btn-gold {
    border-radius: 0 30px 30px 0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-box {
        padding: 15px;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }
}

/* ===== AUTH SPLIT-SCREEN (Đăng nhập / Đăng ký) ===== */
.auth-wrapper {
    min-height: 100vh;
    padding-top: 76px;
}

.auth-visual {
    position: relative;
    min-height: 40vh;
    background-size: cover;
    background-position: center;
}

.auth-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%);
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    color: #fff;
}

.auth-visual-content .quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.4;
    max-width: 420px;
}

.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--white);
}

.auth-form-inner {
    width: 100%;
    max-width: 400px;
}

.auth-form-inner .form-control {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
}

.auth-form-inner .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

.auth-form-inner .btn-gold {
    padding: 12px 0;
    font-size: 1.05rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    font-size: 0.85rem;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

@media (min-width: 992px) {
    .auth-wrapper {
        display: flex;
        min-height: calc(100vh - 76px);
    }

    .auth-visual {
        flex: 1 1 50%;
        min-height: auto;
    }

    .auth-form-panel {
        flex: 1 1 50%;
    }
}

/* =====================================================================
   TRANG PHỤ MỚI: Danh mục Homestay / Tin tức / Về chúng tôi
   ===================================================================== */

/* Hero dùng chung cho các trang phụ (News, Categories, About) - thấp hơn
   hero-section của trang chủ vì các trang này không cần chiếm gần hết màn hình. */
.page-hero-section {
    position: relative;
    min-height: 40vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2c2412 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 0;
}

/* Khối thống kê thật ở trang chủ */
.stats-section {
    background: var(--dark);
    color: #fff;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}

.stat-item .stat-label {
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Thẻ Danh mục Homestay */
.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

.category-card-sm {
    padding: 22px 14px;
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.category-card h5, .category-card h6 {
    color: var(--dark);
    margin-bottom: 8px;
}

/* Thẻ Tin tức - kế thừa luxury-card, chỉ chỉnh khoảng cách chữ cho hợp nội dung ngắn */
.news-card .card-body h5, .news-card .card-body h6 {
    color: var(--dark);
}

.news-card .card-body p {
    color: #6c757d;
}

/* Nội dung chi tiết bài viết (Summernote content) */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 20px 0;
    }

    .article-content h1, .article-content h2, .article-content h3 {
        font-family: 'Playfair Display', serif;
        margin-top: 1.5em;
    }
