/* =====================================================
   AMZARAA ELITE DESIGN SYSTEM – PRO MOBILE VERSION
===================================================== */

:root {
    --primary: #5A0F1C;
    --gold: #D4AF37;
    --dark: #111;
    --light: #f9f9f9;
    --white: #ffffff;

    --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-strong: 0 25px 50px rgba(0,0,0,0.15);

    --radius: 14px;
    --transition: 0.3s ease;
}

/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: var(--white);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 17px;
    color: #666;
}

/* ================= LINKS & BUTTONS ================= */

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

button {
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* ================= TOP BAR ================= */

.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

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

/* ================= HEADER ================= */

header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 18px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
}

.book-btn {
    background: var(--gold);
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: bold;
    transition: var(--transition);
}

.book-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(90,15,28,0.75), rgba(0,0,0,0.7)),
                url('images/banquet2.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content {
    max-width: 850px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Buttons */

.primary-btn,
.secondary-btn,
.package-btn,
.room-btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
    margin: 8px;
}

.primary-btn {
    background: var(--gold);
    color: #000;
}

.primary-btn:hover {
    background: #fff;
    color: var(--primary);
}

.secondary-btn {
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: var(--primary);
}

/* ================= GRID SYSTEM ================= */

.banquet-grid,
.rooms-grid,
.packages-grid,
.gallery-grid,
.why-grid,
.testimonial-grid,
.counter-grid,
.footer-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ================= CARDS ================= */

.banquet-card,
.room-card,
.package-card,
.why-card,
.gallery-item,
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.banquet-card:hover,
.room-card:hover,
.package-card:hover,
.why-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.banquet-card img,
.room-card img,
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.room-info,
.package-card,
.why-card,
.testimonial-card {
    padding: 30px;
    text-align: center;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: var(--gold);
    margin: 15px 0;
}

/* ================= BOOKING MODAL ================= */

.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.booking-modal.active {
    display: flex;
}

.booking-content {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    width: 420px;
    max-width: 90%;
}

.booking-content input,
.booking-content select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* ================= FOOTER ================= */

footer {
    background: var(--primary);
    color: #fff;
    padding: 70px 0 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

/* ================= FLOATING WHATSAPP ================= */

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 999;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    section {
        padding: 70px 0;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }

    .book-btn {
        display: none;
    }

    .hero {
        height: auto;
        padding: 120px 20px 80px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .primary-btn,
    .secondary-btn,
    .package-btn,
    .room-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .banquet-card img,
    .room-card img,
    .gallery-item img {
        height: 220px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

}