
/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* base scaling */
}

/* Hero Section */
.hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}


nav {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 5%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  z-index: 10;
  flex-wrap: wrap; /* allows wrapping if needed */
}

nav .logo {
  width: 80px;
  transition: transform 0.6s ease;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

nav .logo:hover {
  transform: rotate(138deg);
  border-bottom: 2px solid #ffffff;
  box-shadow: 0 0 10px #d0c9d2;
  border-radius: 1000px;
}

nav ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  
}

nav ul li a {
       text-decoration: none;
      color: #FFFFFF; /* default color */
      font-size: 18px;
      font-weight: bold;
     padding: 6px 12px;
      border-radius: 6px;
      display: inline-block;
        transition: all 0.6s ease;
        border-bottom: 2px solid transparent;
 
}

nav ul li a:hover {
/*background: linear-gradient(to right, #FF003C, #D100FF); /* gradient hover */
  border-radius: 6px;
  border-bottom: 2px solid #37ff00;
  text-shadow: 0 0 10px #10e2b8; /* glowing effect */
  transform: scale(1.1); /* slight zoom effect */}




/* Responsive tweaks */
@media (max-width: 1024px) {
  nav {
    padding: 0 40px;
  }

  nav ul {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  nav {
     flex-direction: column;
    height: auto;
    padding: 10px;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

 
}

/*
}

; /* ensures video fills without distortion */
.back-video::-webkit-media-controls {
  display: none !important;
}
.back-video::-moz-media-controls {
  display: none !important;
}
/* News Sections */

.back-video {
     position: fixed;        /* full screen background */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;      /* fill screen */
  object-position: center center; /* keep the true center visible */
  z-index: -1;
}
.news-header {
  box-sizing: border-box;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

.news-image,
.news-subtitle-image {
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  transition: 0.5s;
  display: inline-block;
  margin-bottom: 5px;
  z-index: 1 ;
  
}
.news-image:hover{
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #ff0000) drop-shadow(0 0 20px #ff6a6a);
}
.news-subtitle-image:hover{
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #00ffea) drop-shadow(0 0 20px #6afff1);
}

.news-section, .news-movie-section {
  max-width: 90%;
  margin: 1.5rem auto;
  padding: 1rem;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0, 0, 0);
  transition: all 0.3s ease-in-out;
  z-index: 1 ;
}
.news-section:hover, .news-movie-section:hover {
  box-shadow:  rgb(0, 0, 0);
  transform: scale(1.1);
  font-size: large;
}
/* 📱 Mobile First Adjustments */
@media (max-width: 768px) {

  .hero {
    padding: 2rem 1rem;
    text-align: center;
  }
  .news-section, .news-movie-section {
    max-width: 100%;
    padding: 1rem;
  }
}

/* 💻 Larger Screens */
@media (min-width: 1024px) {

  .news-section, .news-movie-section {
    max-width: 900px;
  }
}
.backdrop{

 position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;

  
}
/* Slider container */
.slider {
  position: relative;
  width: 95%;
  margin: auto;
  overflow: hidden;
}

/* Slider track */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each slide */
.slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  background: #12121200;
}

/* News sections */
.news-section, .news-movie-section {
  flex: 1 1 45%; /* flexible width */
  margin: 1rem;
  padding: 1rem;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0, 0, 0);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.news-section:hover, .news-movie-section:hover {
  transform: scale(1.05);
  font-size: large;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
}

.prev { left: 10px; }
.next { right: 10px; }

/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
  .slide {
    flex-direction: column; /* stack boxes vertically */
    align-items: center;
    padding: 1rem;
  }

  .news-section, .news-movie-section {
    flex: 1 1 100%;
    max-width: 95%;
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }

  .prev, .next {
    padding: 0.6rem;
    font-size: 1rem;
  }
}

/* 📱 Extra small screens */
@media (max-width: 480px) {
  .news-section, .news-movie-section {
    font-size: 0.8rem;
    padding: 0.8rem;
  }

  h2, h3 {
    font-size: 1rem;
  }

  .prev, .next {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
.time{
 width: 80%;
    padding: 20px; /* Thicker "frame" area */
    background-color: #000000; /* Color of the frame itself */
   
    
    /* Creating a sunken look with shadows */
   
   transition: all 0.6s ease-in-out ;
    margin: 20px auto
}
/*.time:hover{
  box-shadow: 0 0 15px #00ffea, 0 0 30px #00b3a6;
    transform: scale(1.2);
}*/
.time img{
  max-width: 100%;
    height: auto;
    display: block;
    /* Optional: subtle border around the image itself inside the frame */
    border: 1px solid #ccc;/* Helps with centering/layout issues */
    transition: all 0.6s ease-in-out ;
}
.time img:hover{
  filter: drop-shadow(0 0 10px #00ffea) drop-shadow(0 0 20px #6afff1);
  transform: scale(1.1);
}
.time h1{
  text-align: center;
  color: #ffffff;
 
}
@media (max-width: 768px) {
  .time h1{
    font-size: medium;
  }
}
@media (max-width: 480px) {
  .time h1{
    font-size: medium;
  }
}
