body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Questrial', sans-serif;
}

.topnav {
  background-color: transparent;
  overflow: hidden;
  position: fixed; /* Fixes the menu bar at the top */
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensures the menu bar stays on top of other content */
  display: flex;
  justify-content: center; /* Centers the menu item */
  align-items: center; /* Vertically centers the menu item */
}

.topnav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

/* Style the links inside the navigation bar */

.logo {
  display: flex;
  flex-direction: column; /* Stacks the logo and text vertically */
  align-items: center; /* Centers the logo and text horizontally */
  text-decoration: none;
}

  .logo.hidden {
    opacity: 0;
  }

.logo-image {
  display: block;
  background-image: url(../Content/Images/Logo/tingler-white.png);
  background-size: contain; /* Ensure the image fits within the span */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  padding-top: 10px;
  height: 140px; /* Adjust the height as needed */
  width: 140px; /* Set a specific width */
}


.logo-image-black {
  display: block;
  background-image: url(../Content/Images/Logo/tingler-black.png);
  background-size: contain; /* Ensure the image fits within the span */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  height: 140px; /* Adjust the height as needed */
  width: 140px; /* Set a specific width */
}


.logo-text {
  color: white;
  font-size: 20px;
  margin-top: -24px; /* Space between the logo and the text */
}

.hero {
  background: url('/content/images/landing/Couple1.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero1 {
  background: url('/content/images/landing/Couple1.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero2 {
  background: url('/content/images/landing/Couple2.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero3 {
  background: url('/content/images/landing/Couple3.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero4 {
  background: url('/content/images/landing/Couple4.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.chevron {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

/* Media query for smaller screens */
@media (max-width: 1200px) {
  .hero {
    background-position: center right;
  }
}

@media (max-width: 800px) {
  .hero {
    background-position: center 90%;
  }
}

@media (max-width: 600px) {
  .hero {
    background-position: center 70%;
  }
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.hero-text {
  display: flex;
  flex-direction: column; /* Stacks elements vertically */
  justify-content: center; /* Centers vertically */
  align-items: center; /* Centers horizontally */
  text-align: center; /* Centers text */
  transition: opacity 0.2s ease-in-out; /* Smooth transition for opacity */
  opacity: 1; /* Ensure the text is visible by default */
  color: white;
}

  .hero-text.hidden {
    opacity: 0; /* Hide the text by setting opacity to 0 */
  }

  /*.hero-text {
  color: white;
  text-align: center;
  position: absolute;
  top: 60%;*/ /* Adjust this value to move the text further down */
  /*left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}*/

  .hero-text h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .hero-text h2 {
    font-size: 0.8em;
    margin-bottom: 20px;
  }

.button-container {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center horizontally */
}

.age-restriction {
  font-size: 0.85em;
  color: #ffd700; /* Gold/yellow for visibility, or use #fff for white */
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25); /* Optional: for contrast on images */
}


.cta-button {
  background: #ff5a5f; /* Fallback color */
  background: linear-gradient(to top right, #ff5a5f, #e04e4e);
  color: white;
  border: none;
  padding: 15px 30px;
  margin: 40px 0px 5px 0px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
}

.login-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: white;
  color: black;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
}

.login-button.black {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: black;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
}

/* Add some padding to the content to avoid it being hidden behind the fixed navbar */

.content {
  padding-top: 60px;
}

.landing-page-spacer {
  padding: 20px;
  background-color: white;
  text-align: center;
  height: 60px;
}


.landing-page {
  padding: 20px;
  background-color: white;
  text-align: center;
  height: auto;
  scroll-padding-top:30px;
}

  .landing-page.hidden {
    opacity: 0; /* Hide the text by setting opacity to 0 */
  }

  .landing-page h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .landing-page p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }

.footer,
.footer a {
  color: white; /* Change link color to black */
  text-decoration: none; /* Remove underline */
  text-align: center;
  background-color: black;
  padding:2px;
}

.footer {
  padding-top: 9px;
}

.copyright {
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
  background-color: black;
  color: white;
}

.support {
  background-color: black;
  font-weight:bold;
  color: gold;
  padding-top: 15px;
  font-size: 0.8em;
  padding-bottom: 2px;
}

  .support a {
    color: white; /* Change link color to black */
  }


.version {
  padding: 10px;
  text-align: center;
  font-size: 0.8em;
  background-color: black;
  color: white;
}

.contact-us-body{
  padding:30px;
}

.contact-us-logo {
  height: 10vh; /* 1/10th of the viewport height */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact-us-button-container {
  text-align: center; /* Center align the content */
  margin: 20px 0; /* Add spacing above and below the button */
}


.tingler-button {
  background-color: black; /* Black background */
  color: white; /* White text */
  border: none; /* Remove default border */
  padding: 10px 20px; /* Padding inside the button */
  font-size: 1em; /* Font size */
  font-weight: bold; /* Bold text */
  cursor: pointer; /* Pointer cursor on hover */
  border-radius: 25px; /* Rounded edges */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

  .tingler-button:hover {
    background-color: #333; /* Darker background on hover */
  }


.contact-us-warning {
  background-color: mistyrose; /* Light red background */
  color: black; /* Dark red text */
  border: 1px solid #f5c6cb; /* Border matching the background */
  padding: 10px; /* Padding inside the panel */
  border-radius: 5px; /* Rounded corners */
  margin-top: 20px; /* Space above the panel */
  text-align: center; /* Center the text */
  font-weight: bold; /* Bold text */
}

.tingler-text {
  font-size: 0.95em;
}



