/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #000;
  line-height: 1.6;
}

/* Header */
header {
  
  background-color: #000;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.header-logo .logo {
  font-size: 36px;
  font-weight: bold;
  color: red;
  margin-bottom: 10px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  color: white;
  letter-spacing: 1px;
}


.header-nav .nav-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.header-nav .nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

.header-nav .nav-links li a:hover {
  color: red;
}

#lang-toggle {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: red;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}



/* Hero Section */
.hero {
  background-image: url('logo.jpg'); /* Replace with your actual image file */
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.book-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.book-btn:hover {
  background-color: #cc0000;
}

.about-preview {
  text-align: center;
  background-color: white;
  color: red;
  padding: 60px 20px;
}

.about-preview h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-preview p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #000;
}

/* Highlights Section */
.highlight-box a {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.section-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}


.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.highlight-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
}


.highlight-box {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.highlight-box img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.highlight-box h2 {
  color: #ff0000;
  margin-bottom: 10px;
}

.highlight-box p {
  margin-bottom: 15px;
  font-size: 15px;
}



/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  /* Header */
  .header-logo .logo {
    font-size: 28px;
  }

  .header-nav .nav-links {
    flex-direction: row; /* <-- Keep it horizontal */
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .header-nav .nav-links li a {
    font-size: 16px;
  }

  /* ... (keep the rest of the styles below this) */


  /* Hero Section */
  .hero {
    padding: 80px 20px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .book-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  /* Highlights */
  .highlights {
    grid-template-columns: 1fr;
    padding: 30px 15px;
    gap: 20px;
  }

  .highlight-box img {
    max-height: 180px;
  }

  .highlight-box h2 {
    font-size: 18px;
  }

  .highlight-box p {
    font-size: 14px;
    
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #ff0000;
  font-weight: bold;
}

/* Stars */
.stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 8px;
}

/* Info Section */
.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  background-color: #000;
  color: white;
  text-align: center;
}

.info-box {
  flex: 1 1 250px;
  margin: 15px;
}

.info-box h3 {
  color: #ff0000;
  margin-bottom: 10px;
}

.info-box a {
  color: #ff0000;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Reviews Section */
.reviews {
  padding: 40px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.reviews h2 {
  color: #ff0000;
  margin-bottom: 20px;
  font-size: 28px;
}

.review-box {
  max-width: 600px;
  margin: 0 auto 25px auto;
  padding: 20px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-box p {
  font-style: italic;
  margin-bottom: 10px;
}

.review-box span {
  font-weight: bold;
  color: #333;
}

.about-container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  line-height: 1.6;
}

.about-container h2 {
  margin-top: 2rem;
  color: #222;
}

.location-section iframe {
  border-radius: 10px;
  margin-top: 1rem;
}

.hours-list {
  list-style: none;
  padding-left: 0;
}

.hours-list li {
  margin-bottom: 8px;
}

.contact-section a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.site-footer {
  background-color: #000; /* Pure black to match existing dark section */
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 0;
}

.site-footer p {
  margin: 6px 0;
}

.site-footer strong {
  color: red;
}

 /* Social Media */
    .social-media {
      background-color: #000;
      text-align: center;
      padding: 20px 0;
    }

    .social-title {
      color: #fff;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .social-media a {
      display: inline-block;
      margin: 0 15px;
      transition: transform 0.2s ease;
    }

    .social-media a:hover {
      transform: scale(1.1);
    }

    .social-media img {
      width: 32px;
      height: 32px;
    }
    .site-footer {
  background-color: #000; /* Pure black to match existing dark section */
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 0;
}



/* Mobile tweaks */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    align-items: center;
  }

  .review-box {
    margin: 0 10px 25px 10px;
  }
}
@media (max-width: 768px) {
  /* Keep info-section horizontal on mobile */
  .info-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .info-box {
    flex: 1 1 200px;
    margin: 10px;
    min-width: 180px;
  }

  .review-box {
    margin: 0 10px 25px 10px;
  }

  .header-logo .logo {
    font-size: 28px;
  }

  .header-nav .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .header-nav .nav-links li a {
    font-size: 16px;
  }

  #lang-toggle {
    position: relative;
    top: -5px;
    left: 5px;
}
.info-box p {
  font-size: 14px;
  line-height: 1.4;
}
 /* Social Media */
    .social-media {
      background-color: #000;
      text-align: center;
      padding: 20px 0;
    }

    .social-title {
      color: #fff;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .social-media a {
      display: inline-block;
      margin: 0 15px;
      transition: transform 0.2s ease;
    }

    .social-media a:hover {
      transform: scale(1.1);
    }

    .social-media img {
      width: 32px;
      height: 32px;
    }
  }