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

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

/* MAKE NAV RESPONSIVE */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* HERO RESPONSIVE FIX */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}

/* GRID RESPONSIVE FIX */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* NAV STACK */
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        padding-top: 10px;
        gap: 10px;
    }

    /* HERO TEXT */
    .overlay h1 {
        font-size: 32px;
    }

    .overlay p {
        font-size: 16px;
    }

    /* GRID FIX */
    .grid {
        grid-template-columns: 1fr;
    }

    /* HERO HEIGHT */
    .hero {
        height: 70vh;
    }
}
/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0,0,0,0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav h2 {
    font-size: 24px;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: gold;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
}

.overlay h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, gold, orange);
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px gold;
}

/* SECTION STYLING */
section {
    padding: 80px 8%;
}

section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
}

section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: gold;
    position: absolute;
    bottom: -10px;
    left: 0;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #222;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
    font-size: 18px;
}

.card p {
    padding: 0 15px 15px;
    color: #aaa;
}

.card a {
    display: block;
    margin: 10px 15px 15px;
    padding: 8px;
    text-align: center;
    background: gold;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    color: #777;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .overlay h1 {
        font-size: 40px;
    }

    nav ul {
        display: none;
    }
}
/* ABOUT PAGE */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.about-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-text p {
    color: #bbb;
    margin-bottom: 15px;
}

/* CONTACT PAGE */
.contact {
    max-width: 600px;
    margin: auto;
}

.contact h1 {
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    margin-bottom: 15px;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
}

.contact button {
    padding: 12px;
    background: gold;
    border: none;
    color: black;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
}

.contact button:hover {
    background: orange;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .about-container {
        grid-template-columns: 1fr;
    }
}
.movie-page {
    padding: 60px 8%;
    background: #0b0b0b;
    min-height: 100vh;
}

.movie-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.movie-poster img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.movie-info h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.movie-info p {
    color: #ccc;
    margin-bottom: 10px;
}

.movie-info .desc {
    margin-top: 20px;
    line-height: 1.8;
    color: #aaa;
}

@media(max-width: 768px){
    .movie-container {
        flex-direction: column;
    }

    .movie-poster img {
        width: 100%;
    }
}
.newsletter {
    text-align: center;
    padding: 60px 8%;
    background: rgba(255,255,255,0.03);
}

.newsletter input {
    padding: 10px;
    width: 250px;
}

.newsletter button {
    padding: 10px 20px;
    background: gold;
    border: none;
    cursor: pointer;
}