/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.4;
  background: #0D2837;
  color: #F1F3F6;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #FF8A35;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #fff;
}

strong {
  font-weight: bold;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

p {
  font-size: 1rem;
  margin-bottom: 16px;
}

/* ====== BASE CONTAINER & LAYOUT ====== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

/* ====== SECTION SPACING ====== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(19, 39, 58, 0.72);
  border-radius: 22px;
  box-shadow: 0 2px 32px rgba(12, 35, 60, 0.18);
  transition: box-shadow 0.2s;
}
section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  section {
    padding: 22px 8px;
    margin-bottom: 40px;
    border-radius: 15px;
  }
}

/* ====== HEADER ====== */
header {
  background: #0D2837;
  border-bottom: 2px solid #255169;
  box-shadow: 0 2px 16px rgba(10,16,32,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #F1F3F6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 10px;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #FF8A35;
  background: rgba(255, 138, 53, 0.1);
}

button {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ====== MOBILE MENU ====== */
.mobile-menu-toggle {
  display: none;
  background: #0D2837;
  color: #FF8A35;
  font-size: 2.2rem;
  padding: 0 16px;
  border: 2px solid #FF8A35;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  z-index: 1022;
}
.mobile-menu-toggle:hover {
  background: #FF8A35;
  color: #0D2837;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #0D2837;
  z-index: 1030;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 20px 20px 20px;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.68, 0.02, 0.63, 1.01);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #FF8A35;
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 30px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  color: #FF8A35;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 16px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #0D2837;
  background: #FF8A35;
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ===== MAIN CTAS & BUTTONS ===== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,#FF8A35 0%,#FFB56B 100%);
  color: #0D2837;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  padding: 13px 34px;
  border-radius: 100px;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(255,138,53, .13);
  margin-top: 18px;
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 2px;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#F1F3F6 0%,#FF8A35 99%);
  color: #0D2837;
  box-shadow: 0 2px 18px #FF8A3566;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 4000;
  background: #222f42;
  color: #F1F3F6;
  padding: 28px 10px 24px 10px;
  box-shadow: 0 0 18px rgba(10,31,80,0.20);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  animation: cookieBannerAppear 0.65s ease;
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn,
.cookie-btn--settings {
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  margin-right: 0;
  box-shadow: 0 1px 8px #FF8A3544;
  transition: background 0.15s, color 0.15s;
  outline: none;
  margin-bottom: 0;
}
.cookie-btn {
  background: #FF8A35;
  color: #0D2837;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F1F3F6;
  color: #0D2837;
}
.cookie-btn--reject {
  background: #F1453D;
  color: #fff;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #BB2A1B;
  color: #fff;
}
.cookie-btn--settings {
  background: none;
  color: #FF8A35;
  border: 2px solid #FF8A35;
}
.cookie-btn--settings:hover,
.cookie-btn--settings:focus {
  background: #FF8A35;
  color: #0D2837;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: #162A3B;
  color: #F1F3F6;
  width: 98vw;
  max-width: 440px;
  border-radius: 22px;
  z-index: 4050;
  box-shadow: 0 10px 40px #09142a81;
  display: none;
  flex-direction: column;
  padding: 32px 22px 22px 22px;
  gap: 22px;
  animation: cookieModalAppear 0.35s cubic-bezier(0.73,0,.55,1.56);
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalAppear 0.36s cubic-bezier(0.73,0,.55,1.56);
}
@keyframes cookieModalAppear {
  0% {transform: scale(0.76) translate(-50%, -50%); opacity: 0.22;}
  100%{transform: scale(1) translate(-50%, -50%); opacity:1;}
}
.cookie-modal-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #FF8A35;
  padding: 4px 8px;
  border: none;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #233447;
  padding: 15px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FF8A35;
  height: 20px;
  width: 20px;
  margin-left: 12px;
}
/* Always enabled (disabled toggle) */
.cookie-category--essential label {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 14px 2vw 18px 2vw;
    font-size: 0.99rem;
  }
  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}


/* ========== CARDS, FLEX GRIDS, TESTIMONIALS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #142C42;
  color: #F1F3F6;
  box-shadow: 0 4px 32px #08213618;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.20s, transform 0.18s;
  min-width: 200px;
  flex: 1 1 235px;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 24px #FF8A3555, 0 5px 36px #162A3B22;
  transform: translateY(-2px) scale(1.021);
  z-index: 3;
}
.card-content {
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F1F3F6;
  color: #0D2837;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.04rem;
  box-shadow: 0 4px 26px #162A3B12;
  min-width: 200px;
  max-width: 600px;
  transition: box-shadow 0.18s;
  position: relative;
}
.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.96rem;
  font-weight: 500;
  margin-left: 8px;
  color: #FF8A35;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px #FF8A3533;
}

/* ==== FEATURES ==== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

/* ==== ARTICLE PREVIEW ==== */
.article-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.article {
  background: #233447;
  border-radius: 14px;
  box-shadow: 0 2px 10px #1d41661b;
  padding: 18px 16px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  min-width: 220px;
  transition: box-shadow 0.17s, background 0.17s;
}
.article:hover {
  background: #162A3B;
  box-shadow: 0 2px 18px #FF8A3540;
}

/* ==== FILTER/SORT BAR ==== */
.filter-sort {
  color: #F1F3F6;
  background: #1c3650;
  border-radius: 14px;
  padding: 13px 14px;
  margin: 12px 0 8px 0;
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 0 8px #0D283718;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==== CATEGORY TABS ==== */
.category-tabs {
  font-size: 1rem;
  font-weight: 600;
  color: #FF8A35;
  background: #1c3650;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
  box-shadow: 0 0 8px #0D283718;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==== EVENT CARDS ==== */
.event-highlight-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 22px 0;
}
.event-highlight-cards > div {
  background: #1c3650;
  color: #FF8A35;
  border-radius: 14px;
  padding: 16px 18px;
  min-width: 200px;
  flex: 1 1 220px;
  font-size: 1.05rem;
  box-shadow: 0 2px 18px #FF8A3540;
  display: flex;
  flex-direction: column;
}
.event-calendar {
  margin-top: 28px;
  background: #233447;
  border-radius: 14px;
  padding: 17px 18px;
  font-size: 1.06rem;
  color: #FF8A35;
  box-shadow: 0 2px 10px #1d41661b;
}

/* ==== FOOTER ==== */
footer {
  background: #1c3650;
  color: #F1F3F6;
  padding: 50px 0 30px 0;
  border-top: 3px solid #FF8A35;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a {
  color: #FF8A35;
  font-weight: 600;
  font-size: 1em;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #F1F3F6;
}
footer address {
  font-style: normal;
  font-size: 0.98em;
  color: #F1F3F6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
footer address img {
  height: 20px;
  width: auto;
  vertical-align: text-bottom;
  margin-right: 2px;
}
footer address a { color: #FF8A35; margin-left: 0; }
footer address a:hover, footer address a:focus { color: #fff; text-decoration: underline; }

@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
}

/* ========== RESPONSIVE TYPOGRAPHY ========== */
@media (max-width: 560px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.35rem;}
  h3 {font-size: 1.12rem;}
}

/* ========== BRAND INSPIRED ACCENTS / EFFECTS ========== */
::-webkit-scrollbar {
  width: 7px;
  background: #1c3650;
}
::-webkit-scrollbar-thumb {
  background: #FF8A35;
  border-radius: 6px;
}

/* == Neon Accent Line Under Headings == */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg,#FF8A35 0%,#F1F3F6 100%);
  border-radius: 6px;
  margin-top: 13px;
  box-shadow: 0 0 18px #FF8A35bb;
}

h2::after {
  width: 38px;
  margin-top: 9px;
  box-shadow: 0 0 12px #FF8A3565;
}

/* Accent icons in features */
.feature-item img {
  filter: drop-shadow(0 0 5px #FF8A35bb);
  margin-right: 10px;
  vertical-align: middle;
  height: 26px;
}

/* ========== UTILITY CLASSES ========== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
gap-8 { gap: 8px; }

gap-16 { gap: 16px; }
gap-24 { gap: 24px; }

.hidden { display: none !important; }

/* ========== GENERAL RESPONSIVE ========== */
@media (max-width: 590px) {
  .container { padding: 0 6px; }
  h1, h2, h3 { word-break: break-word; }
  h1::after, h2::after { width: 30vw; min-width: 30px; }
  section {padding: 10vw 2vw; font-size: 1em;}
}

/* ========== SPACING RULES & FLEX FOR ALL MAIN FLEX CLASSES ========== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ========== ANIMATIONS & MICROINTERACTIONS ========== */
.cta-primary, .card, .article, .testimonial-card, .cookie-btn {
  transition: box-shadow 0.2s, transform 0.17s, background 0.18s, color 0.18s;
}
.card:hover, .article:hover, .cta-primary:focus, .cookie-btn:focus {
  box-shadow: 0 7px 28px #FF8A3555, 0 5px 36px #162A3B22;
  transform: translateY(-2px) scale(1.018);
  z-index: 2;
}

/* Vox pop for microinteractions */
a:active, .cta-primary:active, .cookie-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px #FF8A3555;
}

/* ========== FORM & MISCELLANEOUS ==========
 * No custom forms in the HTML, but style address & email links
 */
address {
  font-size: 1em;
  line-height: 1.445;
}
address a { text-decoration: underline; word-break: break-all; }

/* ======= DARK-ON-LIGHT FOR TESTIMONIALS/REVIEWS ======= */
.testimonial-card {
  background: #F1F3F6;
  color: #0D2837;
  box-shadow: 0 2px 18px #FF8A3522, 0 1px 8px #162A3B22;
}
.testimonial-card strong {
  color: #FF8A35;
}

/* ========== ACCESSIBILITY: Ensure proper color contrast in reviews ====== */
@media (max-width: 530px) {
  .testimonial-card { font-size: 0.98rem; padding: 12px; min-width: 0; }
}

/* ========== GALLERY ICONS (galeria.html) ========== */
.content-wrapper ul li img {
  margin-right: 10px;
  vertical-align: middle;
  height: 26px;
}

/* ========== ERROR/THANK-YOU SIMPLE PAGES ========== */
main > section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/****** END OF CSS ******/
