/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-primary: #09090b;
    --bg-secondary: #131316;
    --bg-glass: rgba(15, 15, 18, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(212, 175, 55, 0.3);
    
    --color-gold: #d4af37;
    --color-gold-rgb: 212, 175, 55;
    --color-gold-gradient: linear-gradient(135deg, #f3e5ab, #d4af37, #aa7c11);
    
    --color-red: #ff3b30;
    --color-green: #34c759;
    --color-whatsapp: #25d366;
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --font-title: 'Syne', 'Cairo', sans-serif;
    --font-body: 'Space Grotesk', 'Cairo', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --glow-gold-strong: 0 0 35px rgba(212, 175, 55, 0.6);
}

/* RTL Support for Arabic */
[dir="rtl"] {
    --font-title: 'Cairo', 'Syne', sans-serif;
    --font-body: 'Cairo', 'Space Grotesk', sans-serif;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Background Canvas */
#ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* Utilities */
.text-center { text-align: center; }
.divider {
    height: 3px;
    width: 60px;
    background: var(--color-gold-gradient);
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}
.divider.center {
    margin: 1rem auto 2.5rem auto;
}
.glass-panel {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    transition: var(--transition-smooth);
}
.glass-panel:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-gold-gradient);
    color: #000;
    border: none;
    box-shadow: var(--glow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold-strong);
    opacity: 0.95;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--color-gold);
}
.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #ffffff;
    border: none;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.btn-spotify {
    background: #1db954;
    color: #ffffff;
    border: none;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.3);
}
.btn-spotify:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(29, 185, 84, 0.5);
    opacity: 0.95;
}

.player-spotify-link {
    margin-top: 25px;
    width: 100%;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   FLOATING LANGUAGE WIDGET
   ========================================================================== */
.lang-selector {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1000;
    background: rgba(15, 15, 18, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 4px;
    display: flex;
    gap: 2px;
    backdrop-filter: blur(8px);
}
[dir="rtl"] .lang-selector {
    right: auto;
    left: 25px;
}
.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.lang-btn.active {
    background: var(--color-gold-gradient);
    color: #000;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}
.header.scrolled {
    padding: 10px 0;
    background: rgba(9, 9, 11, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: var(--transition-smooth);
}
.nav-logo:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: var(--transition-smooth);
}
[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.highlight {
    border: 1px solid var(--color-gold);
    padding: 8px 16px;
    border-radius: 20px;
}
.nav-link.highlight::after {
    display: none;
}
.nav-link.highlight:hover {
    background: var(--color-gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: var(--glow-gold);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 850;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
    opacity: 0;
}
.mobile-menu.open {
    top: 0;
    opacity: 1;
}
.mobile-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-title);
    font-weight: 700;
    transition: var(--transition-smooth);
}
.mobile-link:hover, .mobile-link.active {
    color: var(--color-gold);
    transform: scale(1.1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9, 9, 11, 0.4) 0%, rgba(9, 9, 11, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-logo-container {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.8s;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.1s;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
.scroll-down a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.scroll-down a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   BIOGRAPHY SECTION
   ========================================================================== */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}
.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8), 0 0 30px rgba(212,175,55,0.15);
    pointer-events: none;
}

.bio-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.quick-stats {
    display: flex;
    gap: 30px;
    margin-top: 2.5rem;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}
.stat-card:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-5px);
}

.stat-val {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   MUSIC PLAYER SECTION
   ========================================================================== */
.music-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.player-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.player-header {
    display: flex;
    gap: 25px;
    align-items: center;
}

.disc-animation-container {
    position: relative;
    width: 90px;
    height: 90px;
}

.vinyl-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #2d2d30 0%, #18181b 30%, #09090b 60%, #18181b 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotateDisc 10s linear infinite;
    animation-play-state: paused;
    border: 1px solid #27272a;
}
.vinyl-disc.playing {
    animation-play-state: running;
}

.vinyl-center {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
    background-color: #fff;
    object-fit: cover;
}

.track-details {
    flex: 1;
}

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

.track-artist {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.track-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 59, 48, 0.15);
    color: var(--color-red);
}

.pulse-red {
    animation: pulseRed 2s infinite;
}

/* Audio visualizer styling */
.visualizer-container {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin: 25px 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.02);
}

#audio-visualizer {
    width: 100%;
    height: 100%;
    display: block;
}

/* Audio Controls */
.time-display {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.progress-bar-container {
    flex: 1;
    height: 6px;
    background: #27272a;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-gold-gradient);
    border-radius: 3px;
    position: relative;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.control-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.control-btn:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.02);
}

.control-btn.play-btn {
    font-size: 1.4rem;
    width: 55px;
    height: 55px;
    background: var(--color-gold-gradient);
    color: #000;
    box-shadow: var(--glow-gold);
}
.control-btn.play-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold-strong);
}

/* Featured videos */
.video-previews {
    display: flex;
    flex-direction: column;
}

.grid-section-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.video-card {
    padding: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
}
.video-card:hover .video-thumb {
    transform: scale(1.05);
}
.video-card:hover .play-overlay {
    opacity: 1;
}

.video-placeholder {
    width: 140px;
    height: 90px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: #18181b;
}

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.video-info h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.platform {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.icon-red { color: var(--color-red); }
.icon-white { color: #fff; }

/* ==========================================================================
   BOOKING & CONTACT SECTION
   ========================================================================== */
.booking-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -10px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-top: 3.5rem;
}

.booking-info-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-gold {
    color: var(--color-gold);
}

.contact-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item .value {
    font-weight: 600;
    font-size: 1.05rem;
}

.whatsapp-card {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-top: auto;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.pulse-green-dot {
    width: 8px;
    height: 8px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
}

/* Booking Form */
.booking-form-card {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 12px 18px;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

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

.form-group textarea {
    resize: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-area {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
    padding: 60px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}
.footer-socials .social-link:hover {
    color: #000;
    background: var(--color-gold-gradient);
    border-color: transparent;
    box-shadow: var(--glow-gold);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes rotateDisc {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid, .music-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .lang-selector {
        top: 85px;
        right: 15px;
    }
    [dir="rtl"] .lang-selector {
        right: auto;
        left: 15px;
    }
    .navbar {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .quick-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    .stat-card {
        flex: 1 1 45%;
        min-width: 110px;
        padding: 15px 10px;
    }
    .stat-val {
        font-size: 1.4rem;
    }
    .stat-lbl {
        font-size: 0.7rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .about-section, .music-section, .booking-section {
        padding: 60px 15px;
    }
    .player-card, .booking-info-card, .booking-form-card {
        padding: 25px 15px;
    }
}

/* ==========================================================================
   LOGO BACKGROUND REMOVAL (TRANSPARENCY TRICK)
   ========================================================================== */
img[src*="logo.png"] {
    mix-blend-mode: screen;
    filter: contrast(1.5) brightness(0.9);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
}
