/* Base Styles */
body {
  margin: 0;
  background-color: #ffffff;
  overflow: hidden; /* prevents scroll bar */
  font-family: 'PT Sans', sans-serif;
  color: #ffffff;
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Spinner Animation */
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preloader-text {
  color: white;
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  margin: 0;
  letter-spacing: 1px;
}

/* Progress Bar */
.progress-bar {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #cccccc);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 10px;
}

.progress-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  background: rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;
}

#hero::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

#hero video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  object-fit: cover;
  font-family: 'object-fit: cover';
}

#hero .texture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: url('images/texture.png') no-repeat center center;
  background-size: cover;
}



/* Slider Container */
.slider-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  height: 500px;;
  overflow: hidden;
  border-radius: 10px;
  z-index: 25;  
}

/* Slider */
.slider {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}

.slide video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


/* Footer Section */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: auto;
  min-height: 60px;
  z-index: 50;
  padding: 20px;

  display:flex;
  justify-content: space-between;
  align-items: center;
}  

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 58;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  display: flex;
  justify-content:flex-end;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 57;
  text-align: center;
  flex-grow: 1;
}

.social-icons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 57;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  display: block;
}

/* Container */
.container {
  position: absolute;
  
  transform: translate(-50%, -50%);
 
  z-index: 30;
  width: 80%;
  max-width: 800px;
  text-align: center;
}

h1 {

}

span {
  position: relative;
  
  color: #fff724;
  font-size: 16px;  
  letter-spacing: 1;
  line-height:1;
}


/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* Large Screens (1200px and above) */
@media screen and (min-width: 1200px) {
  .slider-container {
    width: 80%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
  }


  /* Footer Section */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: auto;
  min-height: 60px;
  z-index: 50;
  padding: 20px;

  display:flex;
  justify-content: space-between;
  align-items: center;
}  

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 58;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  display: flex;
  justify-content:flex-end;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 57;
  text-align: center;
  flex-grow: 1;
}

.social-icons {
  
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 57;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: scale(1.1);
}

  /* Container */
  .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);      
    z-index: 30;
    width: 80%;
    max-width: 800px;
    text-align: center;
  }

  h1 {
 
  }

  span {
    font-size: 16px;  
    letter-spacing: 1px;
    line-height:0.3;
    color: #fff724;

  }
}



/* Medium-Large Screens (992px to 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-container {
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
  }

  
  .site-footer {
    padding: 20px 40px;
  }

  .footer-links {
    gap: 30px;
    font-size: 11px;
  }

  .social-icons {
    gap: 20px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .footer-copyright {
    font-size: 10px;
    bottom: 20px;
  }

    /* Container */
  .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);      
    z-index: 30;
    width: 80%;
    max-width: 800px;
    text-align: center;
  }

  h1 {
 
  }

  span {
    font-size: 16px;  
    letter-spacing: 1px;
    line-height:0.3;
    color: #fff724;

  }  
}

/* Tablets (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .slider-container {
    width: 90%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
  }

  

/* Footer Section */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 700px;
  height: auto;
  min-height: 60px;
  z-index: 50;
  padding: 20px;
  display:flex;
  justify-content: space-between;
  align-items: center;
}  

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 58;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  display: flex;
  justify-content:flex-end;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 57;
  text-align: center;
  flex-grow: 1;
}

.social-icons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 57;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  display: block;
}

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  #hero .texture {
    background-size: cover;
    opacity: 0.8;
  }

    /* Container */
  .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);      
    z-index: 30;
    width: 80%;
    max-width: 800px;
    text-align: center;
  }

  h1 {
 
  }

  span {
    font-size: 16px;  
    letter-spacing: 1px;
    line-height:0.3;
    color: #fff724;

  }
}

/* Small Tablets / Large Mobile (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .slider-container {
    width: 95%;
    max-width: 500px;
    aspect-ratio: 16 / 9;
  }

  .slider-nav {
    top: 15px;
    gap: 10px;
    padding: 0 5px;
    flex-wrap: wrap;
  }

  .nav-button {
    font-size: 9px;
    padding: 8px 12px;
    min-width: 70px;
  }

/* Footer Section */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: auto;
  min-height: 60px;
  z-index: 50;
  padding: 20px;

  display:flex;
  justify-content: space-between;
  align-items: center;
}  

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 58;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  display: flex;
  justify-content:flex-end;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 57;
  text-align: center;
  flex-grow: 1;
  bottom: 50px;
}

.social-icons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 57;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  display: block;
}

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  #hero .texture {
    opacity: 0.7;
  }

    /* Container */
  .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);      
    z-index: 30;
    width: 80%;
    max-width: 800px;
    text-align: center;
  }

  h1 {
 
  }

  span {
    font-size: 10px;  
    letter-spacing: 1px;
    line-height:normal;
    color: #fff724;

  }
}

/* Mobile Devices (up to 575px) */
@media screen and (max-width: 575px) {
  .slider-container {
    width: 95%;
    aspect-ratio: 4 / 3;
  }

  .slider-nav {
    top: 10px;
    gap: 8px;
    padding: 0 5px;
    flex-wrap: wrap;
  }

  .nav-button {
    font-size: 8px;
    padding: 6px 10px;
    min-width: 60px;
  }

/* Footer Section */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: auto;
  min-height: 60px;
  z-index: 50;
  padding: 20px;

  display:flex;
  justify-content: space-between;
  align-items: center;
}  

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  z-index: 58;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  display: flex;
  justify-content:flex-end;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 57;
  text-align: center;
  flex-grow: 1;
}

.social-icons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 57;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: scale(1.1);
}

  .nav-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }

    /* Container */
  .container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);      
    z-index: 30;
    width: 80%;
    max-width: 500px;
    text-align: center;
  }

  h1 {
 
  }

  span {
    font-size: 12px;  
    letter-spacing: 1px;
    line-height:1%;
    color: #fff724;

  }
}