@font-face {
  font-family: 'Broken Detroit'; /* The name of your first font */
  src: url('fonts/brokendetroit.woff2') format('woff2'), /* Modern browsers */
       url('fonts/brokendetroit.woff') format('woff'),   /* Older browsers */
       url('fonts/brokendetroit.ttf') format('truetype'); /* Fallback */
  font-weight: normal; /* Specify the weight (adjust if needed) */
  font-style: normal; /* Specify the style (e.g., normal, italic) */
}

@font-face {
  font-family: 'MyCustomFont'; /* The name of your second font */
  src: url('fonts/Font2.woff2') format('woff2'), 
       url('fonts/Font2.woff') format('woff'), 
       url('fonts/Font2.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

  body {
    margin: 0;
    font-family: 'roboto', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    letter-spacing: 0.15em;
  }
  header {
    background: linear-gradient(90deg, #4b0082, #000);
    position: sticky;
    top: 0;
    z-index: 10000;
    padding: 1em;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    height: auto;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures spacing between the left nav, logo, and right nav */
  }
  
  header .logo {
    flex: 0 0 auto; /* Prevents resizing */
    text-align: center;
    margin: 0 auto; /* Centers the logo */
  }
  
  header nav {
    flex: 1; /* Adjusts to available space */
    display: flex;
    justify-content: center; /* Centers navigation links */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
  }
  
  header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1em; /* Spacing between links */
    font-family: 'Broken Detroit', Arial, sans-serif;
    font-size: 35px;
  }
  
  header .logo img {
    height: 130px; /* Adjust the logo size as needed */
    display: block;
    margin: 0 auto; /* Center the logo within its container */
  }
  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 2em;
    font-family: 'Broken Detroit', Arial, sans-serif;
    font-size: 35px;
  }
  .nav-left, .nav-right {
    display: flex;
  }
  .logo img {
    height: 80px; /* Adjust the logo size if necessary */
  }
  nav a:hover {
    color: #ffd700;
  }
  /* Mobile Navigation */
.hamburger {
  display: none; /* Hidden by default */
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  right: 20px;
  top: 20px;
}

.nav-mobile {
  display: none; /* Hidden by default */
  flex-direction: column;
  gap: 1em;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: linear-gradient(90deg, #4b0082, #000);
  padding: 1em;
}

.nav-mobile a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  text-align: center;
}

/* Media Query for Mobile View */
@media screen and (max-width: 768px) {
  .nav-left, .nav-right {
    display: none; /* Hide desktop nav */
  }

  .hamburger {
    display: block; /* Show hamburger */
  }

  .nav-mobile.active {
    display: flex; /* Show mobile nav when active */
  }
}
  section {
    padding: 2em;
    text-align: center;
    scroll-margin-top: 165px;
  }
  .hero {
    padding: 5em 2em;
    background: url('LivePic') no-repeat center center/cover;
    color: #fff;
    background-size: cover;
    width: 100%;
    position: relative; /* To position overlay within this section */
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('overlay1.png'); /* Add the path to your PNG image here */
    background-size: cover; /* Ensures the image covers the section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Ensures the image doesn't repeat */
    z-index: -1; /* Positioned behind the video */;
    
  }
  .hhname-container {
    height: auto; /* Height for the HHname image */
    margin-bottom: 40px;
    background-color: transparent; /* Make sure the background is transparent */
    position: relative;
    z-index: 0; /* Ensures it's above the background */
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
    
  }
  .hhname-container img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain; /* Adjusts the image to maintain aspect ratio */
  }
  .content {
    padding-top: 30vh; /* Pushes the rest of the content down by 30vh */
  }
  .overlay-segment {
    height: 30vh; /* Set height to 30% of the viewport */
    position: relative;
    z-index: 0;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .overlay img {
    max-width: 90%; /* Ensure the image scales properly */
    max-height: 100%; /* Ensure the image doesn't exceed the segment height */
    object-fit: contain; /* Maintain aspect ratio */
  }
  .video-wrapper {
    margin: 2em auto;
    max-width: 720px;
    position: relative;
  }
  .video-wrapper iframe {
    width: 90%;
    height: 400px;
    border: none;
  }
  .images-wrapper {
    display: flex;
    justify-content: center; /* Centers the images horizontally */
    gap: 20px; /* Ensures no gap between images */
    margin-top: 20px;
    flex-wrap: wrap; /* Allows the images to wrap on smaller screens */
    width: 95%; /* Ensures the container takes full width */
  }
  .images-wrapper img {
    width: 45%; /* Makes the images take up 50% of the container */
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    padding: 0; /* Removes any default padding */
  }

  @media screen and (max-width: 1400px) {
      .images-wrapper img {
        width: 50%; /* Keeps the images side by side on large desktops */
      } 
  }

  /* Media Queries for Responsiveness */
  @media screen and (max-width: 768px) {
      .images-wrapper {
        flex-direction: column; /* Stacks images vertically on smaller screens */
      }

      .images-wrapper img {
        width: 100%; /* Ensures the images take full width on smaller screens */
        max-width: 100%; /* Makes sure the images fill the available width */
      }
  }
  .image-gallery {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }
  .image-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    max-width: 100%;
  }
  p {
    font-size: 1.35rem; /* Increase font size for better readability */
    font-weight: 400; /* Optional: Adjust weight for a clean look */
    line-height: 1.6; /* Improve readability */
    max-width: 800px; /* Limit the width to align with images above */
    margin: 0 auto; /* Center align text within the section */
    text-align: center; /* Center align the text */
    padding: 1rem; /* Add spacing for breathing room */
  }
  
  p strong {
    font-size: 2rem; /* Bigger font size for the title text */
    font-weight: 700; /* Make the title bold */
    display: block; /* Place the title on its own line */
    margin-bottom: 0.5rem; /* Add spacing below the title */
    text-align: center;
  }
  
  @media (max-width: 768px) {
    p {
      font-size: 1.1rem; /* Adjust for smaller screens */
      max-width: 90%; /* Allow more space on mobile */
    }
  
    p strong {
      font-size: 1.5rem; /* Slightly reduce the title size on mobile */
    } 
  }
  #booking h2 {
    font-size: 2.5rem; /* Increase the font size */
    font-weight: 700; /* Make the title bold */
    text-align: center; /* Center the title */
    margin-bottom: 1rem; /* Add space below the title */
    color: #fff; /* Optional: Adjust color for better contrast */
  }
  
  @media (max-width: 768px) {
    #booking h2 {
      font-size: 1.75rem; /* Slightly smaller font for smaller screens */
    }
  }
  .booking-form {
    max-width: 700px;
    font-size: 1.3em;
    margin: 2em auto;
    padding: 2em;
    background: linear-gradient(180deg, #4b0082, #000);
    border-radius: 5px;
  }
  .booking-form input, .booking-form textarea, .booking-form button {
    width: 100%;
    padding: 0.5em;
    margin: 0.5em 0;
    border: none;
    border-radius: 5px;
    font-size: 1em;
  }
  .booking-form button {
    background-color: #4b0082;
    color: #fff;
    font-weight: bold;
    padding: 15px 40px;
    font-size: 0.85em;
  }
  #press {
    margin: 10px 0;
    text-align: center;
    font-size: 1.5em;
  }
  .press-list {
    margin: 30px auto;
    max-width: 700px;
  }
  .press-item {
    margin-bottom: 30px;
    background: linear-gradient(180deg, #4b0082, #301a40);
    border-radius: 7px;
    transition: all 0.2s ease;
  }
  .press-item button {
    background: unset;
    color: #fff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.85em;
  }
  .press-item:hover{
    scale: 0.96;
  }
  .press-content {
    display: none;
    margin-top: 10px;
    text-align: left;
  }
  .press-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .press-content a {
    display: inline-block;
    margin-top: 5px;
    text-decoration: none;
    color: #007BFF;
  }
  .press-content a:hover {
    text-decoration: underline;
  }
  .download-all {
    margin-top: 30px;
    transition: all 0.2s ease;
  }
  .download-all a {
    text-decoration: none;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
  }
  .download-all:hover {
    scale: 0.96;
  }
  .tour-table {
    max-width: 800px;
    margin: 1em auto;
    text-align: left;
    flex: 1;
  }
  .tour-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .tour-table tbody tr:nth-child(odd) {
    background-color: black; /* Black background for odd rows */
  }
  
  .tour-table tbody tr:nth-child(even) {
    background-color: rgba(128, 0, 128, 0.5); /* Purple overlay for even rows */
  }
  .tour-table h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1em;
  }
  .tour-table table {
    width: 100%;
    border-collapse: collapse;
  }
  .tour-table th, .tour-table td {
    padding: 1em;
  }
  .tour-table td {
    border-bottom: 1px solid #fff;
  }
  .tour-table .hidden {
    display: none;
  }
  .tour-table .show-more {
    display: block;
    margin: 1em auto;
    padding: 0.5em 1em;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  footer {
    background: linear-gradient(90deg, #4b0082, #000);
    color: #fff;
    padding: 0.2em;
    text-align: center;
  }
  .socials {
    display: flex;
    justify-content: center;
    gap: 20px; /* Spacing between icons */
    margin: 0.2em 0;
  }
  .socials a img {
    width: 40px; /* Adjust the size of the icons */
    height: 40px; /* Maintain square dimensions */
    transition: transform 0.2s ease; /* Add a hover effect */
  }
  .socials a img:hover {
    transform: scale(1.3); /* Slight zoom-in on hover */
  }
  footer {
    background: linear-gradient(90deg, #4b0082, #000);
    color: #cfb311;
    padding: 1em;
    text-align: center;
  }
  footer P {
      text-align: center;
  }

  #about {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 1em;
    box-sizing: border-box;
    flex-wrap: wrap;
    font-size: 0.5em;
  }
  #about .about-image {
    flex: 0 0 50%;
    height: auto;
    width: 100%;
  }
  #about .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
  }
  #about .about-text {
    flex: 1 1 50%;
    padding-left: 1.5em;
    font-size: 2rem;
    color: #fff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Media Queries for Responsiveness */
  @media screen and (max-width: 768px) {
    header {
      flex-direction: column; /* Stack logo and navbar */
      text-align: center;
    }
  
    header nav a {
      margin: 0.5em; /* Reduces spacing between links */
      font-size: 20px; /* Smaller font size */
    }
  
    header .logo img {
      height: 100px; /* Smaller logo size */
    }
  }
  @media screen and (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
    }
    nav a {
      margin: 0.5em 0;
      font-size: 20px;
    }
    .hero {
      padding: 3em 1em;
    }
    .video-wrapper iframe {
      height: 250px;
    }
    .images-wrapper {
      flex-direction: column;
    }
    .images-wrapper img {
      width: 100%;
    }
    .tour-table {
      max-width: 100%;
    }
    #about {
      flex-direction: column;
    }
    #about .about-image {
      flex: 0 0 100%;
    }
    #about .about-text {
      padding-left: 0;
    }
  }

  @media screen and (max-width: 480px) {
    nav a {
      font-size: 18px;
    }
    .hero h2 {
      font-size: 1.5rem;
    }
    .images-wrapper img {
      width: 100%;
      height: auto;
    }
    .tour-table td, .tour-table th {
      font-size: 14px;
    }
    .tour-table .show-more {
      padding: 0.5em 0.8em;
    }
    footer .socials a {
      font-size: 18px;
    }
    .booking-form input, .booking-form textarea {
      font-size: 16px;
    }
  }