/* ==================== */
/* RESET & GLOBAL       */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* ===================== */
/* STATIC BACKGROUND     */
/* ===================== */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.25);
    }
}

/* Tablet and below */
@media (max-width: 1024px) {
    @keyframes slowZoom {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.05);
        }
    }
}

/* Mobile */
@media (max-width: 480px) {
    @keyframes slowZoom {
        0% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1.15);
        }
    }
}

/* Extra Small - Below 360px */
@media (max-width: 360px) {
    .background-image {
        width: auto;
        height: 100vh;
        min-width: 100vw;
        object-fit: cover;
        transform: translate(-50%, -50%) scale(1.2);
    }

    @keyframes slowZoom {
        0% {
            transform: translate(-50%, -50%) scale(1.2);
        }
        100% {
            transform: translate(-50%, -50%) scale(1.25);
        }
    }
}


/* ===================== */
/* BACKGROUND LOGO VIDEO */
/* ===================== */

.intro-video, .loop-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: auto;
    z-index: 1;
    transition: opacity 0.5s ease;
    filter: brightness(1) drop-shadow(0 0 2px rgba(255, 0, 0, 0.6));
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0; /* Changed from -1, sits behind video */
    transition: all 0.3s ease;
}

/* Tablet and below - make it bigger */
@media (max-width: 1024px) {
    .intro-video, .loop-video {
        width: auto;
        height: 50vh; /* 80% of screen height */
        max-width: none;
    }
}

/* Small Mobile - slightly smaller */
@media (max-width: 480px) {
    .intro-video, .loop-video {
        height: 40vh;
    }
}

.loop-video {
    opacity: 0;
}

/* ==================== */
/* BACKGROUND & OVERLAY */
/* ==================== */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    transition: all 0.3s ease;
}

.overlay.menu-open {
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 998;
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1000;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===================== */
/* SUBPAGE SKULL BACKGROUND    */
/* ===================== */
.content-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/vendetta-skull-125.svg');
    background-repeat: repeat;
    background-size: 125px 125px; /* Match artboard */
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

/* Responsive sizes */
@media (min-width: 1200px) {
    .content-page::before {
        background-size: 125px 125px;
    }
}

@media (max-width: 1024px) {
    .content-page::before {
        background-size: 90px 90px;
    }
}

@media (max-width: 480px) {
    .content-page::before {
        background-size: 75px 75px;
    }
}

/* ==================== */
/* NAVIGATION           */
/* ==================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.nav-icon .logo-svg {
    height: 50px;
    width: auto;
    fill: #ffffff; /* White by default */
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.nav-icon .logo-svg:hover {
    fill: #ca0030; 
    filter: drop-shadow(0 0 2px rgb(243, 0, 54));
    transform: scale(1.2);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ca0030;
    filter: brightness(1) saturate(1.2);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ca0030;
    filter: brightness(1) saturate(1.2);
}

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

.nav-link.active {
    color: #ca0030;
    pointer-events: none; /* Prevents clicking */
    cursor: default;
}

.nav-link.active::after {
    width: 0; /* Always show the underline */
    background: #ca0030;
}

/* Remove hover effects from active link */
.nav-link.active:hover {
    color: #990033; /* Stay red */
}

/* ==================== */
/* HAMBURGER MENU       */
/* ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==================== */
/* MOBILE MENU          */
/* ==================== */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ca0030;
    backdrop-filter: blur(100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, top 0s 0.4s;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    max-height: 400px;
    padding: 2rem 0;
    top: 80px; 
    transition: max-height 0.4s ease, padding 0.4s ease, top 0s; 
}

.mobile-link {
    color: #000000;
    text-decoration: none;
    font-family: "futura-pt-bold", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.1s ease;
    padding: 0.5rem 2rem;
    opacity: 0;
    transform: translateY(-20px);
    /* transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, color 0.3s ease; */
}

.mobile-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    cursor: default;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ==================== */
/* HOME PAGE - LANDING  */
/* ==================== */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 500px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 0, 0, 0.6));
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 4rem;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

/* Social Icons */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    padding-bottom: 5rem; /* Increased to account for footer */
    position: relative;
}

