:root {
  --accent: #2c4a6e;
  --accent-light: #3a6fa8;
  --colored-green: #81bb4f;
  --colored-red: #e83b2c;
  /*--colored-blue: #90daee;*/
  --colored-blue: #d1ecf1;
  --colored-text: #e8f0fb;
  --logo-size: 160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; } 

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f6f9;
  color: #222;
}

/* ── HERO / HEADER ─────────────────────────────────────── */

.hero {
  width: 100%;
  min-height: 420px;
  background: url('3Yeu.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ── NAVBAR (Bootstrap override) ─────────────────────── */

.site-nav {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.2rem 1.5rem;
  background: transparent !important;
}

/* Links */
.site-nav-link {
  color: #fff !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding-bottom: 2px !important;
  margin-left: 1.5rem;
  transition: border-color 0.2s, color 0.2s;
}

.site-nav-link:hover {
  color: #a8c8f0 !important;
  border-color: #a8c8f0;
}

/* Burger icon — white lines on dark background */
.site-nav .navbar-toggler {
  border-color: rgba(255,255,255,0.7);
  border: solid 3px rgba(255,255,255,0.7);
  margin-left: auto;
  position: relative;
  z-index: 1070;
  transition: border-color 0.2s;
}

.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── MOBILE NAV OVERRIDE ─────────────────────────────────
   Bypass Bootstrap's height-based collapse entirely.
   The collapse div stays display:block at all times on mobile;
   visibility is driven by opacity + transform only.
──────────────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Always in the DOM, invisible by default */
  .site-nav .navbar-collapse {
    display: block !important;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1060;
    background: rgba(10, 25, 50, 0.97);
    border-radius: 0 0 12px 12px;
    padding: 4.5rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease,
                transform 0.22s ease,
                visibility 0s linear 0.22s;
    pointer-events: none;
  }

  /* Open state — driven by .nav-is-open (replaces Bootstrap .show) */
  .site-nav .navbar-collapse.nav-is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.22s ease,
                transform 0.22s ease,
                visibility 0s linear 0s;
    pointer-events: auto;
  }

  /* Toggler floats above the overlay when open */
  .site-nav .navbar-toggler.nav-is-open {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    border-color: rgba(255,255,255,0.5);
  }

  /* Swap burger → ✕ when open */
  .site-nav .navbar-toggler.nav-is-open .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
  }

  .site-nav-link {
    margin-left: 0;
    padding: 0.65rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    display: block;
    font-size: 1rem !important;
  }
  .site-nav-link:last-child {
    border-bottom: none !important;
  }
  
  .nav-is-open .nav-item {
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }


}



/* hero spacer */
.hero-spacer { flex: 1; }

/* ── LOGO OFFSET BAND ─────────────────────────────────── */
/*
   The logo-circle and tagline now live here in NORMAL FLOW.
   The circle is pulled upward by half its height so it straddles
   the hero/band boundary. The band grows to fit whatever the
   tagline needs — no fixed height, no overflow on any screen.
*/
.logo-offset-band {
  width: 100%;
  background: transparent;
  padding: 0;
  height: auto;
  overflow: visible;
}

.logo-band-content {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 1rem 1.5rem;
  /*margin-top: calc(-1 * var(--logo-size) - 2.5rem);*/
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1024px;
  background: rgba(0, 0, 0, 0.5);
  border-radius:8px;
}

/* ── LOGO CIRCLE ──────────────────────────────────────── */

.logo-circle {
  flex-shrink: 0;
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  background: #81bb4f;
  /*border: 5px solid var(--colored-red);*/
  border: 5px solid #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.logo-circle img {
  max-width: 210px;
  height: auto;
  /*border: solid 4px #fff;
  border-radius: 50%;*/
}

/* ── LOGO TAGLINE ─────────────────────────────────────── */
/*
   Push the tagline text down so it starts below the hero edge
   (= below the top half of the circle that's still in the hero).
*/
.logo-tagline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-width: 0; /* allow text to wrap properly */
}

.logo-tagline h1 {
  /*font-family: "Caveat", cursive;*/
  font-weight: 400;
  /*font-size: 3.6rem;*/
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);/**/
  text-shadow: 0 12px 18px rgba(0,0,0,0.9);/**/
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.logo-tagline h1 img {
  width:100%;
  height:auto;
  max-width:340px;
}

