*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--red:#c1121f;
--black:#050505;
--dark:#101010;
--card:#181818;
--white:#f5f5f5;
--gray:#c9c9c9;
}

html{scroll-behavior:smooth}

body{
font-family:Arial,Helvetica,sans-serif;
background:var(--black);
color:var(--white);
overflow-x:hidden;
}

/* HERO */

.hero{
min-height:100vh;
background:linear-gradient(to right,rgba(0,0,0,.96),rgba(0,0,0,.7),rgba(0,0,0,.25)),url("images/background.jpg");
background-size:cover;
background-position:center;
padding:35px 8%;
display:flex;
flex-direction:column;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
gap:25px;
}

.logo h1{
color:var(--red);
letter-spacing:8px;
font-size:38px;
}

.logo span{
color:var(--red);
letter-spacing:7px;
font-size:11px;
}

.menu{
display:flex;
gap:25px;
list-style:none;
}

.menu a{
color:white;
text-decoration:none;
font-size:14px;
}

.menu a:hover{color:var(--red)}

.language button{
background:none;
border:1px solid var(--red);
color:var(--red);
padding:7px 10px;
cursor:pointer;
margin-left:5px;
}

.hero-content{
margin-top:130px;
max-width:780px;
}

.hero-content p,
.section-title p,
.about-text p,
.film-text p{
color:var(--red);
letter-spacing:4px;
font-size:13px;
font-weight:bold;
margin-bottom:22px;
}

.hero-content h2{
font-size:90px;
line-height:.95;
font-family:Georgia,serif;
margin-bottom:34px;
}

.hero-content span,
.about-text span,
.film-text span{
display:block;
color:var(--gray);
font-size:19px;
line-height:1.8;
margin-bottom:40px;
}

/* BUTTONS */

.btn{
display:inline-block;
background:var(--red);
color:white;
padding:15px 34px;
text-decoration:none;
font-weight:bold;
border-radius:5px;
transition:.3s;
}

.btn:hover{
background:#e63946;
transform:translateY(-2px);
}

.btn-outline{
display:inline-block;
border:1px solid var(--red);
color:var(--red);
padding:15px 34px;
text-decoration:none;
border-radius:5px;
margin-left:10px;
}

/* SECTIONS */

.about,
.gallery{
background:var(--dark);
padding:110px 8%;
}

.filmography,
.planned,
.featured,
.rentals{
padding:110px 8%;
}

.section-title{
text-align:center;
margin-bottom:70px;
}

.section-title h2{
font-family:Georgia,serif;
font-size:52px;
margin-bottom:28px;
}

/* ABOUT */

.about{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:70px;
align-items:center;
}

.about-img img,
.featured-box img{
width:100%;
border-radius:14px;
box-shadow:0 25px 70px rgba(0,0,0,.65);
}

.about-text h2,
.film-text h2{
font-family:Georgia,serif;
font-size:52px;
margin-bottom:28px;
}

/* FEATURED BOX */

.featured-box{
display:grid;
grid-template-columns:minmax(420px,1fr) minmax(520px,1.15fr);
gap:120px;
align-items:center;
max-width:1500px;
margin:0 auto;
}

.film-text{
max-width:700px;
padding-right:30px;
}

.film-text h2{
font-size:70px;
line-height:1.05;
}

.film-text span{
max-width:680px;
line-height:2;
font-size:19px;
margin-bottom:45px;
}

.buttons{
margin-top:45px;
display:flex;
gap:14px;
flex-wrap:wrap;
}

/* FILMOGRAPHY — 3 CARDS IN ONE ROW */

.filmography .cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1400px;
margin:0 auto;
}

.filmography .card img{
height:420px;
object-fit:cover;
}

/* UPCOMING PROJECTS — 2 CARDS */

.planned .cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
max-width:1100px;
margin:0 auto;
}

/* GENERAL CARDS */

.card{
position:relative;
background:var(--card);
border:1px solid rgba(193,18,31,.35);
border-radius:14px;
overflow:hidden;
cursor:pointer;
transition:.3s;
display:flex;
flex-direction:column;
height:100%;
}

.card:hover{
transform:translateY(-6px);
border-color:var(--red);
}

.card img{
width:100%;
height:350px;
object-fit:cover;
display:block;
}

