/* ============================================
   style.css – Complete Unified Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f5f6fa;
    color: #1a1a2e;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / NAVIGATION ===== */
header {
    background: #0f0e1a;
    color: #fff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f5c842;
    letter-spacing: 1px;
}
.logo a span {
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-menu li a {
    color: #e0e0e0;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: #f5c842;
    color: #0f0e1a;
}

.btn-book-nav {
    background: #f5c842 !important;
    color: #0f0e1a !important;
    font-weight: 700 !important;
}
.btn-book-nav:hover {
    background: #e0b030 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, rgba(15, 14, 26, 0.8), rgba(15, 14, 26, 0.6)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600') center/cover no-repeat;
    padding: 120px 0 100px;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.92;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: #f5c842;
    color: #0f0e1a;
}
.btn-primary:hover {
    background: #e0b030;
    transform: scale(1.04);
}

.btn-secondary {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: #0f0e1a;
}

.btn-outline {
    border-color: #f5c842;
    color: #f5c842;
    background: transparent;
}
.btn-outline:hover {
    background: #f5c842;
    color: #0f0e1a;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 30px 0 8px;
    color: #0f0e1a;
}
.section-sub {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== CARDS / GRIDS ===== */
.hotel-grid, .vlog-grid, .gallery-grid, .testimonial-grid, .features-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 25px 0;
}

.hotel-card, .vlog-card, .gallery-item, .testimonial-item, .feature-item, .team-member {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    padding: 20px;
    text-align: center;
}

.hotel-card:hover, .vlog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.hotel-card img, .vlog-card img, .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.hotel-card h3, .vlog-card h3 {
    margin: 14px 0 4px;
    color: #0f0e1a;
    font-size: 1.2rem;
}
.hotel-card .location {
    color: #777;
    font-size: 0.9rem;
}
.hotel-card .rating {
    color: #f5c842;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 6px 0;
}
.hotel-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f0e1a;
}
.hotel-card .amenities {
    font-size: 0.85rem;
    color: #555;
    margin: 8px 0;
}

.btn-detail {
    display: inline-block;
    padding: 10px 28px;
    background: #0f0e1a;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}
.btn-detail:hover {
    background: #f5c842;
    color: #0f0e1a;
}

.vlog-category {
    display: inline-block;
    background: #f5c842;
    color: #0f0e1a;
    padding: 3px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 6px 0 4px;
}

/* ===== FEATURES ===== */
.features {
    background: #fff;
    padding: 50px 0;
}
.feature-item {
    box-shadow: none;
    padding: 30px 18px;
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #f0f1f5;
    padding: 50px 0;
}
.testimonial-item {
    text-align: left;
    padding: 28px;
}
.testimonial-item p {
    font-style: italic;
    color: #222;
}
.testimonial-item h4 {
    margin-top: 14px;
    color: #0f0e1a;
}

/* ===== AD CONTAINER ===== */
.ad-container {
    padding: 20px 0;
    background: #e8e9ed;
}
.ad-box {
    background: #fff;
    border: 2px dashed #bbb;
    padding: 28px;
    text-align: center;
    border-radius: 12px;
    color: #888;
    font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
    background: #0f0e1a;
    color: #bbb;
    padding: 50px 0 0;
    margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: #f5c842;
    margin-bottom: 16px;
    font-size: 1.1rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #bbb;
    transition: 0.3s;
}
.footer-col ul li a:hover {
    color: #f5c842;
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}
.social-links a {
    background: #222;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: 0.3s;
}
.social-links a:hover {
    background: #f5c842;
    color: #0f0e1a;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ===== FORMS ===== */
.contact-form, .booking-form {
    max-width: 780px;
    margin: 20px auto;
    background: #fff;
    padding: 40px 45px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #f5c842;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
}
.form-group textarea {
    height: 130px;
    resize: vertical;
}

.btn-submit {
    background: #f5c842;
    color: #0f0e1a;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #e0b030;
    transform: scale(1.02);
}

/* ===== HOTEL DETAIL PAGE ===== */
.detail-hero img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 16px;
}
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 30px 0;
}
.detail-main {
    background: #fff;
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.detail-main h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.detail-main h3 {
    margin-top: 28px;
    font-size: 1.2rem;
}
.detail-main ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.detail-main ul li {
    background: #f0f1f5;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
}
.detail-main .amenity-tag {
    background: #0f0e1a;
    color: #fff;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
}
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-sidebar .booking-box {
    background: #f5c842;
    padding: 28px;
    border-radius: 16px;
    color: #0f0e1a;
    text-align: center;
}
.detail-sidebar .booking-box .btn-primary {
    background: #0f0e1a;
    color: #fff;
    border-color: #0f0e1a;
    display: block;
    margin-top: 12px;
}

/* ===== FAQ ===== */
.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.faq-question {
    padding: 16px 24px;
    background: #f8f9fc;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.faq-question:hover {
    background: #f0f1f5;
}
.faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: #444;
}
.faq-answer.active {
    display: block;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 25px 0;
}
.blog-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.blog-meta {
    color: #999;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #0f0e1a;
        padding: 20px 0;
        border-radius: 12px;
        margin-top: 10px;
    }
    .nav-menu.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .detail-main {
        padding: 20px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .contact-form, .booking-form {
        padding: 25px 20px;
    }
}