/* ============================================
   Shadi Hall Booking System
   Elegant Wedding Theme - Maroon & Bronze
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --maroon: #7b1e2c;
    --maroon-dark: #4a0e1a;
    --maroon-light: #9d3848;
    --bronze: #b8863b;
    --bronze-light: #d4a860;
    --gold: #c9a961;
    --cream: #faf5ed;
    --cream-dark: #f0e6d2;
    --beige: #e8dcc4;
    --brown: #6b4423;
    --dark: #2c1810;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(75, 14, 26, 0.08);
    --shadow-md: 0 6px 20px rgba(75, 14, 26, 0.12);
    --shadow-lg: 0 15px 40px rgba(75, 14, 26, 0.15);
    --shadow-xl: 0 25px 60px rgba(75, 14, 26, 0.2);
    
    --font-display: 'Playfair Display', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============ Decorative Background ============ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(184, 134, 59, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 30, 44, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ============ Typography ============ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--maroon-dark);
    line-height: 1.2;
}

.script-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

/* ============ Navbar ============ */
.navbar {
    background: rgba(250, 245, 237, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 59, 0.2);
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--maroon-dark);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo::before {
    content: '❦';
    color: var(--bronze);
    font-size: 24px;
}

.navbar .logo span {
    color: var(--bronze);
    font-style: italic;
    font-family: var(--font-serif);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.navbar ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar ul li a.btn-nav {
    background: var(--maroon);
    color: var(--white);
}

.navbar ul li a.btn-nav:hover {
    background: var(--maroon-dark);
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #4a0e1a 0%, #7b1e2c 50%, #6b4423 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920') center/cover;
    opacity: 0.25;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(74, 14, 26, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 24px;
}

.hero-ornament .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 76px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ Buttons ============ */
.btn {
    display: inline-block;
    padding: 14px 38px;
    background: var(--maroon);
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--maroon);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--maroon-dark);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--maroon-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}

.btn-outline::before {
    background: var(--gold);
}

.btn-outline:hover {
    color: var(--maroon-dark);
    border-color: var(--gold);
}

.btn-gold {
    background: var(--bronze);
    border-color: var(--bronze);
}

.btn-gold::before {
    background: var(--brown);
}

.btn-gold:hover {
    border-color: var(--brown);
}

.btn-sm {
    padding: 9px 22px;
    font-size: 11px;
}

.btn-danger {
    background: #8b2635;
    border-color: #8b2635;
}
.btn-danger::before { background: #5c1a23; }

.btn-success {
    background: #3d6b4a;
    border-color: #3d6b4a;
}
.btn-success::before { background: #2a4a33; }

/* ============ Container ============ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============ Section Headings ============ */
.section {
    padding: 80px 0;
}

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

.section-label {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--bronze);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.section-header h2 {
    font-size: 52px;
    color: var(--maroon-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--bronze);
    font-weight: 500;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--bronze);
    margin-bottom: 15px;
}

.section-divider .line {
    width: 50px;
    height: 1px;
    background: var(--bronze);
}

.section-divider::before,
.section-divider::after {
    font-size: 14px;
}

/* ============ Feature Cards ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon), var(--bronze));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--maroon-dark);
}

.feature-card p {
    color: #666;
    font-weight: 300;
    font-size: 15px;
}

/* ============ Hall Cards (Main Listing) ============ */
.halls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.hall-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(184, 134, 59, 0.15);
}

.hall-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.hall-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.hall-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hall-card:hover .hall-card-image img {
    transform: scale(1.1);
}

.hall-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.hall-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bronze);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.hall-card-body {
    padding: 30px;
}

.hall-card-body .location {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--bronze);
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hall-card-body h3 {
    font-size: 28px;
    color: var(--maroon-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hall-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
}

.hall-card-meta span strong {
    color: var(--maroon);
    display: block;
    font-size: 16px;
    margin-top: 2px;
    font-family: var(--font-display);
}

.hall-card-price {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--bronze);
    font-weight: 700;
    margin-bottom: 20px;
}

.hall-card-price small {
    font-size: 13px;
    color: #999;
    font-weight: 400;
    font-family: var(--font-body);
}

