@charset "utf-8";
/* CSS Document */


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  min-height:100vh;
  background:url("../images/bg.jpg") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  position:relative;
}
/* Dark overlay */
body::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:0;
}



.main-title{
  text-align:center;
  font-size:32px;
  letter-spacing:4px;
  margin-bottom:50px;
  font-weight:400;
  color:#fff;
}





/* ================= NAVBAR ================= */
/* ===== NAVBAR ===== */

.navbar{
  position:fixed;
  top:20px;
  left:0;
  width:100%;
  display:flex;
  justify-content:center;   /* center menu */
  align-items:center;
  z-index:999;
}

/* Menu */

.nav-menu{
  display:flex;
  gap:40px;
}

.nav-menu a{
  text-decoration:none;
  color:#fff;
  font-size:13px;
  letter-spacing:2px;
  transition:.3s;
  position:relative;
}

/* underline animation */

.nav-menu a::after{
  content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  width:0;
  height:1px;
  background:#fff;
  transition:.3s;
}

.nav-menu a:hover::after{
  width:100%;
}

/* Hamburger */

.menu-toggle{
  display:none;
  position:absolute;
  right:25px;
  font-size:22px;
  color:#fff;
  cursor:pointer;
}

/* ===== Mobile ===== */

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:60px;
    right:20px;
    flex-direction:column;
    gap:18px;
    padding:25px;
    display:none;

    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(5px);
  }

  .nav-menu.active{
    display:flex;
  }

}
/* Active navigation link */

.nav-menu a.active{
  color:#fff;
  font-weight:500;
}

.nav-menu a.active::after{
  width:100%;
}


.coming-soon-wrapper{
  display:none;
}












/* Main Card */
.hero{
  position:relative;
  z-index:1;
  text-align:center;
  padding:40px 20px;
  max-width:500px;
  width:100%;
}

.profile img{
  width:200px;          
  height:200px;
  border-radius:50%;
  border:4px solid #fff;
  margin-bottom:18px;
  object-fit:cover;
}

/* Text */

.role{
  font-size:12px;
  font-weight:300;
  letter-spacing:2px;
  
  opacity:0.85;
  margin-bottom:4px;
  color:#ffffff;
  margin-top:-5px;
  
}

.name{
  font-size:32px;
  font-weight:400;
  letter-spacing:2px;
  margin-top:-15px;
}

.pablo{
  color:#ffffff;     /* white */
}

.absento{
  color:#8b0000     /* dark red */
}


.hero p{
  font-size:15px;
  margin-bottom:6px;
  opacity:0.9;
  
}

.thin-line{
  width:40px;
  height:1px;
  background:#ffffff;
  margin:8px auto;
  opacity:0.6;
}


/* Button */
.btn{
  display:inline-block;
  margin-top:18px;
  padding:12px 26px;
  background:#eaeaea;
  color:#000;
  text-decoration:none;
  font-weight:500;
  border-radius:4px;
  transition:.3s;
}

.btn:hover{
  background:#ffffff;
  transform:translateY(-2px);
}

/* ================= SOCIAL ICONS ================= */

.social-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:25px;
}

/* IMDb rectangle */
.social-icons .imdb{
  background:#f5c518;
  color:#000;
  font-weight:600;
  font-size:14px;
  padding:5px 9px;
  border-radius:4px;
  text-decoration:none;
  letter-spacing:1px;
  transition:.3s;
}

.social-icons .imdb:hover{
  transform:scale(1.05);
}

/* Common round icons */
.social-icons .icon{
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  text-decoration:none;
  border:2px solid;
  transition:.3s;
}

/* Instagram */
.social-icons .instagram{
  color:#e1306c;
  border-color:#e1306c;
}

.social-icons .instagram:hover{
  background:#e1306c;
  color:#fff;
}

/* Facebook */
.social-icons .facebook{
  color:#1877f2;
  border-color:#1877f2;
}

.social-icons .facebook:hover{
  background:#1877f2;
  color:#fff;
}

/* YouTube */
.social-icons .youtube{
  color:#ff0000;
  border-color:#ff0000;
}

.social-icons .youtube:hover{
  background:#ff0000;
  color:#fff;
}

.social-icons .x {
  color: #fff; /* X brand color */
}

.social-icons .x:hover {
  color: #000;
  background:#fff; /* X brand color */
}



