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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #8B4A47 0%, #5A2C2A 50%, #3A1B1A 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

/* Hero Text Styles */
.hero-text {
    z-index: 2;
}

.title-image-container {
    margin-bottom: -10rem;
    text-align: left;
}

.title-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.album-info {
    margin-bottom: 2.5rem;
}

.presentation {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.premiere {
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 300;
    opacity: 0.9;
}

/* Event Date Styling */
.event-date {
    margin-bottom: 2.5rem;
}

.date-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.time-badge {
    background: white;
    color: #8B4A47;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

/* Venue Information */
.venue-info {
    margin-bottom: 3rem;
}

.venue-logo {
    margin-bottom: 1rem;
}

.karibe-logo-img {
    max-height: 110px;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.venue-details {
    margin-top: 1rem;
}

.address {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.rsvp {
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 400;
    opacity: 0.9;
}

.rsvp a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.rsvp a:hover {
    border-color: white;
}

/* Sponsors Inline Section */
.sponsors-inline {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sponsors-inline .sponsor-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-style: italic;
    text-align: left;
}

.sponsors-inline .sponsors-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sponsors-inline .sponsors-image {
    max-width: 120%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.watch-live-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #2A1A1A;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.05em;
}

.watch-live-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.live-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Hero Image */
.hero-image-desktop {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-image-mobile {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.artist-photo {
    width: 600px;
    height: 720px;
    background: url('images/lb_photo.png') center/cover no-repeat;
    background-size: contain;
    position: relative;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.crown-logo {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    max-height: 80px;
    width: auto;
    z-index: 10;
    /* filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)); */
}

/* Sponsors Section */
.sponsors {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-top: 0;
}

.sponsors-container {
    text-align: center;
}

.sponsor-note {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sponsors-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #2A1A1A, #1A1010);
    margin: 5vh auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1000px;
    max-height: 85vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: transparent;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    border-bottom: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.close {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-body {
    padding: 0;
    height: 85vh;
    min-height: 400px;
}

#eventLiveContainer {
    width: 100%;
    height: 100%;
}

/* EventLive Embed Styles */
.eventlive-embed {
    padding-bottom: 56.25%;
    position: relative;
    margin: 0 auto;
    height: 100%;
}

.eventlive-embed iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    border: none;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero {
        padding: 1rem;
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    /* Show mobile image, hide desktop */
    .hero-image-mobile {
        display: flex;
        margin-bottom: -2rem;
    }
    
    .hero-image-desktop {
        display: none;
    }
    
    .hero-image-mobile .artist-photo {
        width: 300px;
        height: 375px;
    }
    
    .title-image {
        max-height: 220px;
    }
    
    .title-image-container {
        margin-bottom: -5rem;
        text-align: center;
    }
    
    .karibe-logo-img {
        max-height: 60px;
        max-width: 250px;
    }
    
    .hero-image-desktop .artist-photo {
        width: 480px;
        height: 600px;
    }
    
    .crown-logo {
        max-height: 60px;
        top: -25px;
    }
    
    .sponsors-inline .sponsors-grid {
        justify-content: center;
    }
    
    .sponsors-inline .sponsors-image {
        max-height: 60px;
    }
    
    .modal-content {
        width: 98%;
        margin: 2vh auto;
        max-height: 96vh;
        border-radius: 10px;
    }
    
    .modal-body {
        height: 96vh;
        min-height: 400px;
    }
    
    .close {
        font-size: 2rem;
        width: 40px;
        height: 40px;
        padding: 0.25rem;
    }
}

@media only screen and (max-width: 576px) {
    .eventlive-embed {
        min-height: 630px;
        padding-bottom: 0;
    }
    
    .eventlive-embed iframe {
        position: static;
        min-height: 630px;
    }
    
    .title-image {
        max-height: 180px;
    }
    
    .karibe-logo-img {
        max-height: 50px;
        max-width: 200px;
    }
    
    .hero-image-mobile .artist-photo {
        width: 280px;
        height: 350px;
    }
    
    .crown-logo {
        max-height: 50px;
        top: -20px;
    }
    
    .sponsors-inline .sponsors-image {
        max-height: 50px;
    }
    
    .sponsors {
        padding: 2rem 1rem;
    }
    
    .sponsors-image {
        max-height: 80px;
    }
    
    .watch-live-btn {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-text > *:nth-child(4) { animation-delay: 0.6s; }
.hero-text > *:nth-child(5) { animation-delay: 0.8s; }
.hero-text > *:nth-child(6) { animation-delay: 1s; }