.hall-card .btn {
    width: 100%;
    text-align: center;
}

/* ============ Forms ============ */
.form-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

.form-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(123, 30, 44, 0.03) 0%, rgba(184, 134, 59, 0.03) 100%);
    z-index: -1;
}

.form-container {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 6px;
    box-shadow: var(--shadow-xl);
    max-width: 480px;
    width: 100%;
    border: 1px solid var(--cream-dark);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon), var(--bronze), var(--maroon));
    border-radius: 6px 6px 0 0;
}

.form-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--maroon-dark);
}

.form-ornament {
    text-align: center;
    color: var(--bronze);
    margin-bottom: 30px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
}

.form-ornament::before,
.form-ornament::after {
    content: '◆';
    margin: 0 10px;
    font-size: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--maroon-dark);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-body);
    background: var(--cream);
    transition: all 0.3s ease;
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 30, 44, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============ Alerts ============ */
.alert {
    padding: 16px 22px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert::before {
    font-size: 20px;
}

.alert-success {
    background: #ecf4ed;
    color: #2a4a33;
    border-color: #3d6b4a;
}
.alert-success::before { content: '✓'; }

.alert-danger {
    background: #f9ecee;
    color: #5c1a23;
    border-color: #8b2635;
}
.alert-danger::before { content: '✕'; }

.alert-info {
    background: var(--cream-dark);
    color: var(--brown);
    border-color: var(--bronze);
}
.alert-info::before { content: 'ℹ'; }

/* ============ Dashboard Layout ============ */
.dashboard {
    display: flex;
    min-height: 100vh;
    background: var(--cream);
}

.sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    color: var(--white);
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

.sidebar .brand {
    text-align: center;
    padding: 0 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 25px;
}

.sidebar .brand h3 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.sidebar .brand p {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.sidebar ul {
    list-style: none;
    padding: 0 15px;
}

.sidebar ul li {
    margin-bottom: 3px;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.sidebar ul li a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding-left: 25px;
}

.sidebar ul li a.active {
    background: var(--gold);
    color: var(--maroon-dark);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.main-content {
    margin-left: 260px;
    padding: 40px 50px;
    flex: 1;
    width: calc(100% - 260px);
}

.page-header {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--bronze);
}

.page-header h1 {
    font-size: 28px;
    color: var(--maroon-dark);
    font-weight: 700;
}

/* ============ Welcome Hero ============ */
.welcome-hero {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    color: var(--white);
    padding: 40px 35px;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.welcome-hero::before {
    content: '❦';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 150px;
    color: rgba(201, 169, 97, 0.15);
    font-family: var(--font-display);
}

.welcome-hero h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.welcome-hero h2 em {
    font-family: var(--font-serif);
    color: var(--gold);
}

.welcome-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* ============ Stats ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--maroon);
    transition: transform 0.3s ease;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card h4 {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    font-weight: 500;
}

.stat-card .num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--maroon-dark);
    margin-top: 8px;
}

.stat-card.brown { border-top-color: var(--bronze); }
.stat-card.brown .num { color: var(--bronze); }

/* ============ Tables ============ */
.table-wrapper {
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    overflow-x: auto;
    border: 1px solid var(--cream-dark);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    color: var(--white);
}