/* Footer */
footer{
  position:absolute;
  bottom:35px;
  width:100%;
  text-align:center;
  font-size:13px;
  opacity:0.8;
}

/* Responsive */
@media(max-width:480px){
  .hero h1{font-size:26px;}
  .profile img{width:100px;height:100px;}
}


/* ================= CONTACT POPUP ================= */

.contact-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35); /* background image visible */
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.contact-modal.active{
  display:flex;
}

/* Popup box */
.modal-box{
  background:#ffffff;
  padding:34px 30px;
  width:100%;
  max-width:420px;
  border-radius:8px;
  position:relative;
  animation:zoomIn .3s ease;
  box-shadow:0 25px 70px rgba(0,0,0,0.35);
}

/* Animation */
@keyframes zoomIn{
  from{transform:scale(.9);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

/* Heading */
.modal-box h3{
  text-align:center;
  margin-bottom:26px;
  font-weight:300;
  letter-spacing:2px;
  color:#111;
}

/* Inputs */
.modal-box input,
.modal-box textarea{
  width:100%;
  padding:12px 14px;
  margin-bottom:16px;
  background:transparent;        /* no background */
  border:1px solid #b5b5b5;      /* gray border */
  color:#111;
  font-size:14px;
  transition:.3s;
}

.modal-box textarea{
  resize:none;
  height:90px;
}

/* Focus effect */
.modal-box input:focus,
.modal-box textarea:focus{
  outline:none;
  border-color:#000;             /* darker on focus */
}

/* Submit button */
.modal-box button{
  width:100%;
  padding:14px;
  background:#1f2a44;
  color:#fff;
  border:none;
  font-weight:500;
  letter-spacing:1px;
  cursor:pointer;
  transition:.3s;
}

.modal-box button:hover{
  background:#0f172a;
  transform:translateY(-1px);
}

/* Close button */
.close-btn{
  position:absolute;
  right:18px;
  top:12px;
  font-size:26px;
  cursor:pointer;
  color:#000;                    /* black close button */
  transition:.3s;
}

.close-btn:hover{
  transform:rotate(90deg);
  opacity:.6;
}

/* Mobile responsive */
@media(max-width:480px){
  .modal-box{
    padding:28px 22px;
  }
}
/* ================================
   COMING SOON – NO GAP / NO DELAY
================================ */

.coming-soon-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  height: 45px;
  overflow: hidden;
  z-index: 9999;
  pointer-events: none;
}

.scroll-track {
  display: flex;
  white-space: nowrap;
  width: max-content;

  /* 🔑 slow but continuous */
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.scroll-track span {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 6px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.35);
  text-shadow: 0 0 14px rgba(255,255,255,0.15);

  /* 🔑 FIX: reduce gap */
  margin-right: 40vw;
}

/* RIGHT → LEFT
   Balanced distance = no pause */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .scroll-track span {
    font-size: 16px;
    letter-spacing: 3px;
    margin-right: 40vw;
  }
}


















/* ================================
   STATUS POPUP
================================ */
.status-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.status-popup.active {
  display: flex;
}

.status-box {
  background: rgba(255,255,255,0.85); 
  padding: 30px 35px;
  max-width: 400px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  position: relative;
  animation: popupFade 0.4s ease;
}

.status-box h3 {
  color: #99090C;
  margin-bottom: 10px;
  font-weight: 600;
}

.status-box p {
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}

.status-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #000;
  font-size: 22px;
  cursor: pointer;
}

.status-close:hover {
  color: #99090C;
}

@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}



/* ================= BIOGRAPHY ================= */

.bio-section{
  width:100%;
  padding:20px;
  color:#fff;
  position:relative;
  z-index:1;

  /* Background glass effect */
 background:rgba(10,10,10,0.55);   /* opacity background */
  backdrop-filter:blur(6px);     /* glass blur effect */

  border-radius:10px;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);

  max-width:90%;
  margin:140px auto 100px;
  border:1px solid #666;
}

/* Title */

.bio-title{
  text-align:center;
  font-size:32px;
  letter-spacing:4px;
  margin-bottom:45px;
  font-weight:400;
}

/* Text */

.bio-text{
  font-size:14px;
  line-height:1.9;
  text-align:justify;
  letter-spacing:0.5px;
  font-weight:300;
  opacity:0.9;     /* slight fade */
}
/* Highlight */

.bio-name{
  font-size:18px;
  font-weight:600;
}

.bio-highlight{
  font-weight:600;
  font-size:15px;
}