.card h3{
color:var(--red);
padding:22px 22px 8px;
font-size:26px;
font-weight:bold;
}

.card p{
color:var(--gray);
padding:0 22px 24px;
font-size:17px;
line-height:1.6;
}

/* GALLERY — 3 COLUMNS */

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.gallery-grid img{
width:100%;
height:330px;
object-fit:cover;
border-radius:12px;
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.03);
}

/* RENTALS — 3 COLUMNS */

.rental-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

.rental-card{
background:var(--card);
border:1px solid rgba(193,18,31,.35);
border-radius:14px;
padding:35px;
cursor:pointer;
transition:.3s;
}

.rental-card:hover{
transform:translateY(-6px);
border-color:var(--red);
}

.rental-card h3{
color:var(--red);
font-size:24px;
margin-bottom:12px;
}

.rental-card p{
color:var(--gray);
line-height:1.6;
}

/* FOOTER */

footer{
padding:70px 8%;
background:#020202;
border-top:1px solid rgba(255,255,255,.08);
}

footer p{
color:#999;
margin-bottom:30px;
}

footer a{
color:#999;
text-decoration:none;
}

footer a:hover{color:var(--red)}

.footer-links{
display:flex;
gap:25px;
flex-wrap:wrap;
margin-bottom:30px;
}

footer small{color:#666}

/* MODALS */

.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.92);
z-index:99999;
align-items:center;
justify-content:center;
padding:20px;
}

.modal-box{
background:#111;
max-width:820px;
width:100%;
padding:38px;
border-radius:14px;
border:1px solid rgba(193,18,31,.45);
position:relative;
}

.modal-box button{
position:absolute;
top:12px;
right:20px;
font-size:35px;
background:none;
border:none;
color:white;
cursor:pointer;
}

.modal-box img{
width:100%;
max-height:380px;
object-fit:cover;
border-radius:12px;
margin-bottom:25px;
}

.modal-box h2{
color:var(--red);
font-family:Georgia,serif;
font-size:42px;
margin-bottom:15px;
}

.modal-box p,
.modal-box span,
.modal-box li{
color:var(--gray);
line-height:1.8;
}

.modal-box ul{
margin:20px 0 30px 20px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:62px;
height:62px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
z-index:9999;
}

/* MOBILE */

@media(max-width:1000px){

.menu{
display:none;
}

nav{
align-items:flex-start;
}

.about,
.featured-box{
grid-template-columns:1fr;
gap:55px;
}

.filmography .cards,
.planned .cards,
.gallery-grid,
.rental-grid{
grid-template-columns:1fr;
}

.hero-content h2{
font-size:52px;
}

.about-text h2,
.section-title h2,
.film-text h2{
font-size:38px;
}

.film-text{
padding-right:0;
max-width:100%;
}

.btn-outline{
margin-left:0;
}

.card img,
.filmography .card img{
height:300px;
}
}
.logo img{
height:210px;
width:auto;
display:block;
}
.imdb-link{
display:inline-block;
margin:0 24px 24px;
padding:10px 22px;
border:1px solid #c1121f;
color:#c1121f;
text-decoration:none;
font-weight:bold;
border-radius:4px;
transition:.3s;
}
.card-buttons{
display:flex;
gap:12px;
padding:0 24px 24px;
align-items:center;
}

.imdb-link,
.trailer-link{
text-decoration:none;
font-size:13px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
padding:10px 18px;
border-radius:50px;
transition:all .3s ease;
}

/* IMDb */

.imdb-link{
background:#f5c518;
color:#111;
border:none;
box-shadow:0 4px 12px rgba(245,197,24,.25);
}

.imdb-link:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(245,197,24,.4);
}

.title-row{
display:flex;
justify-content:space-between;
align-items:center;
padding:24px 24px 10px;
}

.title-row h3{
margin:0;
color:#c1121f;
font-size:28px;
}

.trailer-link{
text-decoration:none;
color:white;
font-size:12px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;

padding:8px 14px;
border:1px solid rgba(255,255,255,.15);
border-radius:30px;

transition:.3s;
}

