html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

:root {
    --color-blood-red: #8B0000;
    --color-bone-white: #F5F0E6;
    --color-electric-indigo: #5D3FD3;
    --color-dust-olive: #797D62;
    --color-burnt-caramel: #4A1C1A;
    --color-grit-black: #0F0F0F;
    --font-display: 'Rock Salt', cursive;
    --font-body: 'Bebas Neue', sans-serif;
}

body {
    background-color: var(--color-bone-white);
    color: var(--color-grit-black);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

h1, h2, h3, .navbar-brand {
    font-family: var(--font-display);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-burnt-caramel);
}

h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--color-dust-olive);
}

h4 {
    font-family: var(--font-body);
    font-size: 1.25rem;
}

.navbar {
    background-color: var(--color-grit-black);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--color-bone-white);
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: var(--color-blood-red);
}

.nav-link {
    color: var(--color-bone-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.nav-link:hover, .nav-link:focus {
    color: var(--color-blood-red);
}

.navbar-toggler {
    border-color: var(--color-bone-white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F5F0E6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-icons .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../assets/images/hero/hero-main.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,15,15,0.7), rgba(15,15,15,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-bone-white);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .tagline {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-electric-indigo);
}

.hero-content .bio {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

.btn-cta {
    background-color: var(--color-blood-red);
    color: var(--color-bone-white);
    font-family: var(--font-body);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 2rem;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cta:hover, .btn-cta:focus {
    background-color: var(--color-burnt-caramel);
    color: var(--color-bone-white);
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid var(--color-blood-red);
    color: var(--color-blood-red);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--color-blood-red);
    color: var(--color-bone-white);
}

section {
    padding: 4rem 0;
}

.section-gallery {
    background-color: var(--color-bone-white);
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.section-music {
    background-color: var(--color-grit-black);
    color: var(--color-bone-white);
}

.section-music h2, .section-music h3 {
    color: var(--color-bone-white);
}

.section-music h3 {
    opacity: 0.8;
}

.music-card {
    background-color: rgba(245,240,230,0.1);
    border: 1px solid var(--color-dust-olive);
    transition: border-color 0.3s;
}

.music-card:hover {
    border-color: var(--color-electric-indigo);
}

.music-card .card-title {
    color: var(--color-bone-white);
    margin-bottom: 0.5rem;
}

.music-card .original-artist {
    color: var(--color-dust-olive);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.platform-links a {
    color: var(--color-bone-white);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.platform-links a:hover {
    color: var(--color-electric-indigo);
}

.section-videos {
    background-color: var(--color-bone-white);
}

.video-card {
    border: none;
    background: transparent;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.video-thumbnail img {
    transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,15,15,0.4);
    transition: background 0.3s;
}

.play-overlay i {
    font-size: 4rem;
    color: var(--color-bone-white);
    transition: transform 0.3s, color 0.3s;
}

.video-card:hover .play-overlay {
    background: rgba(15,15,15,0.6);
}

.video-card:hover .play-overlay i {
    transform: scale(1.1);
    color: var(--color-blood-red);
}

.video-card .card-title {
    color: var(--color-grit-black);
    margin-top: 0.75rem;
}

.section-posts {
    background-color: var(--color-dust-olive);
    color: var(--color-bone-white);
}

.section-posts h2 {
    color: var(--color-bone-white);
}

.post-card {
    background-color: var(--color-bone-white);
    border: none;
    height: 100%;
}

.post-card .card-body {
    color: var(--color-grit-black);
}

.post-date {
    display: block;
    font-size: 0.9rem;
    color: var(--color-dust-olive);
    margin-bottom: 0.5rem;
}

.post-card .card-title {
    color: var(--color-burnt-caramel);
    margin-bottom: 0.75rem;
}

.post-card .card-text {
    line-height: 1.5;
}

.site-footer {
    background-color: var(--color-grit-black);
    color: var(--color-bone-white);
    padding: 2rem 0;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-social a, .footer-platforms a {
    color: var(--color-bone-white);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.footer-social a:hover, .footer-platforms a:hover {
    color: var(--color-blood-red);
}

.privacy-link {
    color: var(--color-bone-white);
    opacity: 0.6;
    font-size: 0.8rem;
    text-decoration: none;
}

.privacy-link:hover {
    opacity: 1;
    color: var(--color-bone-white);
}

.privacy-content h1 {
    color: var(--color-burnt-caramel);
}

.privacy-content h2 {
    font-size: 1.5rem;
}

a:focus, button:focus {
    outline: 2px solid var(--color-electric-indigo);
    outline-offset: 2px;
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 80vh;
    }
    .hero-content h1 {
        font-size: 5rem;
    }
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .slide { transition: none; }
}

.gallery-slideshow {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slideshow-track {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-grit-black);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15,15,15,0.6);
    color: var(--color-bone-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}

.slideshow-btn:hover, .slideshow-btn:focus {
    background: var(--color-blood-red);
}

.slideshow-btn.prev { left: 0.5rem; }
.slideshow-btn.next { right: 0.5rem; }

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-dust-olive);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s;
}

.dot.active, .dot:hover {
    background: var(--color-blood-red);
    border-color: var(--color-blood-red);
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,15,15,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.open {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-bone-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.video-modal-close:hover, .video-modal-close:focus {
    color: var(--color-blood-red);
}

.video-modal video {
    width: 100%;
    border-radius: 4px;
}

.platform-link-disabled {
    color: var(--color-dust-olive);
    opacity: 0.4;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-blood-red);
    color: var(--color-bone-white);
    padding: 0.5rem 1rem;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

@media print {
    .navbar, .btn-cta, .btn-outline, .play-overlay, .platform-links, .footer-social, .footer-platforms, .slideshow-btn, .slideshow-dots, .video-modal, .skip-link {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
    section {
        page-break-inside: avoid;
    }
}
