/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#050505;
color:white;
line-height:1.6;
overflow-x:hidden;
}


/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
position:sticky;
top:0;

background:rgba(10,10,10,0.6);
backdrop-filter:blur(10px);

border-bottom:1px solid rgba(255,255,255,0.05);
z-index:1000;
}

.logo{
font-size:24px;
font-weight:600;
color:#ff1e1e;
text-decoration:none;
letter-spacing:1px;
}

.nav-menu a{
margin-left:25px;
text-decoration:none;
color:#ddd;
font-size:14px;
transition:0.3s;
position:relative;
}

.nav-menu a::after{
content:"";
width:0%;
height:2px;
background:#ff1e1e;
position:absolute;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-menu a:hover{
color:white;
}

.nav-menu a:hover::after{
width:100%;
}


/* HERO */

.hero{
height:92vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.9)),
url("images/cinema-bg.jpg");

background-size:cover;
background-position:center;
}

.hero-content{
max-width:700px;
animation:fadeUp 1s ease;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
background:linear-gradient(90deg,#ff1e1e,#ffffff);
-webkit-background-clip:text;
color:transparent;
}

.hero p{
font-size:18px;
color:#ccc;
margin-bottom:35px;
}

.hero-btn{
padding:15px 36px;
border:none;
border-radius:30px;

background:linear-gradient(90deg,#ff1e1e,#ff4c4c);

color:white;
font-size:15px;
cursor:pointer;
transition:0.4s;
}

.hero-btn:hover{
transform:scale(1.1);
box-shadow:0 0 30px rgba(255,0,0,0.6);
}


/* HERO SMALL */

.hero-small{
height:45vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.9)),
url("images/cinema-bg.jpg");

background-size:cover;
background-position:center;
text-align:center;
}

.hero-small h1{
font-size:46px;
color:#ff1e1e;
margin-bottom:10px;
}

.hero-small p{
color:#ccc;
}


/* TRAILER */

.trailer-section{
padding:100px 10%;
text-align:center;
}

.trailer-section h2{
font-size:36px;
margin-bottom:50px;
color:#ff1e1e;
}

.trailer-container{
max-width:1000px;
margin:auto;
border-radius:12px;
overflow:hidden;
box-shadow:0 0 50px rgba(255,0,0,0.25);
transition:0.4s;
}

.trailer-container:hover{
transform:scale(1.03);
box-shadow:0 0 60px rgba(255,0,0,0.5);
}

.trailer-video{
border:none;
}


/* MOVIE GRID */

.movie-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:35px;
padding:90px 10%;
}

.movie-card{
background:#0f0f0f;
border-radius:12px;
overflow:hidden;
transition:0.4s;
position:relative;
}

.movie-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,0.9),transparent);
opacity:0;
transition:0.4s;
}

.movie-card:hover::before{
opacity:1;
}

.movie-card:hover{
transform:translateY(-10px) scale(1.04);
box-shadow:0 0 40px rgba(255,0,0,0.6);
}

.movie-img{
width:100%;
height:340px;
object-fit:cover;
}

.movie-card h3{
padding:16px;
font-size:18px;
}

.movie-card p{
padding:0 16px;
color:#aaa;
font-size:14px;
}

.movie-date{
margin-bottom:10px;
}


/* BUTTON */

