/* ==================== CSS RESET & VARIABLES ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Wizkid Cinematic Palette */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --accent: #c9a962;
    --accent-glow: rgba(201, 169, 98, 0.5);
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-darker: rgba(0, 0, 0, 0.92);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 15px;

    /* Typography - Two Unique Complementary Fonts */
    --font-heading: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Logo Red Border */
    --logo-border: #ff0000;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1400px;

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== FIXED LOGO WATERMARK - ENHANCED ==================== */
@keyframes watermarkPulse {

    0%,
    100% {
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.12;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

.bg-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    max-width: 1200px;
    max-height: 1200px;
    background-image: url('logo.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    filter: brightness(2) invert(1);
    animation: watermarkPulse 8s ease-in-out infinite;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background - Animated Gradient */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(20, 0, 0, 1) 25%,
            rgba(0, 0, 0, 1) 50%,
            rgba(30, 0, 0, 1) 75%,
            rgba(0, 0, 0, 1) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Epic Logo Entrance Animation - Dramatic 3D Effect */
@keyframes epicLogoReveal {
    0% {
        opacity: 0;
        transform: scale(2.5) rotateY(180deg) translateZ(-200px);
        filter: blur(20px) brightness(3);
    }

    30% {
        opacity: 0.7;
        transform: scale(1.5) rotateY(90deg) translateZ(-100px);
        filter: blur(10px) brightness(2);
    }

    60% {
        opacity: 0.9;
        transform: scale(0.9) rotateY(-15deg) translateZ(0);
        filter: blur(2px) brightness(1.5);
    }

    80% {
        transform: scale(1.05) rotateY(5deg);
        filter: blur(0) brightness(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) translateZ(0);
        filter: blur(0) brightness(1);
    }
}

@keyframes logoBorderGlow {

    0%,
    100% {
        box-shadow:
            0 0 30px var(--logo-border),
            0 0 60px rgba(255, 0, 0, 0.5),
            inset 0 0 30px rgba(255, 0, 0, 0.1);
    }

    50% {
        box-shadow:
            0 0 50px var(--logo-border),
            0 0 100px rgba(255, 0, 0, 0.7),
            inset 0 0 50px rgba(255, 0, 0, 0.2);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: clamp(120px, 25vw, 280px);
    height: auto;
    margin-bottom: 5px;
    animation:
        epicLogoReveal 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
        logoGlowPulse 3s ease-in-out 2.5s infinite,
        float 4s ease-in-out 3s infinite;
    /* Red outline that follows the image contours */
    filter:
        drop-shadow(0 0 3px #ff0000) drop-shadow(0 0 6px #ff0000) drop-shadow(0 0 12px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 25px rgba(255, 0, 0, 0.5));
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Logo glow animation - pulses the red outline */
@keyframes logoGlowPulse {

    0%,
    100% {
        filter:
            drop-shadow(0 0 3px #ff0000) drop-shadow(0 0 6px #ff0000) drop-shadow(0 0 12px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 25px rgba(255, 0, 0, 0.5));
    }

    50% {
        filter:
            drop-shadow(0 0 5px #ff0000) drop-shadow(0 0 10px #ff0000) drop-shadow(0 0 20px rgba(255, 0, 0, 0.9)) drop-shadow(0 0 40px rgba(255, 0, 0, 0.7));
    }
}

/* New Hero Title Image */
.hero-title-img {
    width: clamp(200px, 60vw, 600px);
    height: auto;
    margin-bottom: 25px;
    animation: fadeInUp 1.5s ease 0.6s backwards;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* Footer Logo with Glow */
.footer-logo {
    width: 60px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    /* Red outline that follows the image contours - exactly like hero logo */
    filter:
        drop-shadow(0 0 3px #ff0000) drop-shadow(0 0 6px #ff0000) drop-shadow(0 0 12px rgba(255, 0, 0, 0.8));
    animation: logoGlowPulse 3s ease-in-out infinite;
}

.hero-title {
    display: none;
    /* Hide old text title just in case */
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease 0.6s backwards;
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.2);
}

/* Hero Social Icons */
.hero-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    animation: fadeInUp 1.5s ease 1.2s backwards;
}

.hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

.hero-social a:hover {
    color: #ff0000;
    transform: translateY(-3px);
}

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

/* Book Now Button */
.booking-btn {
    display: inline-block;
    padding: 16px 50px;
    background: transparent;
    border: 2px solid var(--logo-border);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: fadeInUp 1.5s ease 0.9s backwards;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--logo-border);
    transition: var(--transition-smooth);
    z-index: -1;
}

.booking-btn:hover {
    color: #fff;
    border-color: var(--logo-border);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.booking-btn:hover::before {
    left: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: scrollBounce 2.5s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.2;
    }
}

/* ==================== LATEST RELEASE SECTION ==================== */
.latest-release {
    background: transparent;
    position: relative;
}

.release-wrapper {
    display: flex;
    justify-content: center;
}

.release-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 80%;
    max-width: 800px;
    transition: var(--transition-smooth);
}

.release-link:hover {
    transform: translateY(-10px);
}

.release-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.release-artwork {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
    filter: grayscale(30%);
}

.release-link:hover .release-artwork {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 40px;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.play-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px var(--accent-glow));
}

.release-text {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    font-size: 0.9rem;
}

.release-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-top: 35px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.release-subtitle {
    font-family: var(--font-body);
    text-align: center;
    color: var(--text-secondary);
    margin-top: 10px;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
}

/* ==================== MEDIA GALLERY SECTION ==================== */
.media-gallery {
    background: transparent;
}

.gallery-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin: 100px 0 50px;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Video Grid - Glassmorphism */
/* Video Grid - 2 column layout for 4 videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
}

/* Video Grid - Updated Layout */
.video-item {
    position: relative;
    border-radius: 12px;
    background: transparent;
    transition: var(--transition-smooth);
    margin-bottom: 20px;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

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

.video-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
}

.video-action {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Photo Grid - Premium Gallery - 3 column layout for 12 photos */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
}

/* First photo takes 2x2 space */
.photo-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(40%);
}

.photo-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 50%,
            rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.photo-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

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

/* ==================== FOOTER ==================== */
.footer {
    background: transparent;
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

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

.social-icon:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px var(--accent-glow);
    border-color: var(--accent);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

/* Hidden in Plain Sight */
.creator-credit {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.4em;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.creator-credit:hover {
    color: var(--text-muted);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-darker);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--text-primary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--text-primary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

/* ==================== ENHANCED ANIMATIONS ==================== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 169, 98, 0.4);
    }
}

/* Apply animations to elements */
.section-title {
    animation: revealUp 1s ease backwards;
}

.release-card {
    animation: scaleIn 0.8s ease 0.3s backwards;
}

.video-grid {
    animation: revealUp 1s ease 0.2s backwards;
}

.photo-grid {
    animation: revealUp 1s ease 0.4s backwards;
}

.video-item:nth-child(1) {
    animation: slideInLeft 0.6s ease 0.2s backwards;
}

.video-item:nth-child(2) {
    animation: revealUp 0.6s ease 0.3s backwards;
}

.video-item:nth-child(3) {
    animation: slideInRight 0.6s ease 0.4s backwards;
}

.photo-item:nth-child(1) {
    animation: scaleIn 0.5s ease 0.1s backwards;
}

.photo-item:nth-child(2) {
    animation: slideInRight 0.5s ease 0.15s backwards;
}

.photo-item:nth-child(3) {
    animation: slideInRight 0.5s ease 0.2s backwards;
}

.photo-item:nth-child(4) {
    animation: slideInRight 0.5s ease 0.25s backwards;
}

.photo-item:nth-child(5) {
    animation: revealUp 0.5s ease 0.3s backwards;
}

.photo-item:nth-child(6) {
    animation: revealUp 0.5s ease 0.35s backwards;
}

.photo-item:nth-child(7) {
    animation: revealUp 0.5s ease 0.4s backwards;
}

.photo-item:nth-child(8) {
    animation: revealUp 0.5s ease 0.45s backwards;
}

.photo-item:nth-child(9) {
    animation: slideInLeft 0.5s ease 0.5s backwards;
}

.photo-item:nth-child(10) {
    animation: revealUp 0.5s ease 0.55s backwards;
}

.photo-item:nth-child(11) {
    animation: revealUp 0.5s ease 0.6s backwards;
}

.photo-item:nth-child(12) {
    animation: slideInRight 0.5s ease 0.65s backwards;
}

.social-icon {
    animation: scaleIn 0.4s ease backwards;
}

.social-icon:nth-child(1) {
    animation-delay: 0.1s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.15s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.2s;
}

.social-icon:nth-child(4) {
    animation-delay: 0.25s;
}

.social-icon:nth-child(5) {
    animation-delay: 0.3s;
}

/* Shimmer effect on hover for release artwork */
.release-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.release-link:hover .release-card::after {
    opacity: 1;
    animation: shimmer 1.5s ease infinite;
}

/* Glow effect on social icons hover */
.social-icon:hover {
    animation: glowPulse 1s ease infinite;
}

/* ==================== RESPONSIVE DESIGN - ENHANCED ==================== */

/* Large Desktops */
@media (min-width: 1400px) {
    .bg-watermark {
        width: 100vw;
        height: 100vw;
        max-width: 1600px;
        max-height: 1600px;
    }

    .hero-logo {
        width: clamp(200px, 20vw, 320px);
    }

    .release-link {
        max-width: 1000px;
    }
}

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .bg-watermark {
        width: 140vw;
        height: 140vw;
    }

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets Portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .bg-watermark {
        width: 160vw;
        height: 160vw;
        animation: watermarkPulse 10s ease-in-out infinite;
    }

    .section-title {
        letter-spacing: 0.25rem;
        margin-bottom: 50px;
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .hero-title {
        letter-spacing: 0.15rem;
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .hero-logo {
        width: clamp(100px, 35vw, 180px);
        margin-bottom: 25px;
        padding: 10px;
        border-width: 3px;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    .release-link {
        width: 95%;
        max-width: none;
    }

    .video-grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
    }

    .photo-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .gallery-subtitle {
        margin: 60px 0 30px;
        font-size: 1rem;
        letter-spacing: 0.3em;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .footer {
        padding: 60px 0 40px;
    }

    .social-links {
        gap: 15px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .bg-watermark {
        width: 200vw;
        height: 200vw;
        opacity: 0.03;
    }

    .section-title {
        letter-spacing: 0.15rem;
        margin-bottom: 40px;
        font-size: 1.1rem;
    }

    .section-title::after {
        bottom: -15px;
        width: 50px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        /* Safari viewport fix */
    }

    .hero-title {
        letter-spacing: 0.1rem;
        font-size: clamp(1.8rem, 12vw, 3rem);
    }

    .hero-logo {
        width: clamp(80px, 30vw, 120px);
        margin-bottom: 20px;
        filter:
            drop-shadow(0 0 2px #ff0000) drop-shadow(0 0 4px #ff0000) drop-shadow(0 0 10px rgba(255, 0, 0, 0.6));
    }

    .booking-btn {
        padding: 12px 30px;
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-indicator span {
        width: 22px;
        height: 36px;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    .release-link {
        width: 100%;
    }

    .release-card {
        border-radius: 12px;
    }

    .release-title {
        font-size: 1.1rem;
        letter-spacing: 0.12em;
        margin-top: 25px;
    }

    .release-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .release-overlay {
        padding-bottom: 25px;
    }

    .play-icon {
        font-size: 3.5rem;
    }

    .release-text {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .video-grid {
        padding: 12px;
        gap: 15px;
        border-radius: 15px;
    }

    .video-item {
        border-radius: 10px;
    }

    .photo-grid {
        padding: 10px;
        gap: 6px;
        border-radius: 15px;
    }

    .photo-item {
        border-radius: 8px;
    }

    .social-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .gallery-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.25em;
        margin: 50px 0 25px;
    }

    .footer {
        padding: 50px 0 35px;
    }

    .copyright {
        font-size: 0.75rem;
    }

    .creator-credit {
        font-size: 0.55rem;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 80vh;
        border-radius: 8px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
        letter-spacing: 0.1rem;
    }

    .hero-logo {
        width: 90px;
    }

    .section-title {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }

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

/* Landscape Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }

    .hero-logo {
        width: 80px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

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

    .scroll-indicator {
        display: none;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .bg-watermark {
        animation: none;
    }

    .hero-logo {
        animation: none;
        opacity: 1;
    }
}