/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */
 @font-face {
    font-family: 'Anitto Regular';
    font-style: normal;
    font-weight: normal;
    src: local('https://www.keralatourism.org/assets/fonts/Anitto Regular'), url('https://www.keralatourism.org/assets/fonts/Anitto.woff') format('woff');
    }
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif!important;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
/* languages */
:lang(ml) {
  font-family: "Noto Sans Malayalam", sans-serif;
}
:lang(hi) {
  font-family: "Hind", sans-serif;
}
:lang(ta) {
  font-family: "Noto Sans Tamil", sans-serif;
}
:lang(te) {
  font-family: "Noto Sans Telugu", sans-serif;
}
/* languages */

:lang(en) .fancy-font{
      font-family: 'Anitto Regular';
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

 .navbar {
      position: absolute;
      top: 0;
      width: 100%;
      backdrop-filter: blur(5px);
      z-index: 1000;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }
@media (max-width: 767.98px) { 
  body .navbar {
    position: relative !important;
    background-color: #212121 !important;
  }
  .navbar .site-name{
    display: none;
  }
 }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: bold;
      font-size: 18px;
    }

    .nav-logo img {
      width: 70px;
      object-fit: contain;
    }

    .nav-menu {
      display: flex;
      gap: 25px;
    }

    .nav-menu a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }

    .nav-menu a:hover {
      color: #4CAF50; /* Kerala green highlight */
    }

    /* ===== Hamburger Styles ===== */
    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .nav-toggle span {
      width: 25px;
      height: 3px;
      background: white;
      transition: all 0.3s ease;
    }
.language-dropdown .dropdown-toggle {
  color: #fff;
  border: 1px solid #fff;
}
.language-dropdown .dropdown-toggle:hover {
  color: #fff;
  border-color: #fff;
}
:lang(en) .language-dropdown .bootstrap-select .dropdown-toggle .filter-option-inner-inner,
:lang(ml) .language-dropdown .bootstrap-select .dropdown-toggle .filter-option-inner-inner,
:lang(ta) .language-dropdown .bootstrap-select .dropdown-toggle .filter-option-inner-inner,
:lang(hi) .language-dropdown .bootstrap-select .dropdown-toggle .filter-option-inner-inner,
:lang(te) .language-dropdown .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  font-size: 14px;
}
    /* ===== Mobile Styles ===== */
    @media (max-width: 768px) {
      .nav-menu {
        position: fixed;
        top: 0px;
        right: 0px;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 100px 15px 20px;
        display: none;
        gap: 15px;
        width: 200px;
        animation: slideDown 0.3s forwards;
                height: 100vh;
      }

      .nav-menu.active {
        display: flex;
      }

      .nav-toggle {
        display: flex;
      }

      /* animate hamburger to X */
      .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .nav-toggle.active span:nth-child(2) {
        opacity: 0;
      }
      .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }
    }

    /* Slide down animation */
    @keyframes slideDown {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

/* Hero Section */


.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-head {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;

}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.section-padding{
  padding: 60px 0;
}
/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #333;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #666;
}

/* Destinations Section */
.destinations {
  padding: 100px 0;
  background: #1a1a1a;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 10px;
  font-style: italic;
  letter-spacing: -0.3px;
}


.section-title {
  font-size: 2rem;
  font-weight: 500;
  color: white;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  margin-bottom: 60px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destination-card.large {
  grid-row: span 2;
}

.destination-card:hover {
  transform: scale(1.05);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
}

.card-overlay h4 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.explore-more {
  text-align: center;
}

.explore-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 40px;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: white;
  color: #1a1a1a;
}

/* Movies Section */
.movies {
  padding: 100px 0;
  background: #111;
  color: white;
}

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

.movies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;

}

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.movie-card:hover {
  transform: scale(1.05);
  
}
.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;}

.movie-card:hover img {
  transform: scale(1.1);
      overflow: hidden;
        border-radius: 8px;


}

.w-100{
  width: 100%;
}
/* Experience Section */
.experience {
  padding: 100px 0;
  background: #000;
  color: white;
}

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

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.video-container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Footer */
.footer {
  background: #000;
  color: #666;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #333;
}


/* Responsive Design */
@media (max-width: 768px) {
 
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 250px);
  }
  
  .destination-card.large {
    grid-row: span 1;
  }
  
  .movies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.3rem;
  }
  .about {
    padding: 50px 0;
}

  .destinations {
    padding: 50px 0;
  }
  .movies {
    padding: 50px 0;
  }
  .destinations-grid {
    grid-template-columns: 2fr;
    grid-template-rows: repeat(10, 200px);
  }
  
  .movies-grid {
    grid-template-columns: 2fr;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
  }
  .experience {
    padding:50px 0;
  }
  .hero-head {
    font-size: 1.8rem;
    letter-spacing: -0.3px;
  }
}


