/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: black;
    color: white;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);  /* darker glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 126, 0, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
  }
  

/* Logo styles */
.logo {
    flex-shrink: 0;
    width: 64px;
}

.logo img {
    width: 100%;
    height: auto;
}

/* Brand title styles */
.brand-title {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.brand-title h1 {
    color: #d4d4d4;
    font-size: clamp(0.75rem, 2vw, 1.5rem);
    white-space: nowrap;
    font-weight: bold;
}

/* CTA buttons styles */
.nav-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.desktop-menu {
    display: none;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid white;
    border-radius: 0.375rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.cta-button:hover {
    background-color: rgba(255, 126, 0, 0.1);
}

/* Mobile menu toggle */
.mobile-toggle {
    color: #ff7e00;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 126, 0, 0.3);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: rgba(255, 126, 0, 0.2);
    border: 1px solid #ff7e00;
    border-radius: 0.375rem;
    color: #ff9933;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    color: white;
}

/* Desktop styles */
@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .desktop-menu {
        display: flex;
        gap: 0.5rem;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1669px) {
  .responsive-video {
    height: 500px !important;
    min-height: 650px !important;
    max-height: 1000px !important;
  }
}




* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

