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

body{
  font-family:'Montserrat', sans-serif;
  color:white;
  margin:0;
  overflow-x:hidden;
  background:black; /* خلي body بلا صورة */
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;

  background:url("background-4k.webp") center/cover no-repeat;
}
section{
  scroll-margin-top:90px;
}
.seo-text{
  opacity:0.8;
  margin-top:20px;
}
/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 6vw;
  z-index:10;
}
.logo{
  text-decoration:none;
  color:white;
  font-size:14px;
  letter-spacing:3px;
  transition:0.3s;
}

.logo:hover{
  opacity:0.7;
}

.menu{
  display:flex;
  gap:40px;
}

.menu a{
  text-decoration:none;
  color:white;
  font-size:13px;
  letter-spacing:2px;
  opacity:0.7;
  transition:0.3s;
}

.menu a:hover{
  opacity:1;
}

/* HERO */
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}
.hero-image img{
  transform:none !important;
}

.hero-text{
  transition:transform 0.2s ease-out;
  will-change:transform;
}
.year{
  position:relative;
  z-index:2;
}
.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  padding-left:6vw;
  overflow:hidden;      /* مهم بزاف */
  isolation:isolate;    /* يحمي layer */
}
/* TEXT */

.hero-text{
  z-index:2;
}

.subtitle{
  font-size:23px;
  letter-spacing:5px;
  opacity:0.6;
  margin-bottom:0px;
}

.hero-text h1{
  font-size:50px;
  font-weight:800;
  letter-spacing:0px;
  line-height:120px;
}

/* YEAR */

.year{
  position:absolute;
  top:140px;
  right:120px;
  font-size:18px;
  letter-spacing:4px;
  opacity:0.5;
}

/* HERO IMAGE CLEAN FIX */
.hero-image{
  position:absolute;
  right:200px;
  bottom:120px;
  height:70%;
  display:flex;
  align-items:flex-end;
  z-index:1;
}

.hero-image img{
  height:100%;
  max-height:100vh;
  width:auto;
  object-fit:contain;
}
/* ========================= */
/* ABOUT SECTION */
/* ========================= */

.about-section{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  padding:0 20px;
}

/* BIG BACKGROUND NAME */
.about-bg-text{
  position:absolute;
  top:26%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:12vw;
  font-weight:900;
  letter-spacing:-5px;
  color:rgba(255, 255, 255, 0.056);
  white-space:nowrap;
  pointer-events:none;
  z-index:0;
}

/* CONTENT */
.about-content{
  position:relative;
  z-index:2;
  max-width:900px;
}

.about-subtitle{
  font-size:40px;
  letter-spacing:6px;
  opacity:0.6;
  margin-bottom:20px;
}

.about-title{
  font-size:31px;
  font-weight:800;
  margin-bottom:40px;
}

.about-text{
  font-size:20px;
  line-height:32px;
  opacity:0.85;
}

html{
  scroll-behavior:smooth;
}

section {
  min-height:100vh;
}

.about-section{
  margin:0;
}

/* ========================= */
/* CINEMATIC TIMELINE */
/* ========================= */
/* CENTER EXPERIENCE TITLE FIX */

.experience-section{
  display:block; /* بدل flex */
  text-align:center;
}

.experience-content{
  max-width:1000px;
  margin:0 auto;
}

.experience-subtitle{
  text-align:center;
}

.experience-title{
  text-align:center;
  margin-bottom:60px;
}

.timeline{
  position:relative;
  margin-top:80px;
  padding-left:0;
}

.year-block{
  margin-bottom:80px;
  position:relative;
}

.year-block h3{
  text-align:center;
  margin-bottom:40px;
  font-size:28px;
  opacity:0.8;
}

.timeline-item{
  position:relative;
  width:100%;
  padding:20px 0;
  text-align:center;
}

.timeline-item span{
  font-size:14px;
  opacity:0.6;
  display:block;
  margin-bottom:6px;
}

.timeline-item p{
  font-size:17px;
  line-height:28px;
}

.timeline-item{
  opacity:0;
  transform:translateY(60px);
  transition:0.8s ease;
}

.timeline-item.show{
  opacity:1;
  transform:translateY(0);
}
.timeline-item::before{
  content:"";
  width:6px;
  height:6px;
  background:white;
  border-radius:50%;
  display:block;
  margin:0 auto 10px;
  opacity:0.5;
}
/* ========================= */
/* MIXED MEDIA GALLERY */
/* ========================= */

.media-section{
  min-height:100vh;
  padding:140px 40px;
  position:relative;
}

.media-bg-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:25vw;
  font-weight:900;
  color:rgba(255,255,255,0.03);
  pointer-events:none;
  z-index:0;
}

.media-content{
  position:relative;
  z-index:2;
  max-width:1300px;
  margin:auto;
}

.media-subtitle{
  text-align:center;
  letter-spacing:6px;
  opacity:0.6;
  margin-bottom:20px;
}

.media-title{
  text-align:center;
  font-size:55px;
  font-weight:800;
  margin-bottom:90px;
}

.media-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.media-item{
  display:flex;
  flex-direction:column;
}

.media-item video,
.media-item img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:6px;
  background:black;
}

.media-info{
  margin-top:15px;
}

.media-info h4{
  font-size:20px;
  margin-bottom:5px;
}

.media-info p{
  font-size:14px;
  opacity:0.7;
}


