/* ============================================
   DULANEY RECORDINGS - Professional Stylesheet
   Theme: Deep Blue, Gold Accents, Luxurious
   ============================================ */

:root {
    /* Primary Colors - Deep Blue & Gold */
    --primary-dark: #0a1628;
    --primary-blue: #0f2744;
    --accent-gold: #d4af37;
    --accent-gold-light: #e8c547;
    --accent-gold-dark: #b8972e;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --text-light: #b8c5d6;
    --text-dim: #8a9bb5;
    
    /* Glass Effects */
    --glass-bg: rgba(15, 39, 68, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-light: rgba(255, 255, 255, 0.05);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 6rem 0;
    --section-padding-mobile: 4rem 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Gradient */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(15, 39, 68, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--primary-dark) 0%, #061022 100%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   COOKIE CONSENT OVERLAY
   ============================================ */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.cookie-overlay.hidden {
    display: none;
}

.cookie-banner {
    background: linear-gradient(145deg, var(--primary-blue), var(--primary-dark));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 175, 55, 0.1);
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cookie-banner h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cookie-banner p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cookie-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.cookie-links a:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

.btn-accept {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border: none;
    border-radius: 12px;
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accept:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.logo-text-wrap {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.4rem;
}

.logo-text,
.logo-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION - Full Width Background
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 22, 40, 0.75) 0%,
        rgba(10, 22, 40, 0.4) 60%,
        rgba(10, 22, 40, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 700px;
    margin-right: auto;
    padding-left: 2rem;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.accent-text {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PLAYER SECTION
   ============================================ */
.player-section {
    padding: var(--section-padding);
}

.player-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.player-album-art {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.player-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.8) 100%);
}

.player-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.player-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.player-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.album-name {
    color: var(--accent-gold) !important;
    font-weight: 500;
}

/* Visualizer */
.visualizer {
    display: flex;
    justify-content: center;
    gap: 6px;
    height: 50px;
    margin-bottom: 1.5rem;
    align-items: flex-end;
}

.visualizer .bar {
    width: 6px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 3px;
    height: 15px;
    transition: height 0.1s ease;
}

.visualizer.playing .bar {
    animation: visualize 0.8s ease infinite;
}

.visualizer.playing .bar:nth-child(1) { animation-delay: 0s; }
.visualizer.playing .bar:nth-child(2) { animation-delay: 0.1s; }
.visualizer.playing .bar:nth-child(3) { animation-delay: 0.2s; }
.visualizer.playing .bar:nth-child(4) { animation-delay: 0.3s; }
.visualizer.playing .bar:nth-child(5) { animation-delay: 0.4s; }
.visualizer.playing .bar:nth-child(6) { animation-delay: 0.5s; }
.visualizer.playing .bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes visualize {
    0%, 100% { height: 15px; }
    50% { height: 50px; }
}

/* Progress Bar */
.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.progress-container span {
    font-size: 0.8rem;
    color: var(--text-dim);
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--glass-light);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Player Controls - Car Friendly (Large Touch Targets) */
.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--white);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.control-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.control-btn.secondary {
    width: 44px;
    height: 44px;
    opacity: 0.7;
}

.control-btn.secondary svg {
    width: 18px;
    height: 18px;
}

.control-btn.secondary:hover {
    opacity: 1;
}

.control-btn.secondary.active {
    color: var(--accent-gold);
    opacity: 1;
}

/* Stop Button */
.stop-btn {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
}

.stop-btn:hover {
    background: rgba(220, 53, 69, 0.4);
    border-color: #dc3545;
    color: #ff6b6b;
}

/* Play Button - Extra Large for Mobile */
.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border: none;
    color: var(--primary-dark);
}

.play-btn svg {
    width: 32px;
    height: 32px;
}

.play-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.hidden {
    display: none !important;
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.volume-icon {
    width: 24px;
    height: 24px;
    color: var(--text-dim);
}

.volume-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--glass-light);
    border-radius: 3px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* ============================================
   MUSIC COLLECTION SECTION
   ============================================ */
.music-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent, rgba(15, 39, 68, 0.3), transparent);
}

/* Album Tabs */
.album-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Album Cover Display */
.album-display {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.collection-album-cover {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.2);
    transition: var(--transition-normal);
}

.collection-album-cover:hover {
    transform: scale(1.03);
}

.album-tab {
    padding: 0.75rem 1.5rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.album-tab:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.album-tab.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 600;
}

/* Track List */
.track-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--glass-light);
    border: 1px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.track-item:hover {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    transform: translateX(8px);
}

.track-item.active {
    background: var(--glass-bg);
    border-color: var(--accent-gold);
    border-left: 4px solid var(--accent-gold);
}

.track-item.playing {
    background: rgba(212, 175, 55, 0.1);
}

.track-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
    min-width: 32px;
}

.track-meta {
    flex: 1;
}

.track-meta .t-title {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.track-meta .t-album {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.track-duration {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Coming Soon Tracks */
.track-item.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.track-item.coming-soon:hover {
    transform: none;
    background: var(--glass-light);
    border-color: transparent;
}

.coming-soon-message {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-light);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coming-soon-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.coming-soon-message p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.coming-soon-message .coming-soon-sub {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.values {
    display: flex;
    gap: 2rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.value-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    opacity: 0.3;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.2);
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--glass-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.placeholder-image span {
    color: var(--text-dim);
    font-size: 1.2rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent, rgba(15, 39, 68, 0.3));
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info */
.contact-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: linear-gradient(180deg, var(--primary-dark), #050d18);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.footer-logo-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.4rem;
}

.footer-brand .logo-text,
.footer-brand .logo-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-tagline {
    color: var(--white);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom p:last-child {
    color: var(--accent-gold);
    font-style: italic;
    opacity: 1;
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */
.legal-page {
    padding-top: 120px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.legal-content .last-updated {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-light);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-gold);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        padding-top: 8rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    /* Mobile Logo */
    .logo-text-wrap {
        display: none;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-normal);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    /* Player Adjustments */
    .player-card {
        padding: 1.5rem;
    }
    
    .play-btn {
        width: 90px;
        height: 90px;
    }
    
    .play-btn svg {
        width: 36px;
        height: 36px;
    }
    
    .control-btn {
        width: 60px;
        height: 60px;
    }
    
    .control-btn svg {
        width: 28px;
        height: 28px;
    }
    
    /* Album Tabs */
    .album-tabs {
        gap: 0.5rem;
    }
    
    .album-tab {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Track List */
    .track-item {
        padding: 1rem;
    }
    
    /* Values */
    .values {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .album-cover-hero {
        max-width: 250px;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.85rem;
    }
    
    .player-controls {
        gap: 1rem;
    }
    
    .control-btn.secondary {
        display: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-col:last-child {
        grid-column: span 1;
    }
    
    .cookie-banner {
        padding: 2rem 1.5rem;
    }
    
    .cookie-banner h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .cookie-overlay,
    .main-header,
    .player-section,
    .contact-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
