:root {
    --main-bg: #1c224f;
    --section-bg: #202b5f;
    --secondary: #62c2a2;
    --text-light: #f8f9fa;
    --text-dark: #1a1a1a;
    --max-width: 900px;
    --section-padding: 6rem 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--main-bg);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(28, 34, 79, 0.92);
    padding: 14px 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.navbar-container {
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo { max-width: 40px; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.6rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--secondary); }

.hero {
    position: relative;
    background-image: url("../images/background.jpeg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 5%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 34, 79, 0.6);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.accent { color: var(--secondary); }

.section {
    width: 100%;
    padding: var(--section-padding);
    text-align: center;
    margin: 3rem 0;
    background-color: var(--section-bg);
    color: var(--text-light);
    position: relative;
}

#about, #tickets {
    background-color: #ffffff;
    color: #000000;
    margin: 3rem 0;
    padding: 4rem 2rem;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

#about > *, #tickets > * {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

#about h2, #tickets h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary);
}

#about p, #tickets p.intro, .ticket-list li, .ticket-note p {
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.ticket-list {
    padding-left: 1.5rem;
}

.ticket-list li {
    margin-bottom: 0.5rem;
}

.ticket-note {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background-color: rgba(98, 194, 162, 0.12);
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
}

#tickets .btn {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

#about::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #62c2a2;
    border-radius: 50%;
    top: -125px;
    left: -125px;
    z-index: 0;
}

#about::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #62c2a2;
    border-radius: 50%;
    bottom: -125px;
    right: -125px;
    z-index: 0;
}

#tickets::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #62c2a2;
    border-radius: 50%;
    top: -125px;
    left: -125px;
    z-index: 0;
}

#tickets::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #62c2a2;
    border-radius: 50%;
    bottom: -125px;
    right: -125px;
    z-index: 0;
}

#about h2, #about p, #tickets h2, #tickets p, #tickets ul, #tickets .ticket-note, #tickets .btn {
    position: relative;
    z-index: 1;
}

.trailer-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.trailer-img {
    max-width: 850px;
    width: 92%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(98, 194, 162, 0.35);
}

#map {
    padding: var(--section-padding);
    text-align: center;
}

.map-container {
    max-width: var(--max-width);
    height: 500px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    margin-top: 1rem;
    transition: 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover { background-color: #50a88a; }

form {
    max-width: 500px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--secondary);
    background-color: rgba(255,255,255,0.08);
    color: #000;
    font-size: 1rem;
}

input::placeholder, textarea::placeholder { color: rgba(0,0,0,0.5); }

input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 8px rgba(98, 194, 162, 0.3);
}

footer {
    background-color: #ffffff;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #000000;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 3.5rem; }
    .trailer-img { width: 100%; }
    #about, #tickets { padding: 3rem 1.5rem; }
    .map-container { height: 350px; }
}