.site-nav {
    font-family: "Source Serif Pro", serif; 
    position: absolute; 
    top: 0;
    right: 0;
    width: 100%; 
    background: transparent; 
    z-index: 3; 
    padding: 5px 30px;
    max-width: 1200px;
}

.site-navigation {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
}

.site-navigation img {
    position:absolute;
    top: 0;
    left: -200px;
    height: 150px; 
    padding: 0;
}

.site-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-menu li {
    display: inline-block;
    margin-left: 20px;
    margin-top: 20px;
}

.site-menu li a {
    color: #f9c52a; 
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.site-menu li a:hover {
    color: #fff; /* Highlight on hover */
}
.has-children > a {
    position: relative;
    padding-right: 15px;
}

.has-children > a::after {
    content: "▼"; /* Downward arrow */
    font-size: 12px;
    margin-left: 5px;
    color: white;
}

/* Dropdown styling */
.has-children {
    position: relative;
}

.has-children .dropdown {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    top: 100%;
    left: 0;
    white-space: nowrap;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.has-children:hover .dropdown {
    display: block;
}

.dropdown li {
    display: block;
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #1A374D;
    text-decoration: none;
    font-weight: normal;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.dropdown li a:hover {
    color: #b48f20;
}

.btn-book-today {
    background-color: #ffffff;
    color: #1A374D;
    border: 2px solid #1A374D;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-book-today:hover {
    background-color: #1A374D;
    color: #ffffff;
    text-decoration: none;
}
/* CSS for the Burger Menu Icon */

.burger {
    display: inline-block;
    padding: 8px; 
    cursor: pointer;
    text-decoration: none;
    vertical-align: middle; 
  }
  
  .burger span {
    /* This is the middle line of the burger */
    display: block;
    position: relative; 
    width: 24px;      
    height: 3px;       
    background-color: #333; 
    border-radius: 2px; 
    transition: all 0.3s ease-in-out;
  }
  
  .burger span::before,
  .burger span::after {
    content: ''; 
    position: absolute;
    left: 0;
    width: 100%;        
    height: 100%;      
    background-color: inherit; 
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }
  
  .burger span::before {
    /* Position the top line above the middle line */
    top: -8px; 
  }
  
  .burger span::after {
    /* Position the bottom line below the middle line */
    bottom: -8px; 
  }
  
  .burger.light span {
    background-color: #fff;
  }
  
  .burger.active span {
    background-color: transparent; /* Middle line becomes transparent */
  }
  
  .burger.active span::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .burger.active span::after {
    bottom: 0; /* Or use top: 0; if transform-origin is center */
    transform: rotate(-45deg);
  }
