/*
Theme Name: Paul Alexander Nolan Theme
Theme URI: https://paulalexandernolan.com
Author: Custom Theme
Author URI: https://paulalexandernolan.com
Description: A custom WordPress theme replicating the Paul Alexander Nolan official website - a clean, elegant actor portfolio site.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paul-nolan-theme
*/

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

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #666;
    background-color: #000;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: #2ea3f2;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    padding-bottom: 10px;
    line-height: 1em;
    font-weight: 500;
}

h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
    padding-bottom: 1em;
}

p:last-of-type {
    padding-bottom: 0;
}

ul, ol {
    list-style: none;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-name {
    font-family: 'Akshar', sans-serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    animation: spin 1s linear infinite, fadeIn 0.5s ease 0.3s forwards;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   LAYOUT CONTAINER
   ======================================== */
.container {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ========================================
   HEADER SECTION
   ======================================== */
.site-header {
    position: absolute;
    width: 100%;
    z-index: 100;
    background-color: transparent;
}

.header-section {
    padding: 27px 0;
}

.header-row {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}

.header-title h1 {
    font-family: 'Akshar', sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    padding-bottom: 0;
    margin: 0;
}

/* ========================================
   HERO SECTION - 80vh with fade
   ======================================== */
.hero-section {
    background-color: #000000;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

/* Gradient fade to black at bottom */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   PHOTOS SECTION - Equal Heights + Hover + Centered
   ======================================== */
.photos-section {
    background-color: #000000;
    padding: 54px 0;
}

.photos-section .container {
    max-width: 80%;
    margin: 0 auto;
}

.photos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    justify-content: center;
}

.photo-column {
    width: 48%;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    background-color: #000;
}

.photo-column img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    cursor: pointer;
}

.photo-column:hover img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* ========================================
   RESUME COLUMN STYLES
   ======================================== */
.resume-column {
    width: 48%;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 700px;
    background-color: #0a0a0a;
    padding: 30px;
}

.resume-content {
    width: 100%;
    max-width: 600px;
    color: #fff;
}

.resume-section {
    margin-bottom: 24px;
}

.resume-category {
    font-family: 'Akshar', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.resume-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 6px 0;
    font-size: 11px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.resume-item:last-of-type {
    border-bottom: none;
}

.resume-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.02em;
}

.resume-role {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.resume-venue {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
    font-size: 10px;
}

.resume-note {
    color: #c9a227;
    font-weight: 600;
}

.resume-notes {
    margin-top: 8px;
    padding-top: 8px;
}

.resume-note-text {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 2px;
}

.resume-note-text .resume-note {
    font-style: normal;
}

.resume-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.resume-instruments {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.resume-instruments em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

/* Resume scroll for overflow */
.resume-content {
    max-height: 640px;
    overflow-y: auto;
    padding-right: 10px;
}

.resume-content::-webkit-scrollbar {
    width: 4px;
}

.resume-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.resume-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.resume-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   LIGHTBOX FOR ENLARGED IMAGES
   ======================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Tap hint on mobile */
.photo-column::after {
    content: 'Tap to enlarge';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.photo-column {
    position: relative;
}

@media (hover: none) {
    .photo-column::after {
        opacity: 0.7;
    }
}

/* ========================================
   CAST RECORDINGS - HORIZONTAL SCROLLER
   ======================================== */
.recordings-section {
    background-color: #000000;
    padding: 54px 0;
    overflow: hidden;
    position: relative;
}

.recordings-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.recordings-section .section-title h3 {
    font-family: 'Akshar', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    padding-bottom: 0;
}

/* Horizontal scroll container */
.albums-scroller-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.albums-scroller {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    padding-left: calc((100vw - 1080px) / 2);
    padding-right: calc((100vw - 1080px) / 2);
    width: max-content;
}

/* Individual album card - LARGER SIZE */
.album-card {
    flex: 0 0 280px;
    width: 280px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .album-card:first-child {
        margin-left: 10%;
    }
    .album-card:last-child {
        margin-right: 10%;
    }
}

.album-card:hover {
    transform: scale(1.15);
    z-index: 10;
}

.album-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.4s ease;
}

.album-card:hover img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* ========================================
   LIQUID GLASS OVERLAY
   ======================================== */
.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
    overflow: hidden;
}

/* Liquid glass effect */
.album-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1;
}

/* Glass shine effect */
.album-overlay::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
}

.album-card:hover .album-overlay::after {
    transform: translateX(100%);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

/* Streaming service links */
.album-overlay a {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.album-overlay a:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.2);
}

.album-overlay a i {
    font-size: 32px;
    margin-bottom: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.album-overlay a span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Apple Music button */
.album-overlay a.apple-music {
    color: #fff;
}

.album-overlay a.apple-music i {
    color: #fc3c44;
}

/* Spotify button */
.album-overlay a.spotify {
    color: #fff;
}

.album-overlay a.spotify i {
    color: #1db954;
}

/* ========================================
   FOOTER SECTION - INVERTED IMAGE
   ======================================== */
.site-footer {
    background-color: #000000;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

/* Invert the background image colors */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: inherit;
    background-position: inherit;
    filter: invert(1);
    opacity: 0.8;
    z-index: 0;
}

/* Dark overlay on top of inverted image */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Inquiries Section */
.footer-inquiries {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.footer-inquiries .inquiries-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-inquiries .inquiries-title-column {
    width: 33.333%;
}

.footer-inquiries .inquiries-title-column h1 {
    font-family: 'Akshar', sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    padding-bottom: 0;
}

.footer-inquiries .contact-column {
    width: 33.333%;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
}

.footer-inquiries .contact-column h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 10px;
}

.footer-inquiries .contact-column p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.8em;
    padding-bottom: 0.5em;
}

/* Footer Main with Name and Social */
.footer-main {
    padding: 60px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-title h1 {
    font-family: 'Akshar', sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    padding-bottom: 0;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Credit */
.footer-credit {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-credit p {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 0;
    margin: 0;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #fff;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 980px) {
    .container,
    .header-row {
        width: 90%;
    }
    
    .photo-column {
        width: 100%;
        margin-bottom: 30px;
        height: 500px;
    }
    
    .photo-column img {
        height: 100%;
    }
    
    .resume-column {
        width: 100%;
        margin-bottom: 30px;
        min-height: auto;
        padding: 25px 20px;
    }
    
    .resume-content {
        max-height: none;
        overflow-y: visible;
    }
    
    .resume-item {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 8px 0;
    }
    
    .resume-role,
    .resume-venue {
        text-align: left;
    }
    
    .resume-venue {
        font-size: 9px;
        opacity: 0.7;
    }
    
    .album-card {
        flex: 0 0 240px;
        width: 240px;
    }
    
    .album-card:first-child {
        margin-left: 5%;
    }
    
    .album-card:last-child {
        margin-right: 5%;
    }
    
    .footer-inquiries .inquiries-title-column,
    .footer-inquiries .contact-column {
        width: 100%;
        margin-bottom: 30px;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 20px;
    }
    
    .footer-inquiries .inquiries-title-column {
        border-top: none;
        padding-top: 0;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .header-title h1 {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .photo-column {
        height: 400px;
    }
    
    .album-card {
        flex: 0 0 200px;
        width: 200px;
    }
    
    .album-overlay a i {
        font-size: 24px;
    }
    
    .album-overlay a span {
        font-size: 8px;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-close {
        top: -50px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-title h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .footer-inquiries .inquiries-title-column h1 {
        font-size: 24px;
    }
    
    .footer-inquiries .contact-column h2 {
        font-size: 16px;
    }
}

/* ========================================
   LOST BOYS PROMOTIONAL POPUP
   ======================================== */
.lostboys-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 15, 47, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
    /* Ensure popup is not affected by Locomotive Scroll */
    transform: none !important;
    will-change: opacity, visibility;
}

.lostboys-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lostboys-popup-container {
    background: linear-gradient(180deg, #03092c 0%, #0a1545 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 0 60px rgba(0, 200, 255, 0.3),
        0 0 100px rgba(255, 50, 50, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.lostboys-popup-overlay.active .lostboys-popup-container {
    transform: scale(1) translateY(0);
}

/* Close button */
.lostboys-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(199, 0, 4, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(199, 0, 4, 0.5);
}

.lostboys-popup-close:hover {
    background: #c70004;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(199, 0, 4, 0.8);
}

/* Image section */
.lostboys-popup-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.lostboys-popup-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lostboys-popup-image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, #03092c 70%);
    pointer-events: none;
}

/* Content section */
.lostboys-popup-content {
    padding: 16px 28px 28px;
    text-align: center;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

/* Preview info block */
.lostboys-popup-preview-info {
    margin-top: 16px;
}

.lostboys-popup-preview-text {
    display: block;
    font-family: 'Akshar', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}

.lostboys-popup-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.lostboys-nederlander-logo {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* Subtitle - Paul description */
.lostboys-popup-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    margin-top: 20px;
    line-height: 1.5;
    padding-bottom: 0;
}

/* Badge - keeping for potential future use */
.lostboys-popup-badge {
    display: inline-block;
    background: linear-gradient(90deg, #c70004 0%, #ff6b35 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* Title */
.lostboys-popup-title {
    font-family: 'Akshar', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffc94e;
    text-shadow: 
        0 0 10px rgba(255, 100, 50, 0.5),
        0 0 20px rgba(255, 50, 50, 0.3);
    margin-bottom: 12px;
    line-height: 1.2;
    padding-bottom: 0;
}

/* Subtitle */
.lostboys-popup-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* CTA Button */
.lostboys-popup-cta {
    display: inline-block;
    background: linear-gradient(90deg, #c70004 0%, #ff3333 100%);
    color: #fff;
    font-family: 'Akshar', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(199, 0, 4, 0.4),
        0 0 30px rgba(199, 0, 4, 0.2);
}

.lostboys-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(199, 0, 4, 0.5),
        0 0 40px rgba(199, 0, 4, 0.3);
    background: linear-gradient(90deg, #e00005 0%, #ff4444 100%);
}

/* Neon glow animation */
@keyframes neonPulse {
    0%, 100% {
        box-shadow: 
            0 0 60px rgba(0, 200, 255, 0.3),
            0 0 100px rgba(255, 50, 50, 0.2),
            0 25px 50px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 0 80px rgba(0, 200, 255, 0.4),
            0 0 120px rgba(255, 50, 50, 0.3),
            0 25px 50px rgba(0, 0, 0, 0.5);
    }
}

.lostboys-popup-overlay.active .lostboys-popup-container {
    animation: neonPulse 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 540px) {
    .lostboys-popup-container {
        max-width: 95%;
    }
    
    .lostboys-popup-content {
        padding: 20px;
    }
    
    .lostboys-popup-title {
        font-size: 22px;
    }
    
    .lostboys-popup-subtitle {
        font-size: 13px;
    }
    
    .lostboys-popup-cta {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