table th {
    padding: 16px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

table td {
    padding: 15px 18px;
    text-align: left;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 14px;
}

table tbody tr:last-child td {
    border-bottom: none;
}

table tbody tr {
    transition: background 0.2s ease;
}

table tbody tr:hover {
    background: var(--cream);
}

.badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-pending { background: #fdf0d5; color: #8b6a00; }
.badge-confirmed { background: #d7ead8; color: #2a4a33; }
.badge-cancelled { background: #f5d7da; color: #5c1a23; }
.badge-available { background: #d7ead8; color: #2a4a33; }
.badge-booked { background: #f5d7da; color: #5c1a23; }

/* ============ Hall Details Page ============ */
.hall-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hall-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hall-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.hall-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    color: var(--white);
}

.hall-hero-content .location {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hall-hero-content h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 15px;
    max-width: 800px;
}

.hall-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 60px auto;
    padding: 0 30px;
    max-width: 1280px;
}

.hall-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
}

.hall-info-box h2 {
    font-size: 36px;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}

.hall-info-box h3 {
    font-size: 24px;
    color: var(--maroon-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bronze);
    display: inline-block;
}

.booking-card {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    color: var(--white);
    padding: 35px;
    border-radius: 6px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-xl);
    height: fit-content;
}

.booking-card::before {
    content: '❦';
    display: block;
    text-align: center;
    color: var(--gold);
    font-size: 30px;
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.booking-card .price-tag {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.booking-card .price-tag .label {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.booking-card .price-tag .amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.booking-card .price-tag .amount small {
    font-size: 14px;
    opacity: 0.8;
    font-family: var(--font-body);
    font-weight: 400;
}

.booking-card .details-list {
    list-style: none;
    margin-bottom: 25px;
}

.booking-card .details-list li {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.booking-card .details-list li:last-child {
    border-bottom: none;
}

.booking-card .details-list span {
    color: var(--gold);
}

.booking-card .btn {
    width: 100%;
    background: var(--gold);
    color: var(--maroon-dark);
    border-color: var(--gold);
}

.booking-card .btn::before {
    background: var(--white);
}

/* ============ Gallery ============ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.video-wrapper {
    margin-top: 20px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-wrapper video {
    width: 100%;
    max-height: 450px;
    display: block;
}

/* ============ Dishes ============ */
.dishes-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dish-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px;
    background: var(--cream);
    border-radius: 4px;
    border-left: 3px solid var(--bronze);
    transition: all 0.3s ease;
}

.dish-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.dish-item-info h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--maroon-dark);
    margin-bottom: 4px;
}

.dish-item-info .category {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--bronze);
    font-size: 13px;
    margin-bottom: 4px;
}

.dish-item-info p {
    font-size: 13px;
    color: #777;
}

.dish-price {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--maroon);
    font-weight: 700;
    white-space: nowrap;
    margin-left: 15px;
}

/* ============ Date Grid ============ */
.date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.date-cell {
    padding: 15px 10px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: var(--font-display);
    position: relative;
}

.date-cell.available {
    background: #ecf4ed;
    color: #2a4a33;
    border-color: #3d6b4a;
}

.date-cell.available:hover {
    background: #3d6b4a;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.date-cell.booked {
    background: #f5d7da;
    color: #5c1a23;
    border-color: #8b2635;
    text-decoration: line-through;
    opacity: 0.7;
    cursor: not-allowed;
}

.date-cell small {
    font-family: var(--font-body);
    font-size: 11px;
    display: block;
    font-weight: 400;
    margin-top: 2px;
}

/* ============ Footer ============ */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--maroon-dark) 100%);
    color: rgba(255,255,255,0.9);
    padding: 60px 30px 30px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-brand p {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.8;
    max-width: 400px;
}

.footer h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

/* ============ Animations ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
    .hero h1 { font-size: 48px; }
    .section-header h2 { font-size: 36px; }
    .hall-detail-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; padding: 15px 20px; gap: 12px; }
    .navbar ul { flex-wrap: wrap; justify-content: center; gap: 5px; }
    .navbar ul li a { padding: 8px 14px; font-size: 12px; }
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-desc { font-size: 15px; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 28px; }
    .sidebar { width: 100%; position: relative; height: auto; }
    .main-content { margin-left: 0; width: 100%; padding: 25px 20px; }
    .dashboard { flex-direction: column; }
    .hall-hero-content h1 { font-size: 36px; }
    .hall-hero-overlay { padding: 30px 20px; }
    .form-container { padding: 35px 25px; }
    .booking-card { position: static; }
}

/* ============ Dashboard Form Container ============ */
.dashboard-card {
    background: var(--white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    margin-bottom: 25px;
}

.dashboard-card h2 {
    font-size: 26px;
    color: var(--maroon-dark);
    margin-bottom: 8px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bronze);
    display: inline-block;
}

.dashboard-card h2.full {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 25px;
}

/* Quick Action Cards */
.action-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.action-card.maroon {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    color: var(--white);
}

.action-card.bronze {
    background: linear-gradient(135deg, var(--brown), var(--bronze));
    color: var(--white);
}

