/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --container-width: 1280px;
}
body { 
    font-family: 'Inter'; 
    /*background:url('/wp-content/uploads/2025/12/Home-page-1-scaled.png');*/
    background-repeat:no-repeat;
    background-size:cover;
}

/* Header Wrapper */
.site-header {
  /*background: linear-gradient(to right, #03304a, #082d7a);*/
  background: transparent;
  padding: 15px 0;
  position: relative;
  z-index: 1;
}

/* Inner container */
.container{
    --container-width: 1280px; /* define once */
    max-width: var(--container-width);
   /*max-width: 1280px;*/
    margin: auto;
    position:relative;
}
header .container > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
.logo img {
  height: 45px;
}

/* Navigation Desktop */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
  line-height:35px;
}

.nav-menu .arrow {
    margin-left: 4px;
    font-size: 14px;
    transform: rotate(90deg);
    display: inline-block;
}

/* Book Button Desktop */
.btn-book {
  background: #0bb283;
  /*background: #008000;*/
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-book:hover {
  opacity: 0.8;
}

/* Hamburger Icon (Mobile Only) */
.hamburger {
  width: 28px;
  cursor: pointer;
  display: none;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #008000;
  margin: 5px 0;
  border-radius: 3px;
}

/* Mobile Menu Dropdown */
.mobile-menu {
  background: #03304a;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 20px 0;
}

.mobile-menu ul {
  list-style: none;
}
.mobile-menu li {
  padding: 15px 20px;
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.btn-mobile {
  display: inline-block;
  background: #0bb283;
  padding: 10px 20px;
  border-radius: 25px;
  margin-top: 10px;
  margin-left: 20px;
}
ul.sub-menu {
    position: absolute;
    background: #fff;
    display: none;
    padding: 22px;
    border-radius: 16px;
    top: 40px;
}
.menu-item-has-children:hover > .sub-menu {
    display: block;
}
.sub-menu li a {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #002E5F;
    display: block;
    margin-bottom: 16px;
}

/* Default header */
.site-header {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

/* Sticky state */
.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 2;
}
.site-header.is-sticky .nav-menu a {
    color: #041519;
}
/* ---------- Responsive ---------- */

/* Tablets & Mobile */
@media (max-width: 991px) {
  .nav-menu, .btn-book {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .site-header.is-sticky .hamburger span ,.archive .site-header .hamburger span{
        background: #008000;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .logo img {
    height: 38px;
  }
    ul.sub-menu {
        position: relative;
        background: transparent;
        display: none;
        padding: 0 10px;
        border-radius: 16px;
        top: 15px;
    }
    ul.sub-menu li {
        padding: 0;
        color: #fff;
    }
    .sub-menu li a {
        font-family: Inter;
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        color: #fff;
        display: block;
        margin-bottom: 16px;
    }
}
