/* Root Variables */
:root {
    --primary-color: #0c1c2c;
    --secondary-color: #1a3a52;
    --accent-color: #d4af37;
    --text-dark: #0c1c2c;
    --text-light: #ffffff;
    --text-muted: #b8c5d1;
    --bg-dark: #0c1c2c;
    --bg-light: #f8f6f0;
    --bg-parchment: #fcfbf8;
    --bg-white: #ffffff;
    --border-color: #d4af37;
    --shadow-light: rgba(12, 28, 44, 0.1);
    --shadow-medium: rgba(12, 28, 44, 0.3);
    --shadow-heavy: rgba(0, 0, 0, 0.4);
    --gradient-overlay: linear-gradient(135deg, rgba(12, 28, 44, 0.9), rgba(26, 58, 82, 0.8));
    --parchment-texture: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="parchment" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23fcfbf8"/><circle cx="25" cy="25" r="0.5" fill="%23e8dcc0" opacity="0.15"/><circle cx="75" cy="75" r="0.3" fill="%23d4c5a0" opacity="0.1"/><circle cx="50" cy="10" r="0.4" fill="%23e0d3b7" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23parchment)"/></svg>');
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.7;
    font-weight: 400;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.4);
    letter-spacing: 1px;
    line-height: 1.6;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 400;
    text-align: center;
    position: relative;
}

.bio-section .section-title {
    color: #2c3e50;
    font-family: 'Merriweather', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-color);
}

/* Navigation */
.navbar {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
    background: transparent !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(12, 28, 44, 0.95) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-light) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

/* Desktop Navigation */
.navbar-nav-desktop {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-nav-desktop .nav-item {
    margin: 0 0.8rem;
}

.navbar-nav-desktop .nav-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color: var(--text-muted) !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    text-decoration: none;
}

.navbar-nav-desktop .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav-desktop .nav-link:hover {
    color: var(--text-light) !important;
    transform: translateY(-2px);
}

.navbar-nav-desktop .nav-link:hover::after {
    width: 100%;
}

/* Mobile Hamburger Button */
.navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar-toggler.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Menu */
.navbar-nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 28, 44, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.navbar-nav-mobile.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.mobile-nav-list .nav-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-nav-list .nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-list .nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-muted) !important;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-nav-list .nav-link:hover {
    color: var(--text-light) !important;
    background: rgba(212, 175, 55, 0.1);
    padding-left: 2.5rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-overlay),
                radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
                linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="mountains" cx="50%" cy="100%"><stop offset="0%" stop-color="%231a3a52"/><stop offset="100%" stop-color="%230c1c2c"/></radialGradient></defs><path d="M0,500 Q300,300 600,450 T1200,400 V800 H0 Z" fill="url(%23mountains)" opacity="0.6"/><path d="M0,600 Q400,400 800,550 T1200,500 V800 H0 Z" fill="url(%23mountains)" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.7;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1.5s ease-out;
    text-align: center;
}

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

