/* ===========================
   AMAZING CINEMAS
   Premium Style Sheet
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b1020;
    color:#ffffff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*================ HEADER ================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(8,12,24,.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(212,175,55,.2);
}

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

.logo img{
    height:60px;
}
nav ul li a.active{
    color:#D4AF37;
    font-weight:600;
}

nav ul li a.active::after{
    width:100%;
}
nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    color:#fff;
    font-size:15px;
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:#D4AF37;
}

/*================ HERO ================*/

.hero{
    height:100vh;
    background:url('../images/hero.jpg') center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.72),rgba(6,9,20,.92));
}

.hero-content{
    position:relative;
    z-index:5;
    width:90%;
}

.hero h1{
    font-size:72px;
    letter-spacing:4px;
    color:#fff;
    margin-bottom:15px;
}

.hero h3{
    color:#D4AF37;
    font-size:28px;
    font-weight:500;
    margin-bottom:20px;
    font-style:italic;
}

.hero p{
    color:#ddd;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    background:#D4AF37;
    color:#111;
    padding:15px 40px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#fff;
    transform:translateY(-4px);
}

/*================ STATS ================*/

.stats{
    padding:90px 0;
    background:#f7f7f7;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    color:#111;
    text-align:center;
    padding:45px 25px;
    border-radius:15px;
    border-top:5px solid #D4AF37;
    transition:.3s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-8px);
}

.card h2{
    font-size:48px;
    color:#D4AF37;
}

.card p{
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
}

/*================ ABOUT ================*/

.about{
    padding:100px 0;
    background:#101729;
}

.about .container{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.about h2{
    color:#D4AF37;
    margin-bottom:30px;
    font-size:38px;
}

.about p{
    color:#d5d5d5;
    margin-bottom:20px;
    text-align:justify;
}

.about img{
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,.45);
}

/*================ VISION ================*/

.vision{
    background:#f4f4f4;
    color:#111;
    padding:100px 0;
}

.vision>h2{
    text-align:center;
    margin-bottom:60px;
    font-size:40px;
}

.vision .container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.box:hover{
    transform:translateY(-8px);
}

.box i{
    font-size:55px;
    color:#D4AF37;
    margin-bottom:20px;
}

.box h3{
    margin-bottom:15px;
}

.box p{
    color:#666;
}

/*================ CTA ================*/

.quote{
    background:#111827;
    text-align:center;
    padding:90px 20px;
}

.quote h2{
    color:#D4AF37;
    font-size:42px;
    margin-bottom:15px;
    font-style:italic;
}

.quote p{
    color:#ccc;
    max-width:700px;
    margin:auto;
}

/*================ FOOTER ================*/

footer{
    background:#06090f;
    padding:50px 0;
    text-align:center;
}

footer p{
    margin:20px 0;
    color:#aaa;
}

.social{
    display:flex;
    justify-content:center;
    gap:20px;
}

.social a{
    width:45px;
    height:45px;
    background:#D4AF37;
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    transition:.3s;
    font-size:18px;
}

.social a:hover{
    background:#fff;
    transform:rotate(360deg);
}

/*================ RESPONSIVE ================*/

@media(max-width:992px){

.hero h1{
    font-size:52px;
}

.about .container{
    grid-template-columns:1fr;
}

.stats .container{
    grid-template-columns:1fr;
}

.vision .container{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

header .container{
    flex-direction:column;
    height:auto;
    padding:15px 0;
}

nav ul{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
    padding-bottom:10px;
}

.hero h1{
    font-size:38px;
}

.hero h3{
    font-size:22px;
}

.quote h2{
    font-size:30px;
}

.about h2,
.vision>h2{
    font-size:30px;
}

.card h2{
    font-size:40px;
}


.hero-slider{

height:100vh;
position:relative;
overflow:hidden;

}

.slides{

height:100%;
position:relative;

}

.slide{

position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;

}

.slide.active{

opacity:1;
z-index:2;

}

.slide img{

width:100%;
height:100%;
object-fit:cover;

}

.slide::before{

content:'';
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);

}

.content{

position:absolute;
top:50%;
left:10%;
transform:translateY(-50%);
color:#fff;
max-width:650px;
z-index:3;

}

.content h1{

font-size:65px;
margin-bottom:20px;

}

.content p{

font-size:24px;
margin-bottom:30px;

}

.btn{

display:inline-block;
padding:15px 35px;
background:#D4AF37;
color:#111;
border-radius:40px;
font-weight:bold;
text-decoration:none;
transition:.3s;

}

.btn:hover{

background:white;

}

.prev,
.next{

position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,.45);
border:none;
color:white;
font-size:35px;
width:60px;
height:60px;
cursor:pointer;
z-index:10;

}

.prev{

left:25px;

}

.next{

right:25px;

}

.prev:hover,
.next:hover{

background:#D4AF37;

}

.dots{

position:absolute;
bottom:35px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:15px;
z-index:10;

}

.dot{

width:15px;
height:15px;
border-radius:50%;
background:white;
cursor:pointer;

}

.dot.active{

background:#D4AF37;

}

}