/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Header container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
}

/* Logo on the left */
.navbar-left .logo {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  font-family: 'Poppins', sans-serif; /* Keep original logo font */
}

/* Right side container: menu + buttons */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Menu styling */
.site-nav .nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-menu li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  background-color: transparent;
  font-style: normal;
  font-variant: normal;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-stretch: 100%;
  font-variation-settings: normal;
  font-feature-settings: normal;
  text-indent: 0px;
  transition: color 0.3s ease;
}

.site-nav .nav-menu li a:hover {
  color: #DDDDDD;
}

/* Auth Buttons */
.auth-buttons a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  background: #FFFFFF;
  color: #333333;
  margin-left: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.auth-buttons a:hover {
  background: #F2F2F2;
}


.about-banner {
  background: url('<?php echo get_stylesheet_directory_uri(); ?>/images/sunset-background.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
}

.left-text {
  flex: 1;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.left-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.left-text p {
  font-size: 20px;
  line-height: 1.5;
}

.right-image {
  flex: 1;
  text-align: right;
}

.right-image img {
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Only First Slide’s Content */
.hero-slider .slide .overlay,
.hero-slider .slide .graphic-overlay,
.hero-slider .slide .hero-title {
  position: absolute;
  z-index: 2;
}

.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* Transparent, or adjust as needed */
  top: 0;
  left: 0;
}

.graphic-overlay {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80%;
}

.hero-title {
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
}