.btn-book{
display:block;
margin:15px;
padding:12px;
text-align:center;
background:linear-gradient(90deg,#ff1e1e,#b80000);
border-radius:30px;
text-decoration:none;
color:white;
font-size:14px;
transition:0.3s;
}

.btn-book:hover{
transform:scale(1.08);
box-shadow:0 0 20px rgba(255,0,0,0.7);
}


/* TEAM */

.team-section{
padding:100px 10%;
text-align:center;
}

.team-section h2{
font-size:36px;
margin-bottom:50px;
color:#ff1e1e;
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.team-card{
background:#111;
padding:35px;
border-radius:14px;
transition:0.4s;
border:1px solid #222;
}

.team-card:hover{
transform:translateY(-12px);
box-shadow:0 0 40px rgba(255,0,0,0.6);
}

.team-card img{
width:110px;
height:110px;
border-radius:50%;
object-fit:cover;
border:4px solid #ff1e1e;
margin-bottom:15px;
}

.team-card p{
color:#aaa;
}


/* BOOKING FORM */

.container{
display:flex;
justify-content:center;
padding:100px 10%;
}

.booking-form{
width:100%;
max-width:520px;
background:#0f0f0f;
padding:45px;
border-radius:14px;
border:1px solid #222;
box-shadow:0 0 40px rgba(255,0,0,0.2);
}

.booking-form label{
display:block;
margin-top:18px;
margin-bottom:6px;
color:#ccc;
}

.booking-form input,
.booking-form select{
width:100%;
padding:12px;
border-radius:6px;
border:none;
background:#181818;
color:white;
}

.booking-form input:focus,
.booking-form select:focus{
outline:none;
box-shadow:0 0 10px rgba(255,0,0,0.7);
}


/* TABLE */

.container-table{
width:92%;
max-width:1100px;
margin:80px auto;
background:#0f0f0f;
padding:35px;
border-radius:14px;
box-shadow:0 0 40px rgba(255,0,0,0.2);
}

.booking-table{
width:100%;
border-collapse:collapse;
}

.booking-table th{
background:linear-gradient(90deg,#ff1e1e,#b80000);
padding:14px;
text-align:left;
}

.booking-table td{
padding:14px;
border-bottom:1px solid #222;
}

.booking-table tr:hover{
background:#1a1a1a;
}


/* STATUS */

.status{
padding:6px 14px;
border-radius:30px;
font-size:12px;
font-weight:600;
}

.confirmed{
background:#1db954;
color:white;
}

.pending{
background:#ffc107;
color:black;
}


/* FOOTER */

footer{
background:#080808;
text-align:center;
padding:30px;
margin-top:80px;
border-top:1px solid #111;
color:#777;
}


/* ANIMATION */

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}


/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:40px;
}

.movie-container{
padding:60px 7%;
}

.container{
padding:60px 7%;
}

}
/* NOW SHOWING */

.movie-container{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
gap:35px;
padding:80px 10%;
}

.movie-card{
background:#0f0f0f;
border-radius:12px;
overflow:hidden;
border:1px solid #1a1a1a;
transition:0.35s;
position:relative;
}

.movie-card:hover{
transform:translateY(-10px) scale(1.05);
box-shadow:0 0 40px rgba(255,0,0,0.6);
}

/* POSTER */

.movie-img{
width:100%;
height:250px;
object-fit:cover;
}

/* MOVIE INFO */

.movie-card h3{
font-size:17px;
padding:12px 14px 4px;
}

.movie-card p{
padding:0 14px;
font-size:13px;
color:#bbb;
}

.movie-date{
margin-bottom:12px;
}

/* BUTTON */

.btn-book{
display:block;
margin:14px;
padding:10px;
text-align:center;
background:linear-gradient(90deg,#ff1e1e,#b80000);
border-radius:25px;
text-decoration:none;
color:white;
font-size:13px;
transition:0.3s;
}

.btn-book:hover{
transform:scale(1.08);
box-shadow:0 0 20px rgba(255,0,0,0.7);
}
/* ABOUT SECTION */

.about-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:40px;
padding:90px 10%;
}

.about-text{
background:#0f0f0f;
padding:35px;
border-radius:14px;
border:1px solid #222;
transition:0.4s;
position:relative;
overflow:hidden;
}

/* LIGHT SWEEP EFFECT */

.about-text::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,0,0,0.25),
transparent
);
transition:0.5s;
}

.about-text:hover::before{
left:100%;
}

.about-text:hover{
transform:translateY(-10px);
box-shadow:0 0 35px rgba(255,0,0,0.5);
}

/* TITLE */

.about-text h2{
color:#ff1e1e;
margin-bottom:15px;
font-size:22px;
}

/* TEXT */

.about-text p{
color:#ccc;
font-size:14px;
line-height:1.6;
}

/* LIST */

.about-list{
margin-top:12px;
list-style:none;
}

.about-list li{
margin-bottom:8px;
color:#ddd;
position:relative;
padding-left:18px;
}

.about-list li::before{
content:"▶";
color:#ff1e1e;
position:absolute;
left:0;
}
/* FOOTER */

.footer{
background:#070707;
padding:70px 10% 30px;
border-top:1px solid #111;
margin-top:80px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-box h3{
color:#ff1e1e;
margin-bottom:15px;
font-size:18px;
}

.footer-logo{
color:#ff1e1e;
font-size:26px;
margin-bottom:10px;
}

.footer-box p{
color:#aaa;
font-size:14px;
line-height:1.6;
}

.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin-bottom:8px;
}

.footer-box ul li a{
color:#aaa;
text-decoration:none;
transition:0.3s;
}

.footer-box ul li a:hover{
color:#ff1e1e;
padding-left:6px;
}

.footer-bottom{
margin-top:40px;
text-align:center;
border-top:1px solid #111;
padding-top:20px;
color:#777;
font-size:13px;
}