/* ══════════════════════════════════════════
   shared.css — boattripsvlore.com
   Loaded by EVERY page. Edit once = applies everywhere.
   ══════════════════════════════════════════ */

:root {
      --ocean:       #0b3d6b;
      --ocean-mid:   #1a6fa8;
      --ocean-light: #3fa9d8;
      --foam:        #eef6fc;
      --white:       #ffffff;
      --sand:        #fff8f2;
      --text:        #0d2137;
      --text-muted:  #547085;
      --gold:        #f77f3a;
      /* sunset accent */
      --sunset:      #f77f3a;
      --sunset-dark: #e05c12;
      --radius: 4px;
      --green: #16a34a;
--red:   #dc2626;
--shadow: 0 4px 24px rgba(11,61,107,0.10);
    }

    

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3 { font-family: 'Poppins', sans-serif; }

   /* ── LANG BAR ── */


.lang-dd{ position: relative; }

.lang-btn{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid rgba(11,61,107,0.25);
  background: transparent;
  color: var(--text);
  cursor:pointer;
  font: 500 12px/1 'DM Sans', sans-serif;
  letter-spacing: 0.2px;
}

.lang-btn:hover{
  background: rgba(11,61,107,0.05);
  border-color: rgba(11,61,107,0.4);
}

.lang-btn-flag{
  font-size: 14px;     /* was 16px */
  line-height: 1;
}

.lang-btn-text{
  white-space: nowrap;
  font-size: 12px;     /* slightly smaller */
}

.lang-btn-chev{
  width: 8px; 
  height: 8px;
  display:inline-block;
  margin-left: 4px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%230d2137' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
    no-repeat center/8px 8px;
  opacity: .75;
}

/* Dropdown menu */
.lang-menu{
  position:absolute;
  right:0;
  top: calc(100% + 6px);

  width: max-content;
  min-width: 170px;                 /* smaller than before */

  background: #fff;
  border: 1px solid rgba(11,61,107,0.10);
  border-radius: 10px;              /* less rounded */

  box-shadow: 0 12px 32px rgba(0,0,0,0.12);  /* softer */

  padding: 6px;                     /* tighter */
  display:none;
  z-index: 9999;
}

.lang-menu.open{
  display:block;
}
.lang-menu{
  transform-origin: top right;
  animation: langFade .15s ease-out;
}

@keyframes langFade{
  from { opacity:0; transform: translateY(-4px) scale(.98); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.lang-item{
  display:flex;
  align-items:center;
  gap:8px;

  padding:9px 11px;
  border-radius:8px;

  text-decoration:none;
  color:var(--text);

  font:500 13px/1.25 'DM Sans', sans-serif;
}

.lang-item:hover{
  background: rgba(11,61,107,0.05);
}

.lang-item.is-active{
  background: rgba(247,127,58,0.12);
  color: var(--ocean);
}


    /* ── NAV ── */
.main-nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);

  .main-nav .lang-dd {
  position: relative;
  flex-shrink: 0;
}

  /* choose ONE: border OR none */
  border-bottom: 0;

  /* force the same “premium” look everywhere */
  box-shadow: 0 8px 24px rgba(11,61,107,0.06);

  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 70px);
  height: 60px;
}

.main-nav .nav-links {
  margin-left: auto;
}

.main-nav .lang-dd {
  margin-left: 24px;
  flex-shrink: 0;
}
    .logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 55px;   /* adjust if needed */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 34px;   /* adjust 30–38px range */
  }
}
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--sunset); }
    .nav-cta {
      background: #b85500 !important;
      color: #fff !important;
      padding: 9px 20px;
      border-radius: var(--radius);
      font-weight: 700 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: #8a3d00 !important; color: #fff !important; }

@media (max-width: 768px) {
  .main-nav .nav-links {
    margin-left: 0;
  }
  .main-nav .lang-dd {
    margin-left: auto;
    margin-right: 8px;
  }
}    

  .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;

  background: none;
  border: none;
  outline: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ocean);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* Hamburger animation */
.hamburger span{
  transition: transform .25s ease, opacity .2s ease;
}

.hamburger.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}
.nav-links a[aria-current="page"] { color: var(--sunset); font-weight: 500; }

/* ── SECTIONS ── */
section { padding: 90px 40px; }
.container { max-width: 1080px; margin: 0 auto; }
.section-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a84d00;
  margin-bottom: 10px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ocean);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; }
.section-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.faq-item { border-bottom: 1px solid rgba(11,61,107,0.1); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: var(--ocean);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .arrow { font-size: 18px; transition: transform 0.3s; flex-shrink: 0; color: var(--sunset); }
.faq-item.open .arrow { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease, padding .25s ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 0;
}
.faq-a > * { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; padding-bottom: 16px; }

/* ── FOOTER ── */

.footer{
  background: var(--ocean);
  color: rgba(255,255,255,0.7);
  padding: 40px 40px 28px;
}

.footer .container{
  max-width: 1080px;
  margin: 0 auto;
}

/* Desktop */

.footer .footer-grid{
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Tablet */

@media (max-width: 900px){

  .footer .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer .footer-about{
    max-width: 100%;
  }

}

/* Mobile */

@media (max-width: 768px){

  .footer{
    padding: 40px 20px 28px;
  }

  .footer .footer-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
  }

  .footer .footer-logo img{
    height: 42px;
  }

}

/* Logo */

.footer-logo{
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img{
  height: 44px;
  width: auto;
  display: block;
}

/* About text */

.footer-about{
  font-size: 13px;
  line-height: 1.8;
  max-width: 320px;
}

/* Column titles */

.footer-col-label{
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}

/* Links */

.footer-col ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a{
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover{
  color: #fff;
}

/* Bottom */

.footer-bottom{
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 768px){
  .main-nav { 
    padding: 0 20px; 
  }

  .nav-links { 
    display: none; 
    position: absolute; 
    top: 60px; 
    left: 0; 
    right: 0; 
    background: #fff; 
    flex-direction: column; 
    padding: 24px 20px;      /* slightly more vertical space */
    border-bottom: 1px solid rgba(11,61,107,0.1); 
    gap: 18px;               /* slightly more breathing room */
  }

  .nav-links.open { 
    display: flex; 
  }

  .hamburger { 
    display: flex; 
  }

  /* ── FULL WIDTH MOBILE CTA ── */
  .nav-links .nav-cta {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 14px 0;          /* top & bottom padding */
    text-align: center;
    border-radius: 8px;
  }

  section { padding: 60px 20px; }
  footer { 
    padding: 40px 20px 28px; 
  }


  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
  }
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


.sr-only-focusable:focus{
  position:fixed;
  top:12px;
  left:12px;
  width:auto;
  height:auto;
  margin:0;
  padding:10px 14px;
  clip:auto;
  overflow:visible;
  white-space:normal;
  background:#0b3d6b;
  color:#fff;
  z-index:10000;
  border-radius:6px;
}

.skip-link{
  position:absolute;
  left:-9999px;
}

.skip-link:focus{
  position:fixed;
  top:12px;
  left:12px;
  background:#0b3d6b;
  color:#fff;
  padding:10px 14px;
  border-radius:6px;
  z-index:9999;
  font-size:14px;
}

