* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4A574;
    --dark-bg: #0A0A0A;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --overlay-dark: rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0 80px 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.logo {
    text-align: center;
}

.logo img {
    height: 160px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #C89563;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    position: relative;
}

.hero-accent-line {
    position: absolute;
    top: 25%;
    left: 15%;
    width: 120px;
    height: 6px;
    background-color: var(--primary-gold);
}

.hero-title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.hero-title-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-quote {
    position: absolute;
    top: 25%;
    right: 100px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.quote-icon {
    font-size: 140px;
    color: var(--primary-gold);
    line-height: 0.7;
    font-family: Georgia, serif;
    font-weight: bold;
    order: 2;
    margin-top: -30px;
}

.quote-text {
    font-size: 42px;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.2;
    font-weight: 300;
    order: 1;
}

.hero-info-bar {
    background-color: rgba(13, 27, 62, 0.95);
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
    font-size: 18px;
    justify-content: center;
    padding: 30px 60px;
    position: relative;
    flex: 1;
}

.info-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.info-item:last-child::after {
    display: none;
}

.info-item .icon {
    color: var(--primary-gold);
}

.cta-button {
    background: linear-gradient(90deg, #FDB441 0%, #F7931E 100%);
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border-radius: 4px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 180, 65, 0.5);
}

/* Event Details Section */
.event-details {
    padding: 100px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.5;
}

.section-title {
    font-size: 56px;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 80px;
    text-transform: capitalize;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

/* Left Card */
.event-card-left {
    padding: 0;
}

.event-title {
    margin-bottom: 30px;
}

.title-top {
    display: block;
    color: var(--primary-gold);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.title-bottom {
    display: block;
    color: var(--primary-gold);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-style: italic;
}

.event-info {
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 12px;
}

.info-icon {
    color: var(--primary-gold);
}

.get-directions-btn {
    background: linear-gradient(90deg, #FDB441 0%, #F7931E 100%);
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.get-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 180, 65, 0.5);
}

.countdown {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 56px;
    color: var(--primary-gold);
    font-weight: 900;
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    color: var(--text-white);
    text-transform: capitalize;
    margin-top: 5px;
}

.countdown-divider {
    font-size: 56px;
    color: var(--primary-gold);
    font-weight: 300;
}

.event-promo {
    color: var(--text-white);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.buy-tickets-btn {
    background: linear-gradient(90deg, #FDB441 0%, #F7931E 100%);
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border-radius: 4px;
}

.buy-tickets-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 180, 65, 0.5);
}

/* Right Card */
.event-card-right {
    position: relative;
}

/* Poster Container */
.poster-container {
    position: relative;
    margin-bottom: 20px;
    height: 600px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-poster {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: block;
}

.add-calendar-btn {
    background: linear-gradient(90deg, #FDB441 0%, #F7931E 100%);
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    width: 100%;
    border-radius: 4px;
}

.add-calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 180, 65, 0.5);
}

/* Features Bar */
.features-bar {
    background-color: rgba(13, 27, 62, 0.95);
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    width: 100%;
    margin: 0;
    min-height: 100px;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-white);
    font-size: 16px;
    flex: 1;
    padding: 30px 40px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.cta-header-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 40px 0;
}

.cta-header {
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    align-items: stretch;
    width: 100%;
    min-height: 160px;
    position: relative;
}

.cta-box {
    display: flex;
    align-items: center;
    padding: 25px 60px;
}

.cta-box:nth-child(1) {
    justify-content: flex-start;
}

.cta-box:nth-child(3) {
    justify-content: center;
}

.cta-box:nth-child(5) {
    justify-content: flex-end;
}

.cta-divider {
    background-color: rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
}

.cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-arrow svg {
    transform: rotate(-45deg);
}

.location-map-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 40px 0;
}

.location-map-container {
    position: relative;
    width: 100%;
}

.location-map-container iframe {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.social-bar {
    background-color: #000000;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-gold);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Responsive Design */

/* Extra Large Screens (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Large Tablets and Small Laptops (1024px - 1279px) */
@media (max-width: 1279px) {
    .hero-title-logo {
        max-width: 500px;
    }

    .hero-accent-line {
        width: 100px;
        left: 10%;
    }

    .hero-quote {
        right: 80px;
    }

    .event-grid {
        gap: 40px;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    /* Navigation */
    .logo img {
        height: 120px;
    }

    .nav-menu {
        gap: 30px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    /* Hero Section */
    .hero-title-logo {
        max-width: 450px;
    }

    .hero-accent-line {
        width: 80px;
        left: 5%;
        top: 30%;
    }

    .hero-quote {
        right: 50px;
        top: 20%;
    }

    .quote-icon {
        font-size: 100px;
    }

    .quote-text {
        font-size: 32px;
    }

    .hero-info-bar {
        flex-direction: column;
        min-height: auto;
    }

    .info-item {
        padding: 20px 40px;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }

    .info-item:last-child {
        border-bottom: none;
    }

    /* Event Details */
    .event-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .title-top {
        font-size: 28px;
    }

    .title-bottom {
        font-size: 40px;
    }

    .countdown-number {
        font-size: 48px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* CTA Section */
    .cta-header {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-box {
        padding: 30px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }

    .cta-box:last-child {
        border-bottom: none;
    }

    .cta-divider {
        display: none;
    }

    .cta-title,
    .cta-subtitle {
        font-size: 48px;
    }

    /* Features */
    .features-bar {
        flex-direction: column;
        min-height: auto;
    }

    .feature-item {
        padding: 25px 40px;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

/* Mobile Landscape and Small Tablets (600px - 767px) */
@media (max-width: 767px) {
    /* Navigation */
    .logo img {
        height: 100px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .navbar {
        padding: 15px 0 40px 0;
    }

    .nav-container {
        gap: 25px;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 80vh;
    }

    .hero-main {
        padding: 40px 20px;
    }

    .hero-title-logo {
        max-width: 350px;
    }

    .hero-accent-line {
        display: none;
    }

    .hero-quote {
        position: static;
        margin-top: 30px;
        text-align: center;
    }

    .quote-icon {
        font-size: 80px;
    }

    .quote-text {
        font-size: 24px;
    }

    /* Event Details */
    .section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .title-top {
        font-size: 24px;
    }

    .title-bottom {
        font-size: 32px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-number {
        font-size: 40px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .event-promo {
        font-size: 14px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* CTA */
    .cta-title,
    .cta-subtitle {
        font-size: 40px;
    }

    .cta-arrow svg {
        width: 50px;
        height: 50px;
    }
}

/* Mobile Portrait (320px - 599px) */
@media (max-width: 599px) {
    /* Base */
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .logo img {
        height: 80px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .navbar {
        padding: 15px 0 30px 0;
    }

    /* Hero Section */
    .hero {
        min-height: 70vh;
    }

    .hero-main {
        padding: 30px 15px;
    }

    .hero-title-logo {
        max-width: 280px;
    }

    .hero-quote {
        margin-top: 20px;
    }

    .quote-icon {
        font-size: 60px;
    }

    .quote-text {
        font-size: 20px;
    }

    .hero-info-bar {
        padding: 0;
    }

    .info-item {
        padding: 15px 20px;
        font-size: 14px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 12px;
    }

    /* Event Details */
    .event-details {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .title-top {
        font-size: 20px;
    }

    .title-bottom {
        font-size: 28px;
    }

    .event-info {
        margin-bottom: 20px;
    }

    .info-row {
        font-size: 14px;
    }

    .get-directions-btn,
    .buy-tickets-btn,
    .add-calendar-btn {
        font-size: 12px;
        padding: 10px 25px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-number {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 10px;
    }

    .countdown-divider {
        font-size: 32px;
    }

    .event-promo {
        font-size: 13px;
    }

    .ticket-poster {
        margin-bottom: 15px;
    }

    /* Features Bar */
    .features-bar {
        min-height: auto;
    }

    .feature-item {
        padding: 20px;
        font-size: 14px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Gallery */
    .gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* CTA Section */
    .cta-header-wrapper,
    .location-map-wrapper,
    .features-bar-wrapper {
        padding: 20px 0;
    }

    .cta-box {
        padding: 20px;
    }

    .cta-title,
    .cta-subtitle {
        font-size: 32px;
    }

    .cta-arrow svg {
        width: 40px;
        height: 40px;
    }

    .location-map-container iframe {
        height: 300px;
    }

    .social-bar {
        padding: 20px 0;
    }

    .social-link {
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 20px 0;
    }

    .footer p {
        font-size: 12px;
    }
}

/* Very Small Mobile (Below 375px) */
@media (max-width: 374px) {
    .hero-title-logo {
        max-width: 240px;
    }

    .quote-icon {
        font-size: 50px;
    }

    .quote-text {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .title-bottom {
        font-size: 24px;
    }

    .countdown-number {
        font-size: 28px;
    }

    .cta-title,
    .cta-subtitle {
        font-size: 28px;
    }

    .info-item {
        font-size: 12px;
    }

    .feature-item {
        font-size: 12px;
    }
}
