/* ==========================================================================
   ATTWOOD NAVBAR - FRESH BUILD
   ========================================================================== */

.aw-site-header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: all 0.3s ease;
  pointer-events: none; /* Let clicks pass through empty space */
}

/* When scrolled down: hide it */
.aw-site-header.aw-scrolled-down {
  transform: translateY(-150%);
}

/* When scrolled back up: stick to top, slightly smaller */
.aw-site-header.aw-scrolled-up {
  top: 10px;
}

.aw-nav-container {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  
  /* Glossy Dark Glassmorphism */
  background: rgba(25, 25, 25, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  
  padding: 16px 35px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto; /* Re-enable clicks */
}

/* Logo */
.aw-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.aw-logo img {
  max-height: 40px;
  width: auto;
  transition: max-height 0.3s ease;
}

.aw-site-header.aw-scrolled-up .aw-logo img {
  max-height: 34px;
}

/* Main Navigation List */
.aw-main-nav {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

.aw-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.aw-nav-item {
  position: relative;
}

.aw-nav-item > a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.aw-nav-item > a:hover {
  color: #02adfa;
}

/* Dropdowns */
.aw-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  padding: 15px 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.05);
}

.aw-nav-item.active .aw-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.aw-dropdown-item {
  position: relative;
}

.aw-dropdown-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.aw-dropdown-item > a:hover {
  background: rgba(2, 173, 250, 0.05);
  color: #02adfa;
  padding-left: 30px;
  padding-right: 20px;
}

/* Sub-Dropdowns */
.aw-subdropdown-menu {
  position: absolute;
  top: -15px;
  left: 100%;
  transform: translateX(15px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  padding: 15px 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 101;
  border: 1px solid rgba(0,0,0,0.05);
}

.aw-dropdown-item:hover .aw-subdropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.aw-subdropdown-menu li a {
  display: block;
  padding: 8px 25px;
  color: #555555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.aw-subdropdown-menu li a:hover {
  background: rgba(2, 173, 250, 0.05);
  color: #02adfa;
  padding-left: 30px;
  padding-right: 20px;
}

/* Actions Section */
.aw-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.aw-lang-select {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.aw-lang-dropdown {
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
}

.aw-lang-dropdown option {
  color: #333;
}

.aw-btn-icon {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  transition: color 0.2s ease;
}

.aw-btn-icon:hover {
  color: #02adfa;
}

.aw-mobile-menu-toggle {
  display: none; /* Hidden on desktop */
}

.aw-btn-primary {
  background: #02adfa;
  color: #ffffff;
  border: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(2, 173, 250, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.aw-btn-primary:hover {
  background: #0096ce;
  box-shadow: 0 6px 20px rgba(2, 173, 250, 0.6);
  transform: translateY(-2px);
}

/* Search Bar (Hidden by default) */
.aw-search-bar-hidden {
  display: none;
}

#aw-search-bar.active {
  display: block;
  position: absolute;
  top: calc(100% + 20px);
  right: 5%;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  pointer-events: auto;
}

.aw-search-bar-inner {
  display: flex;
  gap: 10px;
}

.aw-search-bar-inner input {
  border: 1px solid #eee;
  padding: 10px 20px;
  border-radius: 50px;
  width: 300px;
  outline: none;
}

.aw-search-bar-inner button {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
}

/* Responsive Rules */
@media (max-width: 1200px) {
  .aw-nav-list { gap: 15px; }
  .aw-nav-item > a { font-size: 12px; }
  .aw-btn-primary { padding: 10px 18px; font-size: 12px; }
}

@media (max-width: 992px) {
  .aw-main-nav { display: none; } /* Hide normal nav */
  .aw-mobile-menu-toggle { display: flex; } /* Show menu btn */
  
  /* Mobile Menu Styles (Simple Slide Down) */
  .aw-site-header.menu-open .aw-main-nav {
    display: block;
    position: absolute;
    top: calc(100% + 20px);
    left: 5%;
    width: 90%;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  }
  
  .aw-site-header.menu-open .aw-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .aw-site-header.menu-open .aw-nav-item > a {
    color: #333333;
    text-shadow: none;
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
  }
  
  .aw-site-header.menu-open .aw-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none; /* Hide by default in mobile */
  }
  
  .aw-site-header.menu-open .aw-nav-item.active .aw-dropdown-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .aw-lang-select { display: none; }
  .aw-btn-primary { display: none; } /* Hide Start Planning on very small screens to save space, or keep it */
  .aw-nav-container { padding: 10px 20px; }
}


/* ==========================================================================
   MEGA MENU STYLES
   ========================================================================== */
.aw-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  padding: 30px;
  width: 900px;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.05);
  pointer-events: none;
}

.aw-nav-item.aw-has-megamenu.active .aw-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.aw-mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.aw-mega-column {
  display: flex;
  flex-direction: column;
}

.aw-mega-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  border-bottom: 2px solid rgba(2, 173, 250, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.aw-mega-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.aw-mega-title a:hover {
  color: #02adfa;
}

.aw-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aw-mega-list li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  display: block;
}

.aw-mega-list li a:hover {
  color: #02adfa;
  transform: translateX(5px);
}

/* ==========================================================================
   FULL PAGE OVERLAY MENU
   ========================================================================== */
