/* ==========================================================================
   ECHO DJ & Music Producer - Template Stylesheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-primary: #040406;
    --bg-secondary: #0a090e;
    --bg-tertiary: #121019;
    --accent-cyan: #00ffcc;
    --accent-cyan-rgb: 0, 255, 204;
    --accent-pink: #ff007f;
    --accent-pink-rgb: 255, 0, 127;
    --text-main: #f1eff6;
    --text-muted: #8e899b;
    --glass-bg: rgba(255, 255, 255, 0.01);
    --glass-border: rgba(255, 255, 255, 0.04);
    --glass-border-hover: rgba(255, 255, 255, 0.1);
    --border-dark: #1b1724;
    --font-headers: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --box-shadow-cyan: 0 0 15px rgba(0, 255, 204, 0.3);
    --box-shadow-pink: 0 0 15px rgba(255, 0, 127, 0.3);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin-top: 40px;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Glassmorphism Panel Utility */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-text {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-pink);
    margin-bottom: 12px;
}

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

.divider-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    margin-bottom: 20px;
}

.divider-line.left-align {
    margin: 0 0 20px 0;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

/* Buttons System */
.btn {
    padding: 14px 32px;
    font-family: var(--font-headers);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: var(--box-shadow-cyan);
}

.btn-primary:hover {
    background: white;
    color: var(--bg-primary);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header Navigation Styling & Brand Banner
   ========================================================================== */
.novrid-brand-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #040406;
    border-bottom: 1px solid rgba(var(--accent-cyan-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    z-index: 2000;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.novrid-brand-banner a {
    color: var(--accent-cyan);
    text-decoration: underline;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.3);
}

.novrid-brand-banner a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.3);
}

.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 4, 6, 0.85);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo-text {
    font-family: var(--font-headers);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-headers);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link.active {
    color: var(--accent-cyan);
}

.nav-btn-booking {
    background: rgba(var(--accent-pink-rgb), 0.1);
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    padding: 6px 16px;
    border-radius: 4px;
}

.nav-btn-booking:hover {
    background: var(--accent-pink);
    color: white;
    box-shadow: var(--box-shadow-pink);
}

.header-socials {
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.header-socials a:hover {
    color: var(--accent-cyan);
}

.mobile-toggle {
    display: none;
    color: var(--text-main);
    font-size: 1.5rem;
}

/* ==========================================================================
   Hero Section & Interactive Music Widget Styling
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--accent-pink-rgb), 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-label {
    font-family: var(--font-headers);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-headers);
    font-size: 4.8rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

/* Interactive Sound wave widget container */
.audio-player-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    max-width: 600px;
    margin: 0 auto 50px auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-play-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--box-shadow-cyan);
}

.btn-play-toggle:hover {
    transform: scale(1.05);
    background-color: white;
}

.track-info {
    text-align: left;
}

.track-title {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
}

