@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Nosifer&family=Metal+Mania&family=Chiller&family=Butcherman&family=Eater&family=New+Rocker&family=Griffy&family=Rye&family=Bloodlust&family=Frijole&family=Caesar+Dressing&display=swap');

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

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Sections */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure content doesn't push section height to zero */
    padding: 0 2rem;
    /* Added padding to ensure content area is detectable */
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.lookatups-section .section-bg {
    background-color: #000000;
}

/* Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.sticky-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-link.lookatups-active,
.nav-link.radio-active,
.nav-link.home-active {
    color: #8B6F47;
    text-shadow: 0 0 2px #ffffff, 0 0 4px #ffffff, 0 0 6px #ffffff;
    transform: translateY(-2px);
}

.nav-link:hover {
    color: #8B6F47;
    text-shadow: 0 0 2px #ffffff, 0 0 4px #ffffff, 0 0 6px #ffffff;
    transform: translateY(-2px);
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.hero-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #00FFFF;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInGlow 3s ease-in-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Social Section */
.social-section {
    margin-top: 2rem;
}

.social-text {
    color: #4B3621;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.social-link:hover {
    color: #4B3621;
    transform: scale(1.2);
    text-shadow: 0 0 10px #4B3621;
}

/* Canvas */
#particles-canvas,
#audio-visualizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Content Pages */
.lookatups-section,
.radio-section {
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 1;
    /* Ensure z-index doesn't conflict with nav */
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: 100%;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInGlow 2s ease-in-out;
    color: #4B3621;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.image-section {
    text-align: center;
}

.current-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.current-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00FF00;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
}

.contact-info {
    color: #cccccc;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: linear-gradient(45deg, #00FFFF, #00FF00);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Radio Section */
.radio-section {
    background-color: #000000 !important;
}

.radio-section .section-bg {
    background-color: #000000 !important;
    background-image: none !important;
}

.radio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.radio-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.radio-logo:hover {
    box-shadow: 0 0 20px #00FFFF;
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.episode {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.episode:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.episode-poster {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.episode-poster:hover {
    transform: scale(1.1);
}

.episode-info {
    flex: 1;
}

.episode-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4B3621;
}

.episode-audio {
    width: 100%;
    max-width: 400px;
}

/* Music Section */
.music-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.music-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.music-item:hover {
    transform: translateY(-5px);
}

.music-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.music-item:hover img {
    box-shadow: 0 0 20px #4B3621;
}

.music-item .listen-text {
    color: #4B3621;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInGlow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        gap: 0.5rem;
        /* Reduced gap to bring text closer */
        padding: 0.8rem 1rem;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        /* Allow horizontal scrolling if needed */
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on mobile */
    }

    .nav-link {
        font-size: 0.95rem;
        /* Slightly reduced for better fit */
        padding: 0.3rem 0.6rem;
        /* Reduced padding to bring text closer */
        letter-spacing: 0.2px;
        /* Reduced letter spacing for compactness */
        white-space: nowrap;
        /* Prevent wrapping within words */
        font-family: 'Arial', sans-serif !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
        flex-shrink: 0;
        /* Prevent shrinking */
        min-width: 70px;
        /* Minimum width to ensure text fits */
        text-align: center;
        /* Center align text */
    }

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

    .hero-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }

    .hero-logo {
        max-width: 150px;
    }

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

    .content-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .episode {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .episode-poster {
        width: 60px;
        height: 60px;
    }

    .episode-title {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .page-title {
        font-size: 2rem;
    }

    .section {
        padding: 5rem 1rem 2rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .music-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .music-item img {
        width: 100px;
        height: 100px;
    }

    .music-item .listen-text {
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100px;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .video-item img {
        width: 150px;
        height: 84px;
    }

    .video-item .video-text {
        font-size: 0.8rem;
        max-width: 150px;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Optimize touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .social-link {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Reduce animations on mobile for performance */
    .hero-logo:hover,
    .current-image:hover,
    .episode-poster:hover,
    .radio-logo:hover {
        transform: none;
        box-shadow: none;
    }

    .episode:hover {
        transform: none;
    }

    /* Disable parallax on mobile for performance */
    .parallax-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.6rem 0.8rem;
        gap: 0.3rem;
        /* Further reduced gap */
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.2rem 0.5rem;
        /* Further reduced padding */
        letter-spacing: 0.1px;
        /* Minimal letter spacing */
        white-space: nowrap;
        font-family: 'Arial', sans-serif !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
        flex-shrink: 0;
        min-width: 60px;
        /* Adjusted minimum width */
        text-align: center;
    }

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

    .hero-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }

    .hero-logo {
        max-width: 120px;
    }

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

    .content-container {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }

    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

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

    .bio {
        font-size: 1rem;
    }

    .contact-info {
        font-size: 0.9rem;
    }

    .social-text {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .nav-container {
        padding: 0.5rem;
        gap: 0.2rem;
        /* Minimal gap */
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
        /* Minimal padding */
        letter-spacing: 0px;
        /* No extra spacing */
        white-space: nowrap;
        font-family: 'Arial', sans-serif !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
        flex-shrink: 0;
        min-width: 50px;
        /* Adjusted minimum width */
        text-align: center;
    }

    .hero-content {
        padding: 1rem;
        margin: 0.3rem;
    }

    .content-container {
        padding: 1rem;
        margin: 0.3rem;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInGlow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}