/* =======================================================
   FORTRISH CINEMA
   Spider-Man: New Day
   spider.css
======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* ===========================
   Сброс стилей
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:#fff;
    overflow-x:hidden;
}

/* ===========================
   Общие элементы
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
} 

.container{

    width:1200px;

    max-width:95%;

    margin:auto;

}

/* .container{
    width: 1400px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
} */

a{
    text-decoration:none;
    color:white;
}

section{
    padding:90px 0;
}

h2{
    font-size:40px;
    margin-bottom:35px;
}

/* ===========================
   HEADER
=========================== */

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(3,5,20,.75);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 34px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #ffffff;
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}
nav a{

    color:#ddd;

    transition:.3s;

}

nav a:hover{

    color:#ff3c3c;

}

/* ===========================
   HERO
=========================== */

.hero{

    height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:url("../img/HUMSPI.webp") center/cover no-repeat;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(90deg,
    rgba(5,8,22,.96) 0%,
    rgba(5,8,22,.75) 45%,
    rgba(5,8,22,.30) 100%);

}

.hero-content{

    position:relative;

    z-index:2;

    width:600px;

    margin-left: 40px;

}

.coming{

    display:inline-block;

    padding:8px 18px;

    background:#ff2020;

    border-radius:30px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    margin-bottom:20px;

}

.info{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.info span{

    padding:8px 16px;

    background:rgba(255,255,255,.08);

    border-radius:30px;

    backdrop-filter:blur(10px);

}

.hero p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:35px;

}

/* ===========================
   Кнопки
=========================== */

.buttons{

    display:flex;

    gap:20px;

}

.main-btn{

    background:#e62429;

    padding:18px 36px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.main-btn:hover{

    background:#ff4444;

    transform:translateY(-3px);

    box-shadow:0 0 25px rgba(255,40,40,.45);

}

.second-btn{

    border:2px solid #4db4ff;

    color:#4db4ff;

    padding:18px 36px;

    border-radius:40px;

    transition:.35s;

}

.second-btn:hover{

    background:#4db4ff;

    color:#fff;

}

/* ===========================
   ABOUT
=========================== */

.about{

    background:#08101d;

}

.about p{

    max-width:900px;

    color:#bdbdbd;

    line-height:2;

    font-size:18px;

}

/* ===========================
   FACTS
=========================== */

.facts{

    background:#050816;

}

.facts-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:25px;

}

.fact{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px;

    transition:.3s;

}

.fact:hover{

    transform:translateY(-8px);

    border-color:#ff2e2e;

    box-shadow:0 0 25px rgba(255,0,0,.2);

}

.fact h3{

    margin-bottom:12px;

    color:#4db4ff;

}

/* ===========================
   GALERY
=========================== */

.gallery{

    background:#08101d;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.photo{

    height:260px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    background:#151d2d;

    border:2px dashed rgba(255,255,255,.12);

    transition:.35s;

}

.photo:hover{

    transform:scale(1.03);

    border-color:#4db4ff;

}

/* ===========================
   TRAILER
=========================== */

.trailer{

    background:#050816;

}

.video-placeholder{

    margin-top:35px;

    height:500px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#888;

    background:#101827;

}

/* ===========================
   BOOKING
=========================== */

.booking{

    text-align:center;

    background:

    linear-gradient(135deg,

    #08101d,

    #111a2d,

    #08101d);

}

.booking p{

    width:70%;

    margin:30px auto;

    line-height:2;

    color:#cfcfcf;

}

.telegram-btn{

    display:inline-block;

    padding:20px 45px;

    border-radius:50px;

    background:#229ED9;

    font-size:20px;

    font-weight:600;

    transition:.35s;

}

.telegram-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 0 30px rgba(34,158,217,.4);

}

/* ===========================
   FOOTER
=========================== */

footer{

    background:#03050d;

    text-align:center;

    padding:60px 0;

    border-top:1px solid rgba(255,255,255,.08);

}

footer h3{

    margin-bottom:15px;

    letter-spacing:2px;

}

footer p{

    color:#999;

}

/* ===========================
   Адаптивность
=========================== */

@media(max-width:1000px){

.hero h1{

font-size:52px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.video-placeholder{

height:300px;

}

.booking p{

width:100%;

}

}

@media(max-width:700px){

.hero{

padding-top:120px;

height:auto;

padding-bottom:100px;

}

.hero-content{

width:100%;

}

.buttons{

flex-direction:column;

}

.info{

gap:10px;

}

h2{

font-size:30px;

}

.logo{

font-size:24px;

}

}

/* =========================
   TRAILER
   ========================= */

.video-placeholder {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;

    margin: 30px auto 0;

    border-radius: 18px;
    overflow: hidden;

    background: #000;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: none;
}

.photo {
    overflow: hidden;
    border-radius: 16px;
}

.photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}