.track-artist {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Simulated Waveform */
.waveform-visualizer {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
    flex-grow: 1;
    justify-content: center;
}

.waveform-visualizer .bar {
    width: 3px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: height 0.3s ease;
}

/* Specific heights representing a silent waveform */
.waveform-visualizer .bar:nth-child(even) { height: 12px; }
.waveform-visualizer .bar:nth-child(3n) { height: 18px; }
.waveform-visualizer .bar:nth-child(4n) { height: 24px; }

/* Active playing visualizer heights keyframes */
.waveform-visualizer.playing .bar {
    background-color: var(--accent-cyan);
    animation: bounceVisualizer 1.2s ease-in-out infinite alternate;
}

.waveform-visualizer.playing .bar:nth-child(1)  { animation-delay: 0.1s; }
.waveform-visualizer.playing .bar:nth-child(2)  { animation-delay: 0.4s; }
.waveform-visualizer.playing .bar:nth-child(3)  { animation-delay: 0.2s; }
.waveform-visualizer.playing .bar:nth-child(4)  { animation-delay: 0.6s; }
.waveform-visualizer.playing .bar:nth-child(5)  { animation-delay: 0.3s; }
.waveform-visualizer.playing .bar:nth-child(6)  { animation-delay: 0.5s; }
.waveform-visualizer.playing .bar:nth-child(7)  { animation-delay: 0.2s; }
.waveform-visualizer.playing .bar:nth-child(8)  { animation-delay: 0.7s; }
.waveform-visualizer.playing .bar:nth-child(9)  { animation-delay: 0.1s; }
.waveform-visualizer.playing .bar:nth-child(10) { animation-delay: 0.4s; }
.waveform-visualizer.playing .bar:nth-child(11) { animation-delay: 0.3s; }
.waveform-visualizer.playing .bar:nth-child(12) { animation-delay: 0.5s; }
.waveform-visualizer.playing .bar:nth-child(13) { animation-delay: 0.2s; }
.waveform-visualizer.playing .bar:nth-child(14) { animation-delay: 0.6s; }
.waveform-visualizer.playing .bar:nth-child(15) { animation-delay: 0.1s; }

.player-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

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

/* ==========================================================================
   Music & Releases Section Styling
   ========================================================================== */
.music-section {
    background-color: var(--bg-secondary);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.release-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.release-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--accent-pink-rgb), 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.cover-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.cover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.release-card:hover .cover-wrapper img {
    transform: scale(1.04);
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 6, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.release-card:hover .cover-overlay {
    opacity: 1;
}

.btn-stream {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--box-shadow-cyan);
}

.btn-stream:hover {
    background-color: white;
    box-shadow: 0 0 15px white;
}

.release-info {
    display: flex;
    flex-direction: column;
}

.release-date {
    font-size: 0.8rem;
    color: var(--accent-pink);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.release-card h3 {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.release-genres {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.release-links {
    display: flex;
    gap: 16px;
    font-size: 1.25rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-dark);
    padding-top: 16px;
}

.release-links a:hover {
    color: var(--accent-cyan);
}

/* ==========================================================================
   Tour Dates / Shows Section Styling
   ========================================================================== */
.tour-table-wrapper {
    overflow-x: auto;
    padding: 20px;
}

.tour-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 700px;
}

.tour-table th, .tour-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.tour-table th {
    font-family: var(--font-headers);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.tour-date {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent-cyan);
}

.tour-city {
    font-weight: 600;
    font-size: 0.98rem;
}

.tour-venue {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Status pills */
.status-pill {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.status-available {
    background: rgba(0, 255, 102, 0.1);
    color: #00ff66;
    border: 1px solid #00ff66;
}

.status-selling {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
    border: 1px solid #ffaa00;
}

.status-soldout {
    background: rgba(255, 0, 127, 0.1);
    color: var(--accent-pink);
    border: 1px solid var(--accent-pink);
}

.btn-tour-ticket {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-tour-ticket:not(:disabled):hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
    box-shadow: var(--box-shadow-cyan);
}

.btn-tour-ticket.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ==========================================================================
   Bio / About Section Styling
   ========================================================================== */
.bio-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.bio-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.bio-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.bio-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.bio-frame-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--accent-pink);
    z-index: 1;
    border-radius: 12px;
    opacity: 0.3;
    box-shadow: var(--box-shadow-pink);
}

.bio-content {
    display: flex;
    flex-direction: column;
}

.bio-title {
    font-family: var(--font-headers);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 10px 0 20px 0;
}

.bio-lead {
    font-family: var(--font-headers);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    line-height: 1.4;
}

.bio-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* EPK Download Card */
.presskit-box {
    margin-top: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-color: var(--border-dark);
}

.presskit-info h4 {
    font-family: var(--font-headers);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.presskit-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.btn-download:hover {
    background-color: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
    box-shadow: var(--box-shadow-cyan);
}

/* ==========================================================================
   Booking Request Form Section
   ========================================================================== */
.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-color: var(--border-dark);
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.15);
}

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

.btn-submit {
    align-self: flex-start;
    margin-top: 10px;
}

/* Success Form screen */
.booking-success-box {
    text-align: center;
    padding: 30px 0;
    animation: fadeIn 0.4s ease forwards;
}

.neon-success-icon {
    font-size: 3.5rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.4);
    animation: pulseIcon 1.5s infinite alternate;
}

.booking-success-box h3 {
    font-family: var(--font-headers);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.booking-success-box p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px auto;
}

/* ==========================================================================
   Footer Section Styling
   ========================================================================== */
.main-footer {
    background-color: #030305;
    border-top: 1px solid var(--border-dark);
    padding: 80px 0 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-title {
    font-family: var(--font-headers);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-family: var(--font-headers);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.studio-link {
    color: var(--accent-cyan);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a:hover {
    color: var(--accent-cyan);
}

/* ==========================================================================
   Animations Keyframes
   ========================================================================== */
@keyframes bounceVisualizer {
    0% {
        height: 6px;
    }
    100% {
        height: 28px;
    }
}

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

@keyframes pulseIcon {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
        text-shadow: 0 0 25px rgba(var(--accent-cyan-rgb), 0.7);
    }
}

/* ==========================================================================
   Responsive Styling (Breakpoints)
   ========================================================================== */
@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bio-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-label {
        letter-spacing: 3px;
    }

    .booking-form-wrapper {
        padding: 30px 20px;
    }

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

    .presskit-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    /* Mobile Menu Toggle */
    .mobile-toggle {
        display: block;
        z-index: 1010;
    }

    .nav-menu {
        position: fixed;
        top: 40px;
        right: -100%;
        width: 260px;
        height: calc(100vh - 40px);
        background: var(--bg-secondary);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 40px;
        gap: 24px;
        transition: right 0.4s ease;
        z-index: 1005;
    }

    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-btn-booking {
        width: 100%;
        text-align: center;
    }

    .header-socials {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .audio-player-widget {
        flex-direction: column;
        gap: 16px;
    }

    .waveform-visualizer {
        width: 100%;
    }
}