.logo-tagline h2 {
  margin-top: 0.4rem;
  margin-bottom: 1.4rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

/* ── MAIN CONTENT WRAPPER (960 px) ───────────────────── */

.content-wrap {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

/* ── COLORED SECTION ──────────────────────────────────── */

.colored-section {
  width: 100%;
  background: var(--colored-green);
  padding: 1rem;
  color: var(--colored-text);
}

.colored-section1 {
  padding-top: 2rem;
}

.colored-section2 {
  background-color: var(--colored-blue);
}

.colored-section4 {
  background-color: #fff;
  background-color: var(--colored-blue);
}

.colored-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.colored-section .section-sub {
  font-size: 0.95rem;
  color: #a0bfe0;
  margin-bottom: 2.5rem;
}

.colored-section5 h4 {
  color:  var(--colored-red);
  color: #fff !important;
}


.colored-section1 p a,
.colored-section5 p a {
color: #fff;
text-decoration: underline;
font-weight:700;
}

.colored-section ul {
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}

/* ── ALTERNATING IMAGE / TEXT SECTIONS ───────────────── */

.alt-section {
  padding: 1rem 0;
}

.alt-section-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  /* Placeholder background when image is missing */
  background: rgba(255,255,255,0.15);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* If image fails to load the placeholder background shows */
}

/* Placeholder icon when no image file exists yet */
.alt-section-img:not(:has(img[src])) {
  position: relative;
}
.alt-section-img:not(:has(img[src]))::after {
  content: '\f03e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
}

.alt-section-text {
  padding: 0 0.5rem;
}

.alt-section-text h3, h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem !important;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.general-section-text {
  max-width:900px;
  margin-left: auto;
  margin-right: auto;
}

.general-section-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem !important;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height: 1.25;
}

h3 {
  color: var(--colored-red);
}
.alt-section-text h3 {
  color: var(--colored-red);
  color: #fff;
}
.alt-section-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.alt-section-btn {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}

.colored-section1 p a.alt-section-btn,
.colored-section5 p a.alt-section-btn {
  text-decoration: none !important;
}

.alt-section-btn {
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff;
}


.feature-card .alt-section-btn,
#nosvelos .alt-section-btn {
  background: rgba(255,255,255,0.15);
  border: 2px solid #0c5460;
  color: #0c5460;
  align-self: baseline;
}

.alt-section-btn:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.feature-card .alt-section-btn:hover,
#nosvelos .alt-section-btn:hover {
  background: rgba(255,255,255,0.7);
  border-color: #0c5460;
  color: #0c5460;
  text-decoration: none;
}

/* ── FEATURE CARDS ────────────────────────────────────── */

.feature-card {
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.8rem 1.4rem;
  height: 100%;
  transition: background 0.25s, transform 0.25s;
  display: flex;         
  flex-direction: column;
}

.feature-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.feature-card i {
  font-size: 2rem;
  color: #fff;
  color:#0c5460;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  color: #0c5460;
}

.feature-card p, ol li {
  font-size: 0.88rem;
  color: #fff;
  color: #0c5460;
  margin: 0;
  line-height: 1.65;
}

.feature-card ol {
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}

.feature-card p a {
  color: #0c5460;
  text-decoration: underline;
  font-weight:800;
}

.feature-card .alt-section-img {
  min-height:auto;
  cursor: pointer;
}
.feature-card .alt-section-btn {
  margin-top: auto; 
}


/* ── FOOTER ──────────────────────────────────────────── */

.site-footer {
  background:  var(--colored-red);
  color: #fff;
  text-align: center;
  padding: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.site-footer img {
  width:120px;
  height: auto;
  margin-right:1rem;
}


/* ── BACK TO TOP BUTTON ──────────────────────────────── */

#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--colored-red);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-3px);
}

/* ── RESPONSIVE TWEAKS ───────────────────────────────── */

