/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Audiowide", sans-serif;
  color: white;
}


.hero-box {
  background-color: #1a1206;
  padding: 1rem 2rem;
}
.hero-text-box {
  position: absolute;
  font-family: "Audiowide", sans-serif;
  color: rgba(223, 182, 20, 0.4);

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
}

.hero-text {
  font-family: "Audiowide", sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #fff;
}
.hero-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: none;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border: 1px solid white;
  border-radius: 5px;
  margin-top: 2rem;
  transition: transform 0.2s ease;
}

.hero-button:hover {
  transform: scale(0.95);
}

.hero-button:active {
  background: rgba(255, 255, 255, 0.2);
}

.flex-container,
.flex-container2 {
  font-family: "Audiowide", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo img {
  height: 70px;
}

.icons {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
}
.hero-image-box {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-img,
.hero-video {
  width: 100%;
  height: 92%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 92%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}

.menu {
  width: 100%;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: gold;
  padding: 0.6rem 1rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

.nav-link:hover {
  color: white;
  border-bottom: 1px solid gold;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background: rgba(220, 186, 186, 0.85);
  padding: 0.5rem;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 150px;
  border-radius: 0.25rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem;
  color:transparent;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 215, 0, 0.1);
}


.footer-logo {
  white-space: nowrap;
}
.flex-container2{
  display: flex;
  justify-content: center;
}
.hamburger-wrap {
    display: none;
}
.flex-container2 {
    display: flex;
    flex-direction: row;
}
.content-section {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #333; 
    color: white; 
    padding: 2rem; 
    text-align: center;
}

section h1, section p {
    color: inherit; 
}
section p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .flex-container {
        justify-content: space-between;
        align-items: center;
    }

    .hamburger-wrap {
        display: block;
        text-align: right;
        padding: 10px;
    }

    .hamburger-btn {
        background: none;
        border: none;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        padding: 5px 10px;
    }

    .flex-container2 {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 130px;
        left: 0;
        background-color: #333;
        z-index: 1000;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .flex-container2.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .nav-item {
        text-align: center;
        width: 100%;
        border-bottom: 1px solid #555;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        color: gold;
        text-decoration: none;
    }
    .dropdown-menu {
        display: none;
        position: static;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        padding-left: 20px;
        box-shadow: none;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-icon {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
}