/* Section Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Bio Section */
.bio-section {
    background: var(--bg-parchment);
    background-image: var(--parchment-texture);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.bio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.bio-image-container {
    text-align: center;
}

.bio-image-placeholder {
    width: 250px;
    height: 250px;
    background: var(--gradient-overlay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.bio-icon {
    width: 80px;
    height: 80px;
    color: var(--bg-white);
}

.about-image-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.bio-content {
    padding-left: 2rem;
}

.bio-title {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.bio-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: #2c3e50;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Music Section */
.music-section {
    padding: 4rem 0 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('../images/forest_road_bw.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.music-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px var(--shadow-heavy);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.music-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #b8941f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.music-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-heavy);
}

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

.music-artwork {
    width: 80px;
    height: 80px;
    background: var(--gradient-overlay);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.music-icon {
    width: 40px;
    height: 40px;
    color: var(--bg-white);
}

.music-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.music-artist {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.music-player audio {
    border-radius: 10px;
    outline: none;
}

/* Spotify-style Player */
.spotify-player-container {
    background: rgba(40, 40, 40, 0.9);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    max-width: 95%;
    margin: 1rem auto 0;
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

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

@media (min-width: 768px) {
    .spotify-player-container {
        max-width: 80%;
    }
}

.spotify-header {
    background: rgba(50, 50, 50, 0.9);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .spotify-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
}

.artist-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.artist-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1DB954, #1ed760);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
}

.album-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.album-cover-placeholder i {
    width: 35px;
    height: 35px;
    color: white;
}

.artist-details {
    color: white;
}

.artist-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.artist-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.spotify-album-container {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.track-embeds-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.spotify-track-container {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.track-details {
    padding-top: 0.5rem;
}

.track-meta-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.track-meta-line::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #1DB954;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .track-embeds-container {
        gap: 2rem;
    }

    .track-meta-line {
        font-size: 0.8rem;
    }
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.play-btn {
    background: #1DB954;
    border: none;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
}

.play-btn:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.control-btn i, .play-btn i {
    width: 20px;
    height: 20px;
}

.track-list {
    padding: 1rem 0;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 768px) {
    .track-item {
        padding: 0.8rem 1.5rem;
    }

    .track-info {
        margin-left: 0.8rem;
    }

    .track-title {
        font-size: 1rem;
    }

    .track-description {
        font-size: 0.8rem;
    }
}

.track-number {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    width: 30px;
    text-align: center;
    font-weight: 500;
}

.track-info {
    flex: 1;
    margin-left: 1rem;
}

.track-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.track-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.track-artist {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.track-duration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Music Section Title Styling */
.music-section .section-title {
    color: #ffffff !important;
    font-family: 'Merriweather', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.music-section .section-divider {
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    width: 100px;
    height: 2px;
    margin: 0 auto 1.5rem;
}

/* Video Section Title Styling */
.video-section .section-title {
    color: #ffffff !important;
    font-family: 'Merriweather', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 4rem;
}

.video-section .section-divider {
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    width: 100px;
    height: 2px;
    margin: 0 auto 4rem;
}

/* Live Highlight Reel Section */
.highlight-reel-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('../images/lightened_forest_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.highlight-reel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.highlight-reel-section .section-title {
    color: #ffffff !important;
    font-family: 'Merriweather', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.highlight-reel-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.highlight-reel-section .section-divider {
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    width: 100px;
    height: 2px;
    margin: 0 auto 2rem;
}

.highlight-video-container {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-image: url('../images/thumbnail.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}



.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.8);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    min-width: 640px;
    min-height: 360px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    min-width: 640px;
    min-height: 360px;
}

@media (max-width: 768px) {
    .highlight-reel-section .section-title {
        font-size: 2rem;
    }

    .highlight-reel-section .section-subtitle {
        font-size: 1rem;
    }

    .highlight-reel-section {
        background-attachment: scroll;
    }

    .video-modal-content {
        width: 95%;
        margin: 1rem;
        min-width: 320px;
    }

    .video-wrapper {
        min-width: 320px;
        min-height: 180px;
    }

    .video-wrapper iframe {
        min-width: 320px;
        min-height: 180px;
    }

    .close-modal {
        top: -40px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

/* Featured Video Section */
.featured-video-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), 
                url('../images/lightened_forest_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-video-box {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;```text
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-video-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* Video Preview Card Styles */
.video-preview-card {
    width: 100%;
    max-width: 480px;
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-preview-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.video-preview-card video {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: cover;
    aspect-ratio: 16/9;
    background-color: #000;
}

.video-preview-card:hover video {
    transform: scale(1.03);
}

.video-content {
    padding: 1.5rem;
}

.video-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    font-weight: 300;
}

.video-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.watch-button {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background-color: #1c1c1c;
    color: white;
    border: 1px solid #888;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.watch-button:hover {
    transform: scale(1.05);
    background-color: #333;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px; /* Slight offset for triangle alignment */
}

.featured-video-box .video-title {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-video-box .video-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 300;
}

.watch-button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.watch-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Responsive design for Featured Video */
@media (max-width: 768px) {
    .featured-video-section {
        background-attachment: scroll; /* Better performance on mobile */
    }

    .video-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .video-preview-card {
        max-width: 100%;
    }

    .video-content {
        padding: 1rem;
    }

    .video-content h3 {
        font-size: 1.3rem;
    }

    .video-content p {
        font-size: 0.9rem;
    }

    .watch-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .featured-video-box {
        padding: 3rem 2rem;
    }

    .play-icon {
        font-size: 3rem;
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .featured-video-box .video-title {
        font-size: 1.8rem;
    }

    .featured-video-box .video-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .watch-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .video-button-container {
        margin-top: 0.75rem;
    }

    .epk-section {
        background-attachment: scroll; /* Better performance on mobile */
    }
}

@media (max-width: 480px) {
    .video-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .video-content {
        padding: 0.75rem;
    }

    .video-content h3 {
        font-size: 1.2rem;
    }
}

/* Press Section */
.press-section {
    padding: 8rem 0;
    background: var(--bg-parchment);
    background-image: var(--parchment-texture);
    position: relative;
    overflow: hidden;
}

.press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.press-carousel-container {
    overflow-x: auto;
    padding: 2rem 0;
}

.press-carousel {
    display: flex;
    gap: 3rem;
    padding: 0 1rem;
    min-width: max-content;
}

.press-quote {
    min-width: 350px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.press-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Merriweather', serif;
    font-size: 4rem;
    color: var(--accent-color);
    line-height: 1;
}

.press-quote blockquote {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    font-weight: 300;
}

.press-quote cite {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* EPK Section */
.epk-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                url('../images/forest_road_bw.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.epk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.epk-download-card {
    background: rgba(40, 40, 40, 0.9);
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.epk-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.epk-icon-container {
    width: 100px;
    height: 100px;
    background: var(--gradient-overlay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.epk-icon {
    width: 50px;
    height: 50px;
    color: var(--bg-white);
}

.epk-title {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.epk-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.epk-download-btn {
    background: linear-gradient(135deg, var(--accent-color), #b8941f);
    border: none;
    border-radius: 50px;
    padding: 20px 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.epk-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.epk-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
    color: var(--text-dark);
}

.epk-download-btn:hover::before {
    left: 100%;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--bg-parchment);
    background-image: var(--parchment-texture);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #b8941f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-overlay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    width: 30px;
    height: 30px;
    color: var(--bg-white);
}

.contact-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-btn {
    background: linear-gradient(135deg, var(--accent-color), #b8941f);
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--text-dark);
}

/* Footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0d1b2a;
    color: #c9a44c;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a44c, transparent);
    opacity: 0.3;
}

.footer-left {
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-right a {
    color: #c9a44c;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-right a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-right a:focus {
    outline: 2px solid #c9a44c;
    outline-offset: 3px;
    border-radius: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        text-align: center;
        padding: 20px 20px;
        gap: 15px;
    }
    
    .footer-right {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-right a {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 18px 15px;
        font-size: 13px;
    }
    
    .footer-right {
        gap: 16px;
    }
    
    .footer-right a {
        font-size: 22px;
    }
}

/* Buttons */
.btn-hero {
    background: linear-gradient(135deg, var(--accent-color), #b8941f);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--text-dark);
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #b8941f);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    padding: 15px 35px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: transparent;
    color: var(--accent-color);
}

.epk-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sticky Navigation */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Navigation Styles */
@media (max-width: 767.98px) {
    .navbar-nav-desktop {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-brand {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
}

/* Desktop Navigation - Hide mobile elements */
@media (min-width: 768px) {
    .navbar-toggler {
        display: none;
    }

    .navbar-nav-mobile {
        display: none !important;
    }

    .navbar-nav-desktop {
        display: flex;
    }
}

/* Desktop Navigation - Responsive spacing */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-nav-desktop .nav-item {
        margin: 0 0.5rem;
    }

    .navbar-nav-desktop .nav-link {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

/* Large screens - more spacing */
@media (min-width: 1200px) {
    .navbar-nav-desktop .nav-item {
        margin: 0 1rem;
    }

    .navbar-nav-desktop .nav-link {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .bio-section, .music-section, .video-section, .press-section, .contact-section, .epk-section {
        padding: 5rem 0;
    }

    .bio-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .bio-image-placeholder {
        width: 200px;
        height: 200px;
    }

    .bio-icon {
        width: 60px;
        height: 60px;
    }

    .about-image {
        width: 180px;
        height: 180px;
    }

    .about-image-container {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .music-card, .contact-card {
        margin-bottom: 2rem;
    }

    .press-carousel {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .press-quote {
        min-width: 280px;
        padding: 2rem 1.5rem;
    }

    .epk-download-card {
        padding: 3rem 2rem;
    }

    .epk-download-btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .navbar-nav .nav-link {
        font-size: 0.75rem;
        margin: 0 0.3rem;
    }

    .press-quote {
        min-width: 260px;
        padding: 1.5rem 1rem;
    }

    .press-quote blockquote {
        font-size: 1rem;
    }

    .bio-section, .music-section, .video-section, .press-section, .contact-section, .epk-section {
        padding: 4rem 0;
    }

    .music-card, .contact-card {
        padding: 1.5rem;
    }

    .epk-download-card {
        padding: 2rem 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cinematic section transitions */
section {
    position: relative;
    z-index: 1;
}

/* Parallax scroll effects */
.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

/* Featured Music Section */
.featured-music-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), 
                url('../images/forest_road_bw.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: #f1f1f1;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.featured-music-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    pointer-events: none;
}

.featured-music-section .container {
    position: relative;
    z-index: 1;
}

.featured-music-section .section-title {
    color: #ffffff !important;
    font-family: 'Merriweather', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.featured-music-section .section-divider {
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    width: 100px;
    height: 2px;
    margin: 0 auto 2rem;
}

.track-embeds-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.track-embed-section,
.track-embed-section-large {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(20, 20, 20, 0.65);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 3;
}

.track-embed-section-large {
    max-width: 820px;
    padding: 24px;
    transform: scale(1.03);
    transform-origin: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.track-embed-section-large:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.track-embed-section iframe,
.track-embed-section-large iframe {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 4;
}

.track-embed-section iframe {
    height: 152px;
}

.track-embed-section-large iframe {
    height: 200px;
}

.track-description {
    margin-top: 5px;
    line-height: 1.4;
    font-size: 1rem;
    color: #e0e0e0;
    text-align: center;
    position: relative;
    z-index: 3;
}

.track-embed-section-large .track-description {
    font-size: 1.05rem;
}

.preview-note {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
    margin-top: 0.5rem;
}

.spotify-follow-container {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.spotify-follow-button {
    background: #1DB954;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.spotify-follow-button:hover {
    background: #17a54d;
    color: white;
    text-decoration: none;
}

/* Mobile responsive adjustments for Featured Music section */
@media (max-width: 768px) {
    .featured-music-section {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .track-embeds-container {
        gap: 2rem;
    }

    .track-embed-section,
    .track-embed-section-large {
        max-width: 95%;
        padding: 15px;
        transform: none;
    }

    .track-embed-section-large {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .track-description {
        font-size: 0.9rem;
    }

    .track-embed-section-large .track-description {
        font-size: 0.95rem;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.featured-music-section .track-embed-section-large iframe {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: block.
}

.featured-music-section .track-embed-section-large .track-description {
  margin-top: 5px !important;
}

.featured-music-section .track-embed-section-large {
  max-width: 1025px !important;
  padding: 24px !important;
  transform: scale(1.03);
  transform-origin: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.featured-music-section .track-embed-section-large:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Booking Modal Styles */  
.modal {  
  display: none; /* Hidden by default */  
  position: fixed;  
  top: 0; left: 0;  
  width: 100%; height: 100%;  
  background: rgba(0,0,0,0.6);  
  justify-content: center;  
  align-items: center;  
  z-index: 9999;  
}  

.modal-content {  
  background: #fff;  
  padding: 0.4rem 2rem 2rem 2rem;
  border-radius: 8px;  
  max-width: 500px;  
  width: 90%;  
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);  
}  

.modal .close {  
  float: right;  
  font-size: 1.5rem;  
  cursor: pointer;  
}  

.hidden { display: none; }

/* Booking Modal Form Styling */
#bookingModal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#bookingModal label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

#bookingModal input,
#bookingModal select,
#bookingModal textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

#bookingModal textarea {
  resize: vertical;
}

#bookingModal .submit-btn {
  background: #bfa14a; /* gold theme */
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#bookingModal .submit-btn:hover {
  background: #a5893c;
}

#bookingModal h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

#bookingModal p {
  text-align: center;
  margin-bottom: 1rem;
  color: #666;
}

/* Slight Modal Size Refinements */
.modal-content {
  max-width: 550px; /* slightly wider for better layout */
  max-height: 80vh; /* prevent it from growing too tall */
  overflow-y: auto; /* allow scrolling if needed */
}

/* Modal background dim & blur */
.modal {
  background: rgba(0,0,0,0.45); /* subtle dim */
  backdrop-filter: blur(4px);   /* soft blur effect */
  transition: opacity 0.3s ease;
}

/* Fade-in animation for modal content */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  animation: modalFadeIn 0.3s ease;
  border-radius: 10px; /* soft rounded corners */
  box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 0 10px rgba(191,148,26,0.2); /* subtle glow */
}

/* Elegant close button */
.modal .close {
  float: right;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  transition: color 0.2s ease, transform 0.2s ease;
}
.modal .close:hover {
  color: #bf941a; /* match gold theme */
  transform: scale(1.2);
  cursor: pointer;
}

.contact-btn {
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--accent-color), #b8941f);
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-btn:hover {
  box-shadow: 0 0 6px rgba(191,148,26,0.4);
  transform: scale(1.02);
  transition: all 0.2s ease;
}

/* === Modal Overlay Fade & Background === */
.modal {
  background: rgba(0, 0, 0, 0.45); /* subtle dim */
  backdrop-filter: blur(4px); /* soft blur effect */
  transition: opacity 0.3s ease;
}

/* === Modal Content Fade + Scale Animations === */
@keyframes modalFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalContentShrinkOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.92);
  }
}

.modal-content {
  max-width: 420px; /* smaller modal fits most screens */
  max-height: 70vh;
  overflow-y: auto;
  padding: 1rem; /* slightly reduced spacing */
  border-radius: 10px; /* smooth rounded corners */
  box-shadow: 0 10px 25px rgba(0,0,0,0.25), 0 0 10px rgba(191,148,26,0.2); /* subtle glow */
  animation: modalFadeIn 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal-content.shrink-out {
  animation: modalContentShrinkOut 0.25s ease forwards;
}

/* Compact form styling */
#bookingModal form {
  gap: 0.4rem; /* tighter vertical spacing */
}
#bookingModal label {
  margin-bottom: 0.1rem;
}
#bookingModal input,
#bookingModal select,
#bookingModal textarea {
  padding: 0.35rem; /* smaller padding for compact look */
  font-size: 0.9rem;
}

/* Close button subtle entrance + hover refinement */
@keyframes closeButtonPopIn {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-5deg);
  }
  80% {
    opacity: 1;
    transform: scale(1.05) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.modal .close {
  float: right;
  font-size: 1.2rem; /* slightly smaller */
  margin-top: -0.3rem; /* closer to modal edge */
  margin-right: -0.2rem;
  font-weight: bold;
  color: #333;
  animation: closeButtonPopIn 0.3s ease;
  transition: color 0.25s ease, transform 0.25s ease;
}

.modal .close:hover {
  color: #bf941a; /* gold accent */
  transform: scale(1.12) rotate(3deg);
  opacity: 0.85;
  cursor: pointer;
}

/* Modern dropdown style for booking modal */
#bookingModal select {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.4rem;
  font-size: 0.9rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#bookingModal select:hover {
  border-color: #bf941a; /* gold accent */
  box-shadow: 0 0 6px rgba(191,148,26,0.2);
  cursor: pointer;
}

/* Media Modal Styles */
#mediaModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

#mediaModal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

#mediaModal .press-assets ul {
  list-style: none;
  padding: 0;
}

#mediaModal .press-assets li {
  margin: 0.5rem 0;
}

#mediaModal .press-assets a {
  color: #bf941a;
  text-decoration: none;
}

#mediaModal .press-assets a:hover {
  text-decoration: underline;
}

#mediaModal .press-quotes {
  margin: 1.5rem 0;
  min-height: 60px;
  position: relative;
}

#mediaModal .press-quotes blockquote {
  display: none;
  font-style: italic;
  margin: 0;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 8px;
  color: #333;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}

#mediaModal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#mediaModal input,
#mediaModal textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

#mediaModal button[type="submit"] {
  background: #bf941a;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#mediaModal button[type="submit"]:hover {
  background: #a5893c;
}

.modal-social {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.modal-social img {
  width: 36px;
  height: 36px;
  margin: 0 8px;
  transition: transform 0.2s ease-in-out;
}

.modal-social img:hover {
  transform: scale(1.1);
}

.modal-social a {
  display: flex;
  align-items: center;
  margin: 6px 0;
  text-decoration: none;
  color: inherit;
}

.modal-social a img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  transition: transform 0.2s ease-in-out;
}

.modal-social a:hover img {
  transform: scale(1.1);
}

.modal-social img {
  display: inline-block !important;
  width: 30px !important;
  height: auto !important;
  margin-right: 6px;
  vertical-align: middle;
}

.modal-social a {
  display: flex;
  align-items: center;
  margin: 6px 0;
}

/* Align all modal social links neatly */
.modal-social li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff; /* or your modal text color */
  font-size: 1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Ensure SVG icons scale consistently */
.modal-social li a svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Smooth hover effect */
.modal-social li a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.modal-social li {
  margin: 8px 0; /* even space between each icon+text link */
}

.modal-content {
  padding-top: 20px !important; /* reduce the huge top gap */
}

#pressModal .modal-content {
  padding-top: 20px !important;
}
#pressModal .modal-dialog {
  margin-top: 20px !important;
}

.modal-divider {
  border: none;
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}

/* Reduce ONLY the space above the Press One-Sheet link inside the Media modal */
#pressModal .modal-body ul:first-of-type {
  margin-top: 10px !important; /* Previously it was ~50px, now 80% less */
}

#pressModal .press-assets {
  margin-top: 10px !important; /* reduced from default ~40px */
}

#pressModal .modal-body {
  padding-top: 0 !important;
}

#pressModal .modal-body > *:first-child {
  margin-top: 0 !important;
}

/* Reduce top spacing for the Media modal */
#pressModal .modal-dialog {
  margin-top: 10px !important;   /* default is usually 30-50px */
  transform: none !important;    /* disables vertical centering if applied */
}

/* Remove extra padding from the header in Media modal */
#pressModal .modal-header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: auto !important; /* prevents reserved header height */
}

/* Fix hidden modal text + center for all modals */
#mediaModal .modal-content h2,
#mediaModal .modal-content p,
#bookingModal .modal-content h2,
#bookingModal .modal-content p,
#generalModal .modal-content h2,
#generalModal .modal-content p {
  color: #333 !important;      /* make text clearly visible */
  text-align: center;          /* center headings + subheadings */
  margin-left: auto;
  margin-right: auto;
}

/* General Modal Styles */
#generalModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

#generalModal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

#generalModal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#generalModal input,
#generalModal textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

#generalModal button[type="submit"] {
  background: #bf941a;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#generalModal button[type="submit"]:hover {
  background: #a5893c;
}

#generalModal .press-assets ul {
  list-style: none;
  padding: 0;
}

#generalModal .press-assets li {
  margin: 0.5rem 0;
}

#generalModal .press-assets a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#generalModal .press-assets a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

#generalModal .press-assets svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Modal social link icons alignment */
.modal-social a img,
.press-assets a img {
  width: 22px !important;
  height: 22px !important;
  margin-right: 8px !important;
  flex-shrink: 0;
}