@media (max-width: 768px) {
  :root { --logo-size: 120px; }
  
  .hero {
    min-height: 380px;
  }
  .logo-circle img {
    max-width: 120px;
  }

  .logo-tagline h1 {
    font-size: 2.2rem;
  }
  .logo-tagline h2 {
    font-size: 0.85rem;
  }
  .logo-tagline h1 img {
    max-width:300px;
  }
  .logo-band-content {
    gap: 1.2rem;
    padding: 0 1rem;
  }
  .alt-section-text {
    padding: 0;
  }
  .alt-section-text h3 {
    font-size: 1.3rem;
  }
  .site-footer img {
    display: block;
    margin: 0 auto 0.75rem;
  }

  #backToTop {
    bottom:4rem;
  }
  
  #nosvelos .alt-section-btn {
    font-size: 0.75rem;
  }

  .colored-section1 p .alt-section-btn,
  .colored-section3 p .alt-section-btn,
  .colored-section5 p .alt-section-btn,
  .feature-card .alt-section-btn {
    margin-left: auto; 
    margin-right: auto; 
    display: block;
    width: fit-content;
  }

}

@media (max-width: 480px) {
  :root { --logo-size: 90px; }

  
  .logo-circle img {
    max-width: 110px;
  }

  .logo-tagline h1 {
    font-size: 1.3rem;
  }
  
  .logo-tagline h1 img {
    max-width:240px;
  }
  .logo-band-content {
    gap: 0.9rem;
    padding: 0 1rem;
  }
  
  #nosvelos .alt-section-btn {
    font-size: 0.7rem;
  }

}





/* ── LIGHTBOX ────────────────────────────────────────── */

/* In #nosvelos cards, alt-section-img is on the <img> itself — wrap it for hover effects */
#nosvelos .feature-card img.alt-section-img {
  transition: transform 0.35s ease;
  cursor: zoom-in;
}

#nosvelos .feature-card:hover img.alt-section-img {
  transform: scale(1.05);
}

/* Magnifier icon overlay — placed on the feature-card using a pseudo element */
#nosvelos .feature-card {
  position: relative;
}

#nosvelos .feature-card::after {
  content: '\f00e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  position: absolute;
  top: calc(200px - 2rem); /* approx bottom of image area */
  right: 1rem;
  opacity: 0;
  transition: opacity 0.2s;
  text-shadow: 0 1px 5px rgba(0,0,0,0.7);
  pointer-events: none;
}

#nosvelos .feature-card:hover::after {
  opacity: 1;
}

/* Overlay */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 40, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: lbFadeIn 0.22s ease;
}

#lb-overlay.active { display: flex; }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#lb-inner {
  position: relative;
  max-width: 820px;
  width: 100%;
  animation: lbSlideUp 0.28s ease;
}

@keyframes lbSlideUp {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

#lb-img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#lb-caption {
  text-align: center;
  color: rgba(255,255,255,0.80);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-top: 0.85rem;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

.lb-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.lb-nav-btn:hover {
  background: rgba(255,255,255,0.25);
}

#lb-prev { left: -60px; }
#lb-next { right: -60px; }

#lb-close {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--colored-red);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: transform 0.22s, background 0.2s;
  z-index: 11;
}

#lb-close:hover {
  transform: scale(1.12) rotate(90deg);
  background: #c0392b;
}

#lb-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.lb-dot.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 700px) {
  #lb-prev { left: 0;   top: auto; bottom: -54px; transform: none; }
  #lb-next { right: 0;  top: auto; bottom: -54px; transform: none; }
  #lb-inner { padding-bottom: 3.5rem; }
}

/* ── DIVERS ──────────────────────────────── */

iframe {
 width:100%;
}
a#menuresa {
  display: inline-block;
  background: rgba(255,255,255) !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.4rem !important;
  padding-bottom:0.6rem !important;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
  border: 2px solid var(--colored-red);
  color:  var(--colored-red) !important;

}

.bigb {
  background: rgba(255,255,255) !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.4rem !important;
  padding-bottom:0.6rem !important;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
  border: 2px solid var(--colored-red) !important;
  color:  var(--colored-red) !important;

}

.colored-section4 ol {
  list-style: none;
  counter-reset: numbers 0;
  margin-left:0;
  padding-left:0;
}

.colored-section4 ol li {
  margin-left:0.5rem;
}

.colored-section4 ol li::before {
  counter-increment: numbers;
  content: counter(numbers) ".";
  font-weight: bold;
  padding-right: 5px;
}



footer a {
  color:#fff;
  text-decoration: underline;
}

footer a:hover {
  color:#e2e2e2;
  text-decoration: underline;
}