.social-icons {
    display: flex;
    gap: 2rem;
    margin-top: 0; /* Remove the top margin */
    justify-content: center;
    animation: fadeIn 2s ease-out;
}

.social-icons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    animation: fadeIn 2s ease-out;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(20, 0, 0, 0.8);
    border: 2px solid #990033;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 25px;
    height: 25px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.social-icon:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #eb0054;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    transform: translateY(-5px) scale(1.1);
}

.social-icon:hover svg {
    color: #eb0054;
    filter: brightness(1.5) saturate(1.2);
}

.social-icon:hover::before {
    left: 100%;
}

/* ==================== */
/* BIO PAGE             */
/* ==================== */
.bio-section {
    flex: 1;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 3rem 3rem;
}

.bio-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.bio-content h1 {
    font-family: "futura-pt-bold", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    color: #ca0030;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    justify-content: center;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
    font-weight: normal;
}

.bio-image-container {
    position: relative;
    width: 75%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 2px solid #ca0030;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
    margin-left: 25%;
    
}

.bio-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
}

.bio-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ==================== */
/* VAULT PAGE           */
/* ==================== */

.vault-section {
    flex: 1;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 3rem 3rem;
}

.vault-container {
    max-width: 1400px;
    width: 100%;
    gap: 5rem;
    align-items: center;
}

.vault-content h1 {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    color: #ca0030;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.vault-content p {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ==================== */
/* MUSIC PAGE           */
/* ==================== */
.music-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 3rem 3rem;
}