.action-card-inner {
    padding: 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.action-card-inner h3 {
    color: inherit;
    font-size: 24px;
    margin-bottom: 8px;
}

.action-card.maroon h3,
.action-card.bronze h3 {
    color: var(--white);
}

.action-card-inner p {
    opacity: 0.85;
    font-size: 14px;
}

/* Mini cards in forms */
.mini-info-card {
    background: var(--cream);
    padding: 18px;
    border-radius: 4px;
    border-left: 3px solid var(--bronze);
    margin-bottom: 15px;
}

.mini-info-card strong {
    color: var(--maroon);
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Filter buttons */
.filter-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 7px 18px;
    border: 1.5px solid var(--cream-dark);
    background: var(--white);
    color: var(--dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

/* Split layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.split-layout.narrow {
    grid-template-columns: 2fr 1fr;
}

@media (max-width: 768px) {
    .split-layout, .split-layout.narrow {
        grid-template-columns: 1fr;
    }
}

/* ============ Search Bar ============ */
.search-bar {
    background: var(--white);
    padding: 25px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    margin: -50px auto 40px;
    max-width: 1100px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--cream-dark);
}

.search-bar form {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1fr;
    gap: 15px;
    align-items: end;
}

.search-bar .form-group {
    margin-bottom: 0;
}

.search-bar label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bronze);
    margin-bottom: 6px;
    font-weight: 600;
}

.search-bar input,
.search-bar select {
    padding: 11px 14px;
    font-size: 14px;
}

.search-bar button {
    padding: 12px 20px;
    height: 45px;
    width: 100%;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .search-bar form { grid-template-columns: 1fr; }
    .search-bar { margin: -30px 20px 30px; }
}

/* ============ Filter Sidebar ============ */
.listing-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .listing-layout { grid-template-columns: 1fr; }
}

.filter-sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 90px;
    border: 1px solid var(--cream-dark);
}

.filter-sidebar h3 {
    color: var(--maroon-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bronze);
    font-size: 18px;
}

.filter-section {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cream-dark);
}

.filter-section:last-child { 
    border-bottom: none; 
    margin-bottom: 0; 
}

.filter-section h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--maroon);
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--font-body);
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 7px 0;
    cursor: pointer;
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
}

.filter-option:hover { color: var(--maroon); }

.filter-option input {
    margin-right: 10px;
    accent-color: var(--maroon);
}

/* ============ Package Cards ============ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.package-card {
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 6px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    border-color: var(--bronze);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.selected {
    border-color: var(--maroon);
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.package-card h4 {
    font-size: 22px;
    color: var(--maroon-dark);
    margin-bottom: 10px;
}

.package-price {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--bronze);
    font-weight: 700;
    margin: 12px 0;
}

.package-price small {
    font-size: 13px;
    color: #999;
    font-weight: 400;
    font-family: var(--font-body);
}

.package-features {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.package-features li {
    padding: 6px 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li::before {
    content: '✓';
    color: #3d6b4a;
    font-weight: bold;
    font-size: 16px;
}

.package-features li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.package-features li.disabled::before {
    content: '✕';
    color: #ccc;
}

/* ============ Reviews ============ */
.review-card {
    background: var(--cream);
    border-left: 3px solid var(--bronze);
    padding: 18px 22px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-author {
    font-weight: 600;
    color: var(--maroon-dark);
    font-family: var(--font-display);
    font-size: 16px;
}

.review-date {
    font-size: 12px;
    color: #888;
    font-family: var(--font-serif);
    font-style: italic;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
    margin-top: 8px;
}

/* Rating input (for review form) */
.rating-input {
    display: flex;
    gap: 5px;
    direction: rtl;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 32px;
    color: #ddd;
    transition: color 0.2s;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: var(--bronze);
}

/* Hall rating display */
.hall-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--maroon-dark);
}

/* Map embed */
.map-container {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 15px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* Hall type badge */
.hall-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--cream-dark);
    color: var(--brown);
    margin-right: 8px;
}

/* No results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 30px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.no-results .icon {
    font-size: 60px;
    color: var(--bronze);
    margin-bottom: 15px;
}

/* ============ Utility Classes ============ */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
