/* style.css */
/* Le Bao Binh Website - Premium Modern Design System */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0c;
    --bg-card: #111115;
    --bg-glass: rgba(10, 10, 12, 0.85);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(197, 168, 92, 0.3);
    
    --color-primary: #ffffff;
    --color-muted: #8e8e93;
    
    --accent-gold: #c5a85c;
    --accent-gold-rgb: 197, 168, 92;
    --accent-blue: #c5a85c; /* unified theme color */
    --accent-blue-rgb: 197, 168, 92;
    --accent-pink: #ff3b30;
    
    --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(197, 168, 92, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

input, select, textarea, button {
    font-family: inherit;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 90px; /* Space for persistent player */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: #000;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}

/* Header & Navigation */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.main-header.scrolled {
    background: rgba(8, 8, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 0;
}

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

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--color-muted);
    letter-spacing: 1px;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--accent-gold);
}

.nav-links a:hover, .nav-links li.active a {
    color: #fff;
}

.nav-links a:hover::after, .nav-links li.active a::after {
    width: 100%;
}

.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Home Hero Banner */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, rgba(8, 8, 10, 0.95) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 24px;
}

.slide-subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease backwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.slide-actions {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
    transform: scale(1.2);
}

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

/* Home Section Layouts */
/* Event List */
.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.schedule-row:hover {
    transform: translateX(10px);
    background: rgba(212, 175, 55, 0.03);
    border-color: var(--accent-gold);
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--border-glass);
    padding-right: 24px;
    min-width: 100px;
}

.date-day {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    font-family: var(--font-heading);
}

.date-month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-muted);
    margin-top: 4px;
}

.schedule-info {
    flex: 1;
    padding: 0 30px;
}

.schedule-venue {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.schedule-location {
    color: var(--color-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.schedule-action {
    display: flex;
    align-items: center;
}

/* Music Section */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.music-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.music-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.music-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(8, 8, 10, 0.9) 0%, rgba(8, 8, 10, 0.2) 60%, rgba(8, 8, 10, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.music-card:hover .music-card-img {
    transform: scale(1.08);
}

.music-card:hover .music-card-overlay {
    opacity: 1;
}

.music-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.music-card-type {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.music-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    cursor: pointer;
}

.music-card:hover .music-card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Audio Playlist layout */
.playlist-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.track-item:hover, .track-item.playing {
    background: rgba(255, 255, 255, 0.05);
}

.track-number {
    width: 40px;
    color: var(--color-muted);
    font-weight: 700;
    font-family: var(--font-heading);
}

.track-item.playing .track-number {
    color: var(--accent-blue);
}

.track-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 20px;
}

.track-details {
    flex: 1;
}

.track-title {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.track-album {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.track-duration {
    color: var(--color-muted);
    font-size: 0.9rem;
}

/* Video embedded layouts */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
}

.video-thumbnail-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.video-thumbnail-wrapper:hover .video-play-btn {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.video-thumbnail-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Shop Layout */
.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.shop-tab {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-muted);
}

.shop-tab.active, .shop-tab:hover {
    border-color: var(--accent-gold);
    color: #fff;
    background: rgba(212, 175, 55, 0.05);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #18191f;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.product-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
}

.product-actions .buy-now-btn {
    width: 100%;
    white-space: nowrap;
    justify-content: center;
}

/* KTV Page */
.ktv-hero {
    height: 60vh;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.ktv-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 8, 10, 0.75) 0%, rgba(8, 8, 10, 0.92) 100%);
}

.ktv-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

/* Inner page hero banner (music, shop, schedule, etc.) */
.inner-page-hero {
    height: 42vh;
    min-height: 280px;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; /* offset for fixed navbar */
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(8,8,10,0.50) 50%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
}

.inner-page-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(197, 168, 92, 0.02) 2px,
        rgba(197, 168, 92, 0.02) 4px
    );
    z-index: 2;
}

.inner-page-hero .container {
    position: relative;
    z-index: 3;
}

.inner-page-hero-content {
    position: relative;
    z-index: 3;
    padding-left: 16px;
    border-left: 4px solid var(--accent-gold);
}

.inner-page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--font-heading);
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    margin-bottom: 8px;
    line-height: 1.1;
}

.inner-page-hero .hero-sub {
    color: var(--accent-gold);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 768px) {
    .inner-page-hero {
        height: auto;
        min-height: 200px;
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .inner-page-hero h1 {
        font-size: 2rem;
    }
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    border-radius: 6px;
    overflow: hidden;
}

.room-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.room-info {
    padding: 24px;
}

.room-name {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: var(--color-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 12px;
}

.room-meta span strong {
    color: #fff;
}

.room-price {
    color: var(--accent-gold);
    font-weight: 700;
}

.booking-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 80px;
    align-items: flex-start;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

select.form-control option {
    background: var(--bg-secondary);
    color: #fff;
}

/* Booking Forms Grid (Commercial, Show) */
.booking-tabs-wrapper {
    max-width: 800px;
    margin: 40px auto;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.news-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.news-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.news-summary {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.news-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-link:hover {
    color: var(--accent-blue);
    transform: translateX(4px);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-card {
    padding: 40px;
    border-radius: 20px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-info-text h4 {
    font-size: 0.9rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-info-text p {
    font-size: 1.15rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-muted);
}

.social-icon:hover {
    color: #000;
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* Persistent Music Footer Player */
.audio-player-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;
    border-top: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.player-track-info {
    display: flex;
    align-items: center;
    width: 25%;
}

.player-cover {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.player-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-heading);
}

.player-details p {
    font-size: 0.8rem;
    color: var(--color-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    gap: 8px;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.play-trigger {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.play-trigger:hover {
    transform: scale(1.1);
    background: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.player-btn {
    background: transparent;
    border: none;
    color: var(--color-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.player-btn:hover {
    color: #fff;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.time-display {
    font-size: 0.75rem;
    color: var(--color-muted);
    min-width: 35px;
}

.progress-bar-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 2px;
    width: 0%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-blue);
    box-shadow: 0 0 8px var(--accent-blue);
    transition: transform 0.1s ease;
}

.progress-bar-container:hover .progress-fill::after {
    transform: translateY(-50%) scale(1);
}

.player-extra-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 25%;
    justify-content: flex-end;
}

.volume-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    background: #fff;
    width: 80%;
    border-radius: 2px;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    padding: 40px;
}

.modal-backdrop.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}

/* Shopping Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-glass);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border-glass);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-glass);
    background: rgba(0,0,0,0.2);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.cart-total-price {
    font-weight: 800;
    color: var(--accent-gold);
}

/* Footer Section */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 40px 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget ul {
    list-style: none;
}

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

.footer-widget ul a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Admin Styling */
.admin-sidebar {
    width: 260px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-glass);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 30px;
}

.admin-content {
    margin-left: 260px;
    padding: 40px;
}

.admin-card {
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th, .admin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-glass);
}

.admin-table th {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .playlist-wrapper, .booking-box, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-grid, .video-grid, .room-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* We will use JS side navigation for mobile */
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .slide-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .schedule-date {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
        padding-right: 0;
        padding-bottom: 12px;
        width: 100%;
        align-items: flex-start;
    }
    
    .schedule-info {
        padding: 0;
    }
    
    .audio-player-footer {
        padding: 0 16px;
        height: 100px;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
    
    .player-track-info {
        width: 100%;
        justify-content: center;
    }
    
    .player-controls {
        width: 100%;
    }
    
    .player-extra-controls {
        display: none; /* Hide volume controls on mobile */
    }
    
    body {
        padding-bottom: 110px;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}