/* ========================= */
/* CONTACT SECTION */
/* ========================= */

.contact-section{
  padding:140px 40px;
  position:relative;
  text-align:center;
}

.contact-bg-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:18vw;
  font-weight:900;
  color:rgba(255,255,255,0.03);
  pointer-events:none;
  z-index:0;
}

.contact-content{
  position:relative;
  z-index:2;
  max-width:1000px;
  margin:auto;
}

.contact-subtitle{
  letter-spacing:6px;
  opacity:0.6;
  margin-bottom:20px;
}

.contact-title{
  font-size:50px;
  font-weight:800;
  margin-bottom:80px;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-bottom:70px;
}

.contact-item h4{
  font-size:18px;
  margin-bottom:10px;
}

.contact-item p{
  opacity:0.7;
  font-size:16px;
}

/* Button */

.contact-btn{
  display:inline-block;
  padding:15px 40px;
  border:1px solid white;
  text-decoration:none;
  color:white;
  font-size:16px;
  transition:0.3s;
}

.contact-btn:hover{
  background:white;
  color:black;
}

/* ========================= */
/* SOCIAL SECTION */
/* ========================= */

.social-section{
  margin-top:80px;
}

.social-title{
  letter-spacing:4px;
  margin-bottom:25px;
  opacity:0.6;
}

.social-links{
  display:flex;
  justify-content:center;
  gap:35px;
  margin-bottom:40px;
}

.social-links a{
  width:55px;
  height:55px;
  border:1px solid rgba(255,255,255,0.3);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  font-size:20px;
  transition:0.3s ease;
}

.social-links a:hover{
  background:white;
  color:black;
  transform:translateY(-5px);
}
.contact-quote{
  font-size:18px;
  opacity:0.7;
  font-style:italic;
  margin-top:30px;
}

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

footer{
  padding:40px;
  text-align:center;
  opacity:0.4;
  font-size:14px;
}


/* ========================= */
/* CINEMATIC SCROLL REVEAL */
/* ========================= */

.reveal{
  opacity:0;
  transform:translateY(80px);
  transition:1s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* Parallax subtle zoom */

.featured-project img,
.gallery-item img{
  transition:1.2s ease;
}

.featured-project:hover img,
.gallery-item:hover img{
  transform:scale(1.05);
}
/* ========================= */
/* INSANE BTS SECTION */
/* ========================= */

.bts-section{
  padding:160px 60px;
  position:relative;
}

.bts-header{
  text-align:center;
  margin-bottom:100px;
}

.bts-header p{
  letter-spacing:6px;
  opacity:0.6;
  margin-bottom:15px;
}

.bts-header h2{
  font-size:60px;
  font-weight:800;
}

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

.bts-item{
  overflow:hidden;
}

.bts-item.large{
  grid-column:span 2;
}

.bts-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.8s ease;
}

.bts-item:hover img{
  transform:scale(1.08);
  filter:brightness(1.1);
}
/* BURGER MENU */

.burger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  z-index:1001;
}

.burger span{
  width:25px;
  height:2px;
  background:white;
  transition:0.3s;
}

@media(max-width:480px){
  .hero-text h1{
    font-size:38px;
    line-height:40px;
  }
}

@media(max-width:1200px){
  .hero{
    padding-left:60px;
  }
}
/* Responsive */

@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-title{
    font-size:35px;
  }
}
/* Responsive */

@media(max-width:1000px){
  .media-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .media-grid{
    grid-template-columns:1fr;
  }

  .media-title{
    font-size:35px;
  }
}

/* Mobile */
@media(max-width:768px){
  .navbar{
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .logo{
    display:flex;
    align-items:center;
    gap:15px;
  }

  .logo a{
    font-size:12px;
    letter-spacing:2px;
  }

    .burger{
    display:flex;
  }

  .menu{
    position:fixed;
    right:-100%;
  }
  body{
    scroll-snap-type:none;
  }
  .hero{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px 60px;
  }

  .hero-text h1{
    font-size:50px;
    line-height:50px;
    letter-spacing:-1px;
  }

  .subtitle{
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:20px;
  }

  .year{
    display:none;
  }

  .hero-image{
    position:relative !important;
    right:0px !important;
    bottom:0px !important;
    margin-top:30px;
    display:flex;
    justify-content:center;
  }

  .hero-image img{
    height:65vh;
    width:auto;
    max-height:600px; /* باش ما تكبرش بزاف */
    object-fit:cover;
  }
  .about-bg-text{
    display:none;
  }

  .about-title{
    font-size:26px;
  }

  .about-text{
    font-size:15px;
    line-height:24px;
  }
  .timeline-item{
    padding:20px 15px;
  }

  .timeline-item p{
    font-size:13px;
    line-height:20px;
  }

  .timeline-item span{
    font-size:11px;
}

  .menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:black;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:40px;
    transition:0.4s ease;
  }

  .menu.active{
    right:0;
  }

  .burger{
    display:flex;
  }

  .media-title{
    font-size:22px;
  }

  .media-section{
    min-height:auto;
    padding:100px 20px;
  }

  .media-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .media-item video,
  .media-item img{
    height:220px;
  }

  .contact-section{
    min-height:auto;
    padding:100px 20px;
  }

  .contact-title{
    font-size:28px;
  }

  .timeline{
  padding-left:0px;
  }

}