/* Mobile */

@media(max-width:768px){

.bio-section{
  padding:110px 6% 70px;
  margin:110px 15px 60px;
}

.bio-title{
  font-size:24px;
}

.bio-text{
  font-size:13px;
}

}

/* ================= FILMOGRAPHY ================= */

.filmography-section{
  width:100%;
  padding:140px 8% 100px;
  color:#fff;
  position:relative;
  z-index:1;
}

/* Title */

.filmography-title{
  text-align:center;
  font-size:32px;
  letter-spacing:4px;
  margin-bottom:50px;
  font-weight:400;
}

/* Grid */

.film-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
  max-width:900px;   /* grid width control */
  margin:auto;       /* center alignment */
}

/* Film Card */

.film-card{
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(5px);
  border-radius:6px;
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.film-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.7);
}

/* Poster */

.film-card img{
  width:100%;
  aspect-ratio:2/3;
  object-fit:cover;
  transition:0.3s;
}

.film-card:hover img{
  transform:scale(1.05);
}

/* Film Info */

.film-info{
  padding:12px;
  text-align:center;
}

.film-title{
  font-size:14px;
  font-weight:500;
  margin-bottom:4px;
  color:#8B0000;
  text-decoration:none;
  display:inline-block;
  transition:transform .25s ease,color .25s ease;
  text-transform:uppercase;
}

.film-title:hover{
  transform:scale(1.12);
  color:#ff0000;
}

.film-year{
  font-size:12px;
  opacity:0.8;
}

.film-role{
  font-size:12px;
  opacity:0.7;
}

/* ================= RESPONSIVE ================= */

/* Laptop */

@media(max-width:1200px){

.film-grid{
  grid-template-columns:repeat(4,1fr);
  max-width:750px;
}

}

/* Tablet */

@media(max-width:900px){

.film-grid{
  grid-template-columns:repeat(3,1fr);
  max-width:600px;
}

}

/* Mobile */

@media(max-width:600px){

.film-grid{
  grid-template-columns:repeat(2,1fr);
  max-width:350px;
}

.filmography-title{
  font-size:24px;
}

}





/* ===== GALLERY ===== */

.gallery-section{
  width:100%;
  padding:90px 8% 100px;
  color:#fff;
  position:relative;
  z-index:1;
}

.gallery-title{


text-align:center;
  font-size:32px;
  letter-spacing:4px;
  margin-bottom:30px;
  font-weight:400;
  color:#fff;
}

/* grid */

.gallery-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:22px;
max-width:900px;
margin:auto;
}

/* card */

.gallery-card{
position:relative;
overflow:hidden;
border-radius:6px;
}

.gallery-card img{
width:100%;
aspect-ratio:2/3;
object-fit:cover;
display:block;
cursor:pointer;
}

/* hover overlay */

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:.4s;
}

.gallery-card:hover .gallery-overlay{
opacity:1;
}

/* view button */

.view-btn{
background:#8B0000;
color:#fff;
border:none;
padding:10px 20px;
font-size:13px;
letter-spacing:1px;
cursor:pointer;
transform:translateY(20px);
opacity:0;
transition:.4s;
}

.gallery-card:hover .view-btn{
transform:translateY(0);
opacity:1;
}

/* ===== POPUP ===== */

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px); /* background blur */
display:none;
align-items:center;
justify-content:center;
z-index:999;
padding:60px; /* screen edge gap */
}
.popup img{
max-width:100%;
max-height:100%;
border:1px solid #fff; /* border color */
border-radius:16px;
box-shadow:0 0 20px rgba(0,0,0,0.6);
}

}

.popup img:hover{
transform:scale(1.05);
}




.popup.active{
display:flex;
}

.popup-close{
position:absolute;
top:30px;
right:40px;
font-size:28px;
color:#fff;
cursor:pointer;
}

.popup-title{
position:absolute;
bottom:30px;
color:#fff;
font-size:16px;
letter-spacing:2px;
}

/* arrows */

.popup-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:30px;
color:#fff;
cursor:pointer;
padding:20px;
}

.prev{
left:40px;
}

.next{
right:40px;
}

/* responsive */

@media(max-width:900px){

.gallery-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:600px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.gallery-title{
font-size:24px;
}

}


.film-title2{
text-align:center;
margin-top:12px;
font-size:15px;
letter-spacing:3px;
font-weight:300;
color:#ddd;
}






