/*
Theme Name: Waterbuck Expedition Theme
Version: 1.0
Description: A custom WordPress theme for Waterbuck Expedition with mobile toggle menu and responsive layout.
*/

/* === Reset === */
* {
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

/* === Container === */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Top Contact Bar === */
.top-contact-bar {
  background: #000;
  color: #fff;
  font-size: 15px;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-contact-bar a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.site-logo img {
  max-height: 80px;
  width: auto;
}

/* === Navigation === */
.main-navigation {
  display: flex;
  gap: 20px;
}
.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* === Toggle Button === */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* === Responsive === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 15px;
  }
  .main-navigation.mobile-active {
    display: flex;
  }
  .top-contact-bar {
    flex-direction: column;
    text-align: center;
  }
}
/* === Navigation Cleanup === */
.main-navigation ul {
  list-style: none; /* remove bullets/dots */
  padding: 0;
  margin: 0;
}

.main-navigation li {
  display: inline-block; /* optional, controls layout */
  margin: 0 10px;
}

.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: bold; /* bold menu text */
}