.trailer-link:hover{
background:#c1121f;
border-color:#c1121f;
}
/* BETTER MOBILE */
@media (max-width: 768px){
/* Hide navigation menu on phones */
.menu{
    display:none !important;
}
  body{
    overflow-x:hidden;
  }

  nav{
    padding:18px 22px;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }

  .logo img{
    max-width:150px;
    height:auto;
  }

 .menu{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

  .menu li a{
    font-size:13px;
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
  }

  .language{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
  }

  .language button{
    font-size:12px;
    padding:7px 12px;
    border-radius:20px;
  }

  .hero{
    min-height:85vh;
    padding:25px 22px;
    background-position:center;
  }

  .hero-content{
    margin-top:80px;
    max-width:100%;
  }

  .hero-content h2,
  .hero-content h1{
    font-size:48px;
    line-height:.95;
    word-break:normal;
  }

  .hero-content span,
  .hero-content p{
    font-size:16px;
    line-height:1.6;
  }

  section,
  .about,
  .featured,
  .planned,
  .gallery,
  .rentals{
    padding:70px 22px;
  }

  .cards,
  .two-cards,
  .gallery-grid,
  .rental-grid{
    grid-template-columns:1fr !important;
    gap:24px;
  }

  .card img,
  .gallery-grid img{
    height:auto;
    max-height:none;
    object-fit:cover;
  }

  .card h3{
    font-size:24px;
  }

  .section-title h2{
    font-size:36px;
  }

  .modal-box{
    width:94%;
    max-height:85vh;
    overflow-y:auto;
    padding:28px 22px;
  }

  .request-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .request-buttons .btn,
  .request-buttons .btn-outline{
    width:100%;
    text-align:center;
    margin:0;
  }

  .whatsapp{
    width:54px;
    height:54px;
    right:16px;
    bottom:16px;
    font-size:15px;
  }

  footer{
    padding:50px 22px;
  }

  .footer-links{
    flex-direction:column;
    gap:12px;
  }
}
/* CLEAN MOBILE VERSION */
@media (max-width:768px){

  nav{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
  }

  .menu{
    display:none !important;
  }

  .language{
    display:flex;
    gap:6px;
  }

  .language button{
    font-size:11px;
    padding:6px 9px;
    border-radius:20px;
  }

  .logo img{
    max-width:130px;
    height:auto;
  }

  .hero{
    min-height:82vh;
    padding:20px;
    background-position:center;
  }

  .hero-content{
    margin-top:90px;
    max-width:100%;
  }

  .hero-content h2{
    font-size:44px;
    line-height:0.95;
  }

  .hero-content span{
    font-size:16px;
    line-height:1.6;
  }

  .btn,
  .btn-outline{
    width:100%;
    text-align:center;
    margin:8px 0;
  }

  .about,
  .filmography,
  .planned,
  .gallery,
  .rentals{
    padding:65px 20px;
  }

  .about{
    grid-template-columns:1fr;
  }

  .section-title h2{
    font-size:34px;
  }

  .filmography .cards,
  .planned .cards,
  .gallery-grid,
  .rental-grid{
    grid-template-columns:1fr !important;
    gap:24px;
  }

  .card img,
  .filmography .card img,
  .gallery-grid img{
    height:auto;
    max-height:420px;
  }

  .card h3{
    font-size:23px;
  }

  .card p{
    font-size:16px;
  }

  .card-buttons,
  .request-buttons{
    flex-direction:column;
    gap:10px;
  }

  .imdb-link,
  .trailer-link{
    width:100%;
    text-align:center;
  }

  .modal-box{
    width:94%;
    max-height:85vh;
    overflow-y:auto;
    padding:28px 22px;
  }

  .whatsapp{
    width:56px;
    height:56px;
    right:16px;
    bottom:16px;
    font-size:18px;
  }

  footer{
    padding:50px 20px;
  }

  .footer-links{
    flex-direction:column;
    gap:14px;
  }
}
@media (max-width:768px){

  .imdb-link{
    display:block;
    width:fit-content;
    margin:0 auto !important;
    text-align:center;
}
    .card p{
    margin-bottom:0 !important;
}

}
@media (max-width:768px){

  .buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .buttons a{
    margin:8px auto;
  }

}
@media (max-width:768px){

  .card{
    text-align:center;
  }

  .imdb-link{
    display:inline-block;
    margin:15px auto 0;
  }

}
@media (max-width:768px){

  .card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .card h3,
  .card p{
    text-align:center;
  }

}
