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

:root {
    /* Color palette inspired by album art */
    --deep-ocean: #1a2a35;
    --ocean-blue: #2d4e5c;
    --slate-blue: #3e5564;
    --teal-accent: #4a7080;
    --warm-coral: #ff8c42;
    --sunset-orange: #ff6b35;
    --light-teal: #5a8a9a;
    --off-white: #e8e8ea;
    --soft-gray: #b0b8bc;
    --dark-bg: #0f1619;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--off-white);
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--deep-ocean) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

a {
    color: var(--light-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--warm-coral);
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 100%);
    color: var(--off-white);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(74, 112, 128, 0.3);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav h1 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

nav h1 a {
    color: var(--off-white);
    text-shadow: 0 2px 10px rgba(255, 140, 66, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul a {
    color: var(--soft-gray);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-coral);
    transition: width 0.3s ease;
}

nav ul a:hover {
    color: var(--warm-coral);
}

nav ul a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    min-height: 70vh;
}

section {
    padding: 3rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--off-white);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-coral), var(--sunset-orange));
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-teal);
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-ocean) 50%, #0a1419 100%);
    margin: -3rem -2rem 3rem -2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero h2 {
    color: var(--off-white);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    z-index: 1;
    position: relative;
}

.hero h2::after {
    display: none;
}

.hero p {
    font-size: 1.3rem;
    color: var(--soft-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
}

/* Hero Image */
.hero-image {
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 22, 25, 0.3) 100%);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Releases */
.latest-release,
.music-page {
    background: rgba(26, 42, 53, 0.4);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid rgba(74, 112, 128, 0.2);
    backdrop-filter: blur(10px);
}

.release {
    margin-bottom: 3rem;
}

.releases-grid {
    display: grid;
    gap: 3rem;
}

.embed-container {
    margin: 1.5rem auto 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(74, 112, 128, 0.3);
    background: var(--deep-ocean);
    position: relative;
    padding-bottom: 66%; /* Taller aspect ratio for better visibility */
    height: 0;
    width: 100%;
    max-width: 900px;
}

.embed-container iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Videos Page */
.videos-page {
    background: rgba(26, 42, 53, 0.4);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 112, 128, 0.2);
    backdrop-filter: blur(10px);
}

.videos-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.video {
    width: 100%;
}

.video h3 {
    margin-bottom: 0.75rem;
}

.video-description {
    color: var(--soft-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Shows */
.upcoming-shows,
.shows-page {
    background: rgba(26, 42, 53, 0.4);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 112, 128, 0.2);
    backdrop-filter: blur(10px);
}

.show-list {
    list-style: none;
}

.show-item {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(45, 78, 92, 0.3) 0%, rgba(26, 42, 53, 0.3) 100%);
    border-radius: 8px;
    align-items: center;
    border: 1px solid rgba(74, 112, 128, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.show-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--warm-coral), var(--sunset-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.show-item:hover {
    transform: translateX(8px);
    border-color: rgba(255, 140, 66, 0.4);
    background: linear-gradient(135deg, rgba(45, 78, 92, 0.5) 0%, rgba(26, 42, 53, 0.5) 100%);
}

.show-item:hover::before {
    opacity: 1;
}

.show-item time {
    font-weight: 600;
    color: var(--light-teal);
    font-size: 1.1rem;
}

.show-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.venue {
    font-weight: 600;
    color: var(--off-white);
    font-size: 1.2rem;
}

.city {
    color: var(--soft-gray);
    font-size: 0.95rem;
}

.tickets {
    background: linear-gradient(135deg, var(--warm-coral), var(--sunset-orange));
    color: var(--dark-bg);
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.tickets:hover {
    background: linear-gradient(135deg, var(--sunset-orange), var(--warm-coral));
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
}

.no-tickets {
    color: var(--slate-blue);
    font-style: italic;
    font-size: 0.9rem;
}

.view-all {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--ocean-blue), var(--slate-blue));
    color: var(--off-white);
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 112, 128, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.view-all:hover {
    background: linear-gradient(135deg, var(--slate-blue), var(--teal-accent));
    color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 112, 128, 0.4);
}

/* About Page */
.about-page {
    background: rgba(26, 42, 53, 0.4);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 112, 128, 0.2);
    backdrop-filter: blur(10px);
}

.page-content {
    max-width: 800px;
}

.body-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--soft-gray);
}

.body-text p {
    margin-bottom: 1.5rem;
}

/* Demos Page */
.demos-page {
    background: rgba(26, 42, 53, 0.4);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 112, 128, 0.2);
    backdrop-filter: blur(10px);
}

.demo-release {
    background: rgba(45, 78, 92, 0.2);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(74, 112, 128, 0.15);
}

.audio-player {
    margin-top: 1.5rem;
}

.audio-player audio {
    width: 100%;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, #0a1419 100%);
    color: var(--soft-gray);
    text-align: center;
    padding: 3rem;
    margin-top: 5rem;
    border-top: 2px solid rgba(74, 112, 128, 0.3);
}

/* Atmospheric Elements - Removed floating animation */

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav h1 {
        font-size: 1.2rem;
    }

    .hero h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

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

    h2 {
        font-size: 2rem;
    }

    .show-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .show-item:hover {
        transform: none;
    }

    main {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    section {
        padding: 2rem 0;
    }

    .latest-release,
    .music-page,
    .upcoming-shows,
    .shows-page,
    .about-page {
        padding: 2rem 1.5rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-image img {
        max-height: 400px;
    }
}

/* Loading and transition effects */
.embed-container {
    position: relative;
}

.embed-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(74, 112, 128, 0.15) 50%, transparent 70%);
    animation: shimmer 6s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 0.05; }
    100% { transform: translateX(100%); opacity: 0; }
}