.music-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.music-content h1 {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    color: #ca0030;
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Large displays - remove container constraint */
@media (min-width: 1400px) {
    .music-container {
        max-width: none; /* This was the real bottleneck */
    }

    .releases-grid {
        max-width: 75vw; /* 75% of viewport width */
        gap: 5rem;
    }
}

/* Ultra-wide displays */
@media (min-width: 2400px) {
    .releases-grid {
        max-width: 70vw; /* Prevent it from getting too wide on massive screens */
        gap: 6rem;
    }
}

.release-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.release-title {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    transition: color 0.3s ease;
    height: 2.5em; /* Fixed height for 2-3 lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.release-cover:hover ~ .release-title,
.release-item:has(.release-cover:hover) .release-title {
    color: #ca0030;
}

.release-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow:
            0 2px 2px rgba(200, 0, 50, .5),
            0 4px 12px rgba(0, 0, 0, 0.3);
}


.release-cover:hover {
    box-shadow:
            0 16px 50px rgba(202, 0, 48, 0.4),
            0 8px 20px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(202, 0, 48, 0.5); /* Bright glow on hover */
}

.glint {
    position: absolute;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

/* Top border glint */
.glint:nth-child(1) {
    top: 0;
    left: -50%;
    width: 50%;
    height: 4px; /* Thicker line */
    background: linear-gradient(90deg, transparent, #ca0030 30%, #ff6b6b 50%, #ca0030 70%, transparent);
    box-shadow: 0 0 8px #ca0030; /* Glow effect */
}

/* Right border glint */
.glint:nth-child(2) {
    top: -50%;
    right: 0;
    width: 4px;
    height: 50%;
    background: linear-gradient(0deg, transparent, #ca0030 30%, #ff6b6b 50%, #ca0030 70%, transparent);
    box-shadow: 0 0 8px #ca0030;
}

/* Bottom border glint */
.glint:nth-child(3) {
    bottom: 0;
    right: -50%;
    width: 50%;
    height: 4px;
    background: linear-gradient(270deg, transparent, #ca0030 30%, #ff6b6b 50%, #ca0030 70%, transparent);
    box-shadow: 0 0 8px #ca0030;
}

/* Left border glint */
.glint:nth-child(4) {
    bottom: -50%;
    left: 0;
    width: 4px;
    height: 50%;
    background: linear-gradient(180deg, transparent, #ca0030 30%, #ff6b6b 50%, #ca0030 70%, transparent);
    box-shadow: 0 0 8px #ca0030;
}

/* Continuous hover animation */
.release-cover:hover .glint:nth-child(1) {
    opacity: 1;
    animation: glintTop 1.5s ease-in-out infinite;
}

.release-cover:hover .glint:nth-child(2) {
    opacity: 1;
    animation: glintRight 1.5s ease-in-out infinite;
    animation-delay: 0.375s; /* 1/4 of the cycle */
}

.release-cover:hover .glint:nth-child(3) {
    opacity: 1;
    animation: glintBottom 1.5s ease-in-out infinite;
    animation-delay: 0.75s; /* 1/2 of the cycle */
}

.release-cover:hover .glint:nth-child(4) {
    opacity: 1;
    animation: glintLeft 1.5s ease-in-out infinite;
    animation-delay: 1.125s; /* 3/4 of the cycle */
}

/* Return to start animation on unhover */
.release-cover .glint {
    transition: opacity 0.3s ease-out;
}

@keyframes glintTop {
    0%, 100% { left: -50%; }
    50% { left: 100%; }
}

@keyframes glintRight {
    0%, 100% { top: -50%; }
    50% { top: 100%; }
}

@keyframes glintBottom {
    0%, 100% { right: -50%; }
    50% { right: 100%; }
}

@keyframes glintLeft {
    0%, 100% { bottom: -50%; }
    50% { bottom: 100%; }
}

/* Trigger the glare on hover */
.release-cover:hover::before {
    left: 100%;
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-cover:hover .release-overlay {
    opacity: 1;
}

.streaming-icons {
    display: flex;
    gap: 2rem;
}

.streaming-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.streaming-icon svg {
    width: 30px;
    height: 30px;
}

.streaming-icon:hover {
    background: #ca0030;
    border-color: #ca0030;
    transform: scale(1.1);
}

/* Enable hover on touch devices */
.release-cover {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* iOS Safari touch fix */
@media (hover: none) and (pointer: coarse) {
    /* Make the entire cover area clickable */
    .release-cover {
        position: relative;
        touch-action: manipulation;
    }

    /* Add a JavaScript-style touch event simulation */
    .release-cover:active {
        opacity: 1;
    }

    .release-cover:active .release-overlay {
        opacity: 1;
    }

    .release-cover:active .glint:nth-child(1) {
        opacity: 1;
        animation: glintTop 1.5s ease-in-out infinite;
    }

    .release-cover:active .glint:nth-child(2) {
        opacity: 1;
        animation: glintRight 1.5s ease-in-out infinite;
        animation-delay: 0.375s;
    }

    .release-cover:active .glint:nth-child(3) {
        opacity: 1;
        animation: glintBottom 1.5s ease-in-out infinite;
        animation-delay: 0.75s;
    }

    .release-cover:active .glint:nth-child(4) {
        opacity: 1;
        animation: glintLeft 1.5s ease-in-out infinite;
        animation-delay: 1.125s;
    }

    .release-cover:active img {
        transform: scale(1.05);
    }

    .release-cover:active {
        box-shadow:
                0 16px 50px rgba(202, 0, 48, 0.4),
                0 8px 20px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(202, 0, 48, 0.5);
    }

    .release-cover:active ~ .release-title {
        color: #ca0030;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .releases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .music-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .streaming-icons {
        gap: 1.5rem;
    }

    .streaming-icon {
        width: 50px;
        height: 50px;
    }

    .streaming-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* ==================== */
/* NEWS PAGE            */
/* ==================== */

.news-section {
    flex: 1;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 3rem 3rem;
}

.news-container {
    max-width: 1400px;
    width: 100%;
    gap: 5rem;
    align-items: center;
}

.news-content h1 {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    color: #ca0030;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.news-content p {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ==================== */
/* SHOP PAGE           */
/* ==================== */

.shop-section {
    flex: 1;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 3rem 3rem;
}

.shop-container {
    max-width: 1400px;
    width: 100%;
    gap: 5rem;
    align-items: center;
}

.shop-content h1 {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    color: #ca0030;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.shop-content p {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ==================== */
/* ANIMATIONS           */
/* ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ==================== */
/* RESPONSIVE - TABLET  */
/* ==================== */
@media (max-width: 1024px) {
    .bio-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bio-content {
        order: 2;
    }

    .bio-image-container {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .bio-content h1 {
        font-size: 2.5rem;
    }

    .bio-content p {
        font-size: 1rem;
    }
}

/* ==================== */
/* RESPONSIVE - MOBILE  */
/* ==================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .top-nav {
        padding: 1rem 1.5rem;
        flex-direction: row; /* Changed from column */
        justify-content: space-between; /* Icon left, hamburger right */
    }

    .nav-icon img {
        height: 40px;
    }

    .logo {
        width: 250px;
    }

    .tagline {
        font-size: 1rem;
    }

    .social-icons {
        position: fixed;
        gap: 1.5rem;
        bottom: 5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Bio Page Mobile */
    .bio-section {
        padding: 6rem 2rem 2rem 2rem;
    }

    .bio-content h1 {
        font-size: 2rem;
    }

    .bio-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        top: 70px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.7rem;
    }

    .logo {
        width: 200px;
    }

    .social-icons {
        gap: 1rem;
        bottom: 5.5rem;
    }

    /* Bio Page Small Mobile */
    .bio-section {
        padding: 10rem 1.5rem 2rem 1.5rem;
    }

    .bio-container {
        gap: 2rem;
    }

    .bio-content h1 {
        font-size: 1.75rem;
    }
}

/* ==================== */
/* FOOTER               */
/* ==================== */

.home-page .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    z-index: 100;
    margin-top: 0;
}

.content-page .footer {
    position: relative;
    bottom: auto;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    z-index: 100;
    margin-top: auto;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
    font-family: 'futura-pt', sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1em;
}

.footer a {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
    font-family: 'futura-pt', sans-serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.1em;
}

/* Updated Footer for legal pages */
.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Changed: pushes items to edges */
    align-items: center; /* Changed: vertical center alignment */
    max-width: 2500px; /* Optional: contain on large screens */
    margin: 0 auto; /* Optional: center the footer content */
}

.footer-links {
    display: flex;
    gap: 0.4rem;
    align-items: center; /* Changed: proper alignment */
    order: -1; /* Changed: moves links to the left */
}

.footer-links a {
    color: #b1b1b1;
    text-decoration: none;
    font-size: 0.7rem; /* Changed: increased from 0.4rem for readability */
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ca0030;
}

.footer-links span {
    color: #b1b1b1;
    font-size: 0.7rem;
    font-style: normal;
}

/* Mobile */
@media (max-width: 768px) {
    .footer p {
        font-size: 0.6rem;
    }

    .footer-links a {
        font-size: 0.5rem;
    }

    .footer-links span {
        color: #666;
        font-size: 0.6rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer p {
        font-size: 0.5rem;
    }

    .footer-links a {
        font-size: 0.4rem;
    }

    .footer-links span {
        color: #666;
        font-size: 0.4rem;
    }
}

/* ==================== */
/* LEGAL PAGES          */
/* ==================== */
.legal-section {
    flex: 1;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 3rem 3rem 3rem;
}

.legal-container {
    max-width: 900px;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(202, 0, 48, 0.3);
    border-radius: 8px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-container h1 {
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.8rem;
    color: #ca0030;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-updated {
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
}

.legal-content h2 {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.legal-content h3 {
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: #ca0030;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.legal-content strong {
    color: #ffffff;
    font-weight: bold;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .legal-container {
        padding: 2.5rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }
}

/* Responsive - Mobile (Tablet and larger phones) */
@media (max-width: 768px) {
    .legal-section {
        padding: 6rem 1.5rem 2rem 1.5rem;
    }

    .legal-container {
        padding: 2rem;
    }

    .legal-container h1 {
        font-size: 1.75rem;
    }

    .legal-content {
        font-size: 0.95rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }

    .legal-content ul {
        margin-left: 1.5rem;
    }
}

/* Small Mobile - Full Width */
@media (max-width: 480px) {
    .legal-section {
        padding: 6rem 0 2rem 0; /* Zero horizontal padding */
    }

    .legal-container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 1.5rem;
        border-radius: 0; /* Remove rounded corners */
        border-left: none; /* Remove side borders */
        border-right: none; /* Remove side borders */
    }

    .legal-container h1 {
        font-size: 1.5rem;
    }

    .legal-content {
        font-size: 0.9rem;
    }

    .legal-content ul {
        margin-left: 1rem;
    }
}