/**
* Template Name: Lumia - v2.0.0
* Template URL: https://bootstrapmade.com/lumia-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    color: #444444;
  }
  
  a:hover {
    color: #73bb2b;
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
  }
  
  @media (min-width: 992px) {
    .container-sm{
        max-width: 820px;
    }
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  
  .alert.alert-server {
    position: absolute;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    z-index: 5;
    text-align: center;
  }
  
  #header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #header .header-content{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  
  #header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #384046;
  }
  
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #384046;
    text-decoration: none;
  }
  
  #header .logo img {
    max-height: 40px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  .delete {
    margin-top: 70px;
    text-align: center;
  }
  /* Desktop Navigation */
  .nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
  }
  
  .nav-menu a {
    display: block;
    position: relative;
    color: #4f5a62;
    padding: 12px 15px;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #73bb2b;
    text-decoration: none;
  }
  
  
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
  }
  
  .nav-menu .drop-down ul li .double-col{
    columns: 2;
  }
  
  .nav-menu .drop-down ul li .tripple-col{
    columns: 3;
  }
  
  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
  }
  
  .nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #4f5a62;
    font-weight: 400;
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #73bb2b;;
  }
  
  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }
  
  .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }
  
  .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }
  
  .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
  }
  
  .nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
  }
  
  @media (max-width: 1800px) {
    .nav-menu a {
      font-size: 14px;
      font-weight: 400;
    }
  }
  
  @media (max-width: 1560px) {
    #header .header-content{
      width: 90%;
    }
  }
  
  @media (max-width: 1385px) {
    #header .header-content{
      width: 95%;
    }
  }
  
  @media (max-width: 1315px) {
    #header .header-content{
      width: 100%;
    }
  }
  
  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }
  @media (max-width: 1184px) {
      #header .logo img {
        max-height: 30px; /* Reduce logo size on smaller screens */
    }
  }
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 20px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    color: #384046;
  }
  
  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: #384046;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #3498db;
    text-decoration: none;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(33, 38, 42, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
  }
  
  .section-bg {
    background-color: #f7fbfe;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #73bb2b;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-title p {
    margin-bottom: 0;
  }

  /*--------------------------------------------------------------
  # cookies
  --------------------------------------------------------------*/
    #cookieConsent {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #f1f1f1;
      padding: 20px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      display: none;
      z-index: 9999;  /* Increased z-index */
  }
  .cookie-consent-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #f1f1f1;
      padding: 20px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
  .cookie-consent-banner button {
      background: #007bff;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
    margin-left: 10px;
}

/* =========================================
   V2 Navbar & Footer Styles
   ONLY visual overrides - base.css handles 
   all dropdown positioning/behavior
   ========================================= */

/* Override old green and white lines from section titles in base.css */
.section-title h2::before,
.section-title h2::after {
    display: none !important;
}

/* Override .section-bg from base.css to transparent/dark for v2 pages */
.dark-theme-body .section-bg {
    background-color: transparent !important;
}

/* Header V2 - Dark Background Override */
html body #header.header-v2 {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 64px;
    /* 20% less than 80px */
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

html body #header.header-v2 .header-content {
    height: 100%;
}

/* Logo - SVG, full width of logo div, no background */
html body #header.header-v2 .logo {
    display: flex;
    align-items: center;
    height: 100%;
    width: auto;
    max-width: 280px;
    /* Allow shrinking on smaller screens */
    margin-right: 20px;
}

html body #header.header-v2 .logo a {
    width: 100%;
    display: flex;
    align-items: center;
}

html body #header.header-v2 .logo img.logo-v2 {
    width: 100%;
    height: auto;
    max-height: 56px;
    /* fit within 64px header */
    display: block;
    object-fit: contain;
}

/* Nav link colors - override base.css dark text with white */
.nav-menu.nav-menu-v2 a {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .nav-menu.nav-menu-v2 a {
        font-size: 11px;
        letter-spacing: 0px;
        padding: 10px 6px;
        /* Compress padding slightly */
    }

    .profile-dropdown i {
        font-size: 1.1rem;
        /* Shrink profile icon */
    }

    html body #header.header-v2 .logo {
        max-width: 180px;
        margin-right: 5px;
    }
}

.nav-menu.nav-menu-v2 a:hover,
.nav-menu.nav-menu-v2 .active>a,
.nav-menu.nav-menu-v2 li:hover>a {
    color: var(--accent-color, #eebb4d) !important;
}

/* Dropdown background & text - override white bg from base.css */
.nav-menu.nav-menu-v2 .drop-down ul {
    background: #222 !important;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-color, #eebb4d);
    border-radius: 0 0 8px 8px;
}

.nav-menu.nav-menu-v2 .drop-down ul a {
    color: #ddd !important;
    font-size: 13px;
    font-weight: 500;
}

.nav-menu.nav-menu-v2 .drop-down ul a:hover,
.nav-menu.nav-menu-v2 .drop-down ul .active>a,
.nav-menu.nav-menu-v2 .drop-down ul li:hover>a {
    color: var(--accent-color, #eebb4d) !important;
    background: rgba(238, 187, 77, 0.08);
}

/* Profile Icon */
.profile-dropdown {
    margin-left: 10px !important;
}

.profile-dropdown>a {
    padding: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-dropdown i {
    font-size: 1.5rem;
    color: var(--accent-color, #eebb4d);
    transition: all 0.3s ease;
}

.profile-dropdown:hover i {
    color: #fff;
    text-shadow: 0 0 10px rgba(238, 187, 77, 0.6);
}

.profile-dropdown ul {
    right: 0;
    left: auto !important;
}

/* Footer V2 */
.footer-v2 {
    background-color: var(--bg-color, #1a1a1a) !important;
    border-top: 1px solid #333;
    padding-top: 40px;
    color: #bbb;
    font-size: 0.9rem;
}

.footer-v2 a {
    color: var(--accent-color, #eebb4d);
    transition: color 0.3s;
}

.footer-v2 a:hover {
    color: #fff;
    text-decoration: none;
}

/* =========================================
   Mobile Navigation V2
   ========================================= */

/* Dark background for mobile menu container */
.mobile-nav {
    background: var(--bg-color, #1a1a1a) !important;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Link colors */
.mobile-nav a {
    color: #ffffff !important;
}

/* Hover/Active states */
.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: var(--accent-color, #eebb4d) !important;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle highlight */
}

/* Nested dropdowns background */
.mobile-nav .drop-down ul {
    background: #222 !important;
    /* Slightly lighter/different for nesting contrast */
    border-left: 1px solid #444;
    /* visual hierarchy line */
}

/* Toggle button styling (Hamburger menu) */
.mobile-nav-toggle i {
    color: #ffffff !important;
}

/* =========================================
   V2 Card Styles (Shared)
   ========================================= */

.destination-card {
    background: var(--card-bg, #2d2d2d);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color, #eebb4d);
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.destination-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.destination-title a {
    color: white;
    text-decoration: none;
}

.destination-title a:hover {
    color: var(--accent-color, #eebb4d);
}

.itinerary-card {
    background: var(--card-bg, #2d2d2d);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.itinerary-card:hover {
    border-color: var(--accent-color, #eebb4d);
    transform: translateY(-5px);
}

.itinerary-card .destination-image-wrapper {
    width: 100%;
    height: 240px;
}

/* Fix for overflow on small screens */
@media (max-width: 768px) {

    .destination-image-wrapper,
    .itinerary-card .destination-image-wrapper {
        height: 200px;
    }

    .destination-title {
        font-size: 1.25rem;
    }

    .itineraries-container,
    .itinerary-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}