:root {
    --bg-color-dark: #0f243d;
    --bg-color-main: #1B4375;
    --bg-color-light: #255a9e;
    
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    
    --accent-red: #A63E3D;
    --accent-red-hover: #c44746;
    --accent-red-glow: rgba(166, 62, 61, 0.4);
    
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(166, 62, 61, 0.3);
    
    --blur-radius: 16px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at top right, var(--bg-color-light) 0%, var(--bg-color-main) 40%, var(--bg-color-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Add a sleek modern grid overlay */
.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
    animation: float 12s ease-in-out infinite alternate;
}

.blob-1 {
    top: -10%;
    right: 5%;
    width: 35vw;
    height: 35vw;
    background: var(--accent-red);
}

.blob-2 {
    bottom: -15%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: #3e8ced;
    animation-delay: -5s;
    opacity: 0.15;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 25vw;
    height: 25vw;
    background: var(--accent-red);
    opacity: 0.1;
    animation-delay: -2s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(40px) scale(1.1) rotate(5deg); }
}

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

/* Header */
.header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15, 36, 61, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(-10deg);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #FFFFFF, #cfd9e8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text .dot {
    color: var(--accent-red);
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    padding-bottom: 4rem;
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 850px;
    margin: 2rem auto 5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: rgba(166, 62, 61, 0.1);
    color: #ff9a99;
    border: 1px solid rgba(166, 62, 61, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(166, 62, 61, 0.2);
    box-shadow: inset 0 0 10px rgba(166, 62, 61, 0.1);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 200%; }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #a4bde0 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.status-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.booking-status {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.25rem;
}

.seats-warning {
    color: #ff9a99;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.seats-warning::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 12px 2px var(--accent-red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 12px 2px var(--accent-red); }
    50% { transform: scale(1.5); opacity: 0.6; box-shadow: 0 0 20px 5px var(--accent-red); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 12px 2px var(--accent-red); }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--accent-red), #842f2e);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(166, 62, 61, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(166, 62, 61, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
    background: linear-gradient(135deg, var(--accent-red-hover), var(--accent-red));
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 62, 61, 0.4);
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--blur-radius));
    -webkit-backdrop-filter: blur(var(--blur-radius));
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(166, 62, 61, 0.8), transparent);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(166, 62, 61, 0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 20px rgba(166, 62, 61, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(166, 62, 61, 0.05);
    border-color: rgba(166, 62, 61, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item svg {
    color: var(--accent-red);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover svg {
    transform: scale(1.1);
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0f243d;
    position: relative;
    transform: translateZ(0); /* For proper layering */
}

.map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    pointer-events: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%) saturate(0%);
    transition: all 0.4s ease;
    display: block; /* Fix inline block gap */
}

.map-container:hover iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(100%) saturate(100%);
    transform: scale(1.02);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 300;
    position: relative;
    z-index: 10;
    background: rgba(15, 36, 61, 0.8);
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }
    .main-content {
        padding-top: 130px;
    }
}

@media (max-width: 860px) {
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .hero {
        margin: 2rem auto 3rem;
    }
    
    .card {
        padding: 2rem;
    }

    .blob-1 { width: 50vw; height: 50vw; right: -10%; }
    .blob-2 { width: 60vw; height: 60vw; left: -20%; }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1rem 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .main-content {
        padding-top: 110px;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .card {
        padding: 1.5rem;
    }

    .card h2 {
        font-size: 1.5rem;
    }

    .card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-item span {
        font-size: 1rem;
        word-break: break-all;
    }

    .map-container {
        height: 200px;
    }
    
    .status-group {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .btn-primary {
        padding: 0.9rem 2rem;
    }
}