.aw-fullpage-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-fullpage-overlay.active {
  opacity: 1;
  visibility: visible;
}

.aw-fullpage-close {
  z-index: 10000;
  pointer-events: auto;
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.aw-fullpage-close:hover {
  transform: rotate(90deg);
  color: #02adfa;
}

.aw-fullpage-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  transform: translateY(30px);
  transition: transform 0.4s ease 0.1s;
}

.aw-fullpage-overlay.active .aw-fullpage-content {
  transform: translateY(0);
}

.aw-fp-title {
  color: #e9d020;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 15px;
}

.aw-fp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.aw-fp-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.aw-fp-list li a:hover {
  color: #e9d020;
  transform: translateX(10px);
}

.aw-fp-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.aw-fp-socials a {
  color: #fff;
  font-size: 24px;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.aw-fp-socials a:hover {
  color: #e9d020;
  background: rgba(2, 173, 250, 0.1);
  transform: translateY(-3px);
}

/* Ensure body doesn't scroll when overlay is open */
body.aw-fp-noscroll {
  overflow: hidden;
}


/* For tours, maybe 1 per row or 2 per row depending on space */
}

.aw-visual-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none !important;
  group: visual;
  transition: transform 0.2s;
}

.aw-visual-card:hover {
  transform: translateY(-3px);
}

.aw-card-img {
  width: 100%;
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
}

.aw-visual-card:hover .aw-card-img {
  box-shadow: 0 8px 20px rgba(2, 173, 250, 0.3);
}

.aw-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  line-height: 1.3;
  transition: color 0.2s;
}

.aw-visual-card:hover .aw-card-title {
  color: #02adfa;
}

.aw-mega-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: flex-end;
}

.aw-btn-small {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 30px;
}


/* ==========================================================================
   FULL-WIDTH SPLIT-PANE MEGA MENU
   ========================================================================== */
.aw-nav-container {
  position: relative;
}

.aw-nav-item.aw-has-megamenu {
  position: static; /* so absolute children anchor to aw-nav-container */
}

.aw-mega-menu.aw-mega-split {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: 100%;
  max-width: none;
  transform: translateY(15px);
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  height: 500px; /* Fixed height for image alignment */
}

.aw-nav-item.aw-has-megamenu.active .aw-mega-menu.aw-mega-split {
  transform: translateY(0);
}

/* Sidebar */
.aw-mega-sidebar {
  width: 250px;
  background: #f8f5eb;
  padding: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.aw-sidebar-header {
  font-size: 16px;
  font-weight: 700;
  color: #a43a2c; /* Theme red as per image */
  margin-bottom: 20px;
  padding: 0 30px;
}

.aw-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
}

.aw-sidebar-list li {
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
}

.aw-sidebar-list li:hover {
  background: rgba(255,255,255,0.5);
}

.aw-sidebar-list li.active {
  background: #ffffff;
  color: #b18c4b; /* Gold */
  border-left-color: #b18c4b;
}

.aw-sidebar-footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.aw-sidebar-footer a {
  font-size: 12px;
  font-weight: 700;
  color: #777;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.aw-sidebar-footer a:hover {
  color: #b18c4b;
}

/* Middle Content Pane */
.aw-mega-content {
  width: 350px;
  background: #ffffff;
  padding: 30px;
  flex-shrink: 0;
  position: relative;
}

.aw-mega-pane {
  display: none;
  height: 100%;
  overflow-y: auto;
}

.aw-mega-pane.active {
  display: block;
  animation: fadeInPane 0.3s ease forwards;
}

@keyframes fadeInPane {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.aw-pane-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.aw-pane-links li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
  line-height: 1.4;
}

.aw-pane-links li a:hover {
  color: #02adfa;
}

/* Right Image Pane */
.aw-mega-image-container {
  flex-grow: 1;
  position: relative;
  background: #111;
  overflow: hidden;
}

.aw-mega-img-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.aw-mega-img-display.fading {
  opacity: 0.7;
}

.aw-mega-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-size: 28px;
  font-style: italic;
  font-family: 'Playfair Display', serif; /* or another elegant font */
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  pointer-events: none;
}

.aw-mega-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d8a032; /* Gold */
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}

.aw-mega-close:hover {
  background: #b88624;
}

/* =========================================================
   Mobile Off-Canvas Menu
   ========================================================= */
.aw-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.aw-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.aw-mobile-menu-inner {
  position: absolute;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #111;
  padding: 20px;
  transition: left 0.4s ease;
  overflow-y: auto;
  box-shadow: 5px 0 20px rgba(0,0,0,0.5);
}
.aw-mobile-overlay.active .aw-mobile-menu-inner {
  left: 0;
}

.aw-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.aw-mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aw-mobile-nav-list li {
  margin-bottom: 15px;
}
.aw-mobile-nav-list a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 1px;
}
.aw-mobile-nav-list a:hover {
  color: var(--aw-primary);
}
.aw-mobile-nav-list i {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* Mobile Search form stacking */
@media (max-width: 767px) {
  .aw-hero-search-glass form {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .aw-hero-search-glass .search-field, 
  .aw-hero-search-glass .search-btn-col {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
  }
  .aw-hero-search-glass .search-btn-col {
    border-bottom: none !important;
  }
  .aw-btn-explore {
    width: 100% !important;
    border-radius: 6px !important;
  }
}
