/* =========================
   CSS RESET & BASE STYLES
   ========================= */
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,
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #FAF8F4;
  color: #233155;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
ol, ul {
  list-style: none;
}
a {
  color: #be210c;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E34234;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
:focus {
  outline: 2px solid #E34234;
  outline-offset: 2px;
}

/* ============================
   FONT FACES & TYPOGRAPHY
   ============================ */
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue:400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #233155;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }
h5 { font-size: 1rem; margin-bottom: 10px; }
h6 { font-size: 0.9rem; margin-bottom: 8px; }

p, ul, ol, li, span, label {
  font-family: 'Open Sans', Arial, sans-serif;
}
p, ul, ol, li {
  color: #634736;
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline {
  color: #85250E;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}


/* ============================
   CONTAINER & LAYOUT SPACING
   ============================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(225, 168, 148, 0.10);
}

/* ================
   FLEX SPACING
   ================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff6f2;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(225, 168, 148, 0.12);
  padding: 24px 18px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(179, 75, 46, 0.18);
  transform: translateY(-4px) scale(1.03);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  color: #233155;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(225, 168, 148, 0.10);
  min-width: 260px;
  max-width: 400px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================
   HEADER & MAIN NAVIGATION
   ========================== */
header {
  background: #ffffff;
  box-shadow: 0 4px 12px 0 rgba(35,49,85,0.065);
  padding-top: 10px;
  padding-bottom: 10px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
header a img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #233155;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #ffebe3;
  color: #be210c;
}
.main-nav .cta {
  background: #be210c;
  color: #fff;
  border-radius: 16px;
  font-family: 'Bebas Neue', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  box-shadow: 0 2px 6px 0 rgba(220,86,52,0.10);
  padding: 10px 23px;
  margin-left: 16px;
  transition: background 0.18s, transform 0.18s;
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: #E34234;
  color: #fff;
  transform: scale(1.05);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: #fff6f2;
  color: #be210c;
  border: 0;
  border-radius: 12px;
  min-width: 48px;
  min-height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.18s;
  margin-left: 18px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #fde3dd;
  color: #E34234;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1001;
  transform: translateX(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(.61,.08,.35,1), opacity 0.28s;
  box-shadow: 0 8px 38px 2px rgba(35,49,85,0.18);
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: #ffebe3;
  color: #be210c;
  border: 0;
  border-radius: 16px;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 23px 22px 8px 0;
  padding: 8px 17px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fde3dd;
  color: #E34234;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  margin-left: 30px;
  margin-right: 40px;
}
.mobile-nav a {
  color: #233155;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 15px 0 11px 0;
  border-radius: 12px;
  transition: background 0.2s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #ffebe3;
  color: #be210c;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
   HERO & PAGE INTRO
   ============================= */
.hero {
  background: #fff6f2;
  border-radius: 24px;
  padding: 44px 0 48px 0;
  margin-bottom: 45px;
  box-shadow: 0 2px 10px 0 rgba(225, 168, 148, 0.06);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}

/* ==========================
   SECTION & FEATURE LAYOUTS
   ========================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(225, 168, 148, 0.09);
  padding: 27px 16px;
  min-width: 220px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 28px 0 rgba(179, 75, 46, 0.12);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  margin-bottom: 12px;
  width: 52px;
  height: 52px;
}
.feature-grid h3 {
  font-size: 1.14rem;
  color: #be210c;
  margin-bottom: 9px;
}
.feature-grid p {
  font-size: 1rem;
  color: #634736;
}

/* ===============
   NEWS / LISTS
   =============== */
.news-list-teaser, .editor-picks-list, .event-list-snippet, .recommendation-list, .review-list, .event-cards, .award-cards, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.news-list-teaser li, .editor-picks-list li, .recommendation-list li, .review-list li, .event-cards li, .award-cards li, .team-list li {
  background: #fff6f2;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px 0 rgba(225, 168, 148, 0.07);
  padding: 18px 18px 13px 16px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.news-list-teaser li:hover,
.editor-picks-list li:hover,
.recommendation-list li:hover,
.review-list li:hover,
.event-cards li:hover,
.award-cards li:hover,
.team-list li:hover {
  box-shadow: 0 6px 16px 0 rgba(220, 86, 52, 0.095);  
  transform: translateY(-2px) scale(1.02);
}
.news-list-teaser h4, .editor-picks-list h4, .review-list h3, .event-cards h3, .award-cards h3, .team-list h3 {
  color: #be210c;
  margin-bottom: 5px;
  font-family: 'Bebas Neue', 'Open Sans', Arial, sans-serif;
}

.news-list-teaser p,
.editor-picks-list p,
.review-list p, .recommendation-list p,
.event-cards p, .award-cards p, .team-list p {
  color: #634736;
  font-size: 1rem;
}

.news-list-teaser li strong, .event-cards li span {
  color: #233155;
  font-weight: 700;
}

/* ================
   FILTER & TABS
   ================ */
.news-filters, .event-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 17px 0 19px 0;
  flex-wrap: wrap;
}
.news-filters select, .event-filters select, .event-filters input[type=search], .search-by-year select {
  background: #fff6f2;
  border: 1px solid #efc7b2;
  color: #233155;
  border-radius: 9px;
  font-size: 1rem;
  padding: 7px 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-left: 4px;
}
.category-tabs, .filters-by-type, .filter-by-category {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.category-tabs a, .filters-by-type a, .filter-by-category a {
  background: #fff6f2;
  color: #be210c;
  padding: 7px 18px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.16s, color 0.13s;
}
.category-tabs a.active, .filters-by-type a.active, .filter-by-category a.active,
.category-tabs a:hover, .filters-by-type a:hover, .filter-by-category a:hover {
  background: #be210c;
  color: #fff;
}

/* =========
  PAGINATION
  ========= */
.pagination {
  display: flex;
  gap: 8px;
  margin: 16px 0 0 0;
}
.pagination a {
  background: #fff6f2;
  color: #be210c;
  padding: 7px 15px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.13s, color 0.12s, box-shadow 0.12s;
}
.pagination a.active, .pagination a:hover {
  background: #be210c;
  color: #fff;
  box-shadow: 0 2px 5px 0 rgba(220,86,52,0.08);
}

/* ================
   TESTIMONIALS
   ================ */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  justify-content: flex-start;
}
.testimonial-card {
  color: #2d1e0c;
  font-size: 1.08rem;
  font-style: italic;
  transition: box-shadow 0.17s, transform 0.17s;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-style: normal;
  color: #be210c;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(220, 86, 52, 0.12);
  transform: translateY(-2px) scale(1.015);
}

/* ==================
   CTA, BUTTONS, LINKS
   ================== */
.cta, a.cta, .content-wrapper .cta {
  display: inline-block;
  font-family: 'Bebas Neue', Arial, sans-serif;
  background: #be210c;
  color: #fff;
  border-radius: 18px;
  padding: 13px 28px;
  margin-top: 10px;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px 0 rgba(220,86,52,0.10);
  transition: background 0.19s, transform 0.15s;
  border: none;
}
.cta:hover, .cta:focus {
  background: #E34234;
  transform: scale(1.05);
  color: #fff;
}
button, .content-wrapper a.cta, .content-wrapper button.cta {
  cursor: pointer;
}

/* ==========================
   FOOTER
   ========================== */
footer {
  background: #f7f5f3;
  border-top: 3px solid #f2e1da;
  margin-top: 60px;
  padding: 0 0 23px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 16px 23px 16px;
}
.footer-menu {
  margin-bottom: 12px;
  color: #be210c;
  font-size: 1.08rem;
}
.footer-menu a {
  color: #be210c;
  font-weight: 600;
  margin: 0 4px;
  transition: color 0.14s;
}
.footer-menu a:hover {
  color: #E34234;
}
.address, .contact-info {
  color: #233155;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px 8px;
  flex-wrap: wrap;
}
.address img, .contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.contact-info a {
  color: #be210c;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 5px;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.social-links a img {
  width: 34px; height: 34px; border-radius: 50%; transition: box-shadow 0.17s;
}
.social-links a:hover img {
  box-shadow: 0 4px 18px 0 rgba(179, 75, 46, 0.13);
}

/* ==========================
   BREADCRUMB
   ========================== */
.breadcrumb {
  font-size: 1rem;
  color: #233155b0;
  margin-bottom: 12px;
}

/* ==========================
   LEGAL, POLICY, TEXT PAGES
   ========================== */
.legal {
  background: #fff6f2;
  border-radius: 20px;
  margin-top: 28px;
  margin-bottom: 60px;
  padding: 30px 20px;
  box-shadow: 0 4px 11px 0 rgba(220,86,52,0.07);
}
.legal .content-wrapper {
  gap: 18px;
}
.legal .text-section {
  background: #fff;
  padding: 24px 18px 18px 18px;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(225, 168, 148, 0.07);
}
.legal ul {
  list-style: disc inside;
  margin-bottom: 18px;
  margin-left: 14px;
}

/* ==========================
   RESPONSIVE DESIGN
   ========================== */
@media (max-width: 1140px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .news-list-teaser, .editor-picks-list, .recommendation-list, .review-list, .event-cards, .award-cards, .team-list {
    gap: 16px;
  }
  .section, .legal {
    padding: 28px 9px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.35rem;}
  .container {
    padding: 0 6px;
  }
  .hero, .section, .legal {
    border-radius: 13px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .feature-grid, .news-list-teaser, .editor-picks-list, .recommendation-list, .review-list, .event-cards, .award-cards, .team-list {
    flex-direction: column;
    gap: 12px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonials-slider {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 2vw;
  }
  header .container {
    min-height: 60px;
    padding: 6px 4px;
  }
  h1 { font-size: 1.37rem; }
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe7;
  color: #233155;
  box-shadow: 0 -5px 22px 0 rgba(225, 168, 148, 0.13);
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  padding: 20px 16px 17px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  font-size: 1rem;
  animation: bannerIn 0.35s cubic-bezier(.61,.08,.35,1);
}
@keyframes bannerIn {
  from { opacity:0; transform: translateY(100%); }
  to   { opacity:1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 10px;
}
.cookie-banner .cookie-accept, .cookie-banner .cookie-reject, .cookie-banner .cookie-settings {
  padding: 7px 22px;
  border-radius: 13px;
  font-size: 1rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-weight: 500;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 1.5px 7px 0 rgba(225, 168, 148, 0.08);
}
.cookie-accept {
  background: #be210c;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #E34234;
  color: #fff;
}
.cookie-reject {
  background: #fff6f2;
  color: #be210c;
  border: 1.5px solid #be210c;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fde3dd;
  color: #E34234;
  border-color: #E34234;
}
.cookie-settings {
  background: #fffbe7;
  color: #233155;
  border: 1.5px solid #8d85a3;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #ebe3ce;
  color: #be210c;
}

/* Cookie consent modal overlay */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,49,85,0.22);
  transition: opacity 0.26s;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%) scale(1);
  background: #fff;
  z-index: 10011;
  width: 94vw;
  max-width: 414px;
  padding: 26px 24px 22px 24px;
  border-radius: 22px;
  box-shadow: 0 10px 55px 0 rgba(220,86,52,0.13);
  animation: cookieIn 0.29s cubic-bezier(.61,.08,.35,1);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes cookieIn {
  from { transform: translate(-50%, 44%) scale(0.93); opacity:0; }
  to   { transform: translate(-50%, -52%) scale(1); opacity:1; }
}
.cookie-modal h3 {
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fffbe7;
  border-radius: 12px;
  padding: 10px 15px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #E34234;
  width: 19px; height: 19px;
  border-radius: 5px;
}
.cookie-category input[disabled] { opacity: 0.68; }
.cookie-modal-buttons {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-close {
  background: none;
  color: #be210c;
  font-size: 1.2rem;
  padding: 3px 0 9px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
}
.cookie-modal-close:hover { color: #E34234; background: #ffebe3; }

/* ==========================
   ADDITIONAL CLASSES
   ========================== */
.values-icons {
  display: flex;
  gap: 28px;
  margin: 20px 0 20px 0;
  align-items: center;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul {
  margin-top: 8px;
}

.confirmation-message, .next-steps {
  font-size: 1.1rem;
  color: #634736;
  margin-bottom: 7px;
}

/* ===============
   MISC UTILITIES
   =============== */
.hide { display: none !important; }
.show { display: block !important; }

/* ===============
   SCROLLBAR STYLE
   =============== */
::-webkit-scrollbar { 
  width: 10px; 
  background: #ffebe3;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb { 
  background: #f7b9b1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e9a197;
}

/* ==========================
   ELEVATION / SHADOW UTILITIES
   ========================== */
.shadow-xs   { box-shadow: 0 1.5px 7px 0 rgba(225, 168, 148, 0.08); }
.shadow-s    { box-shadow: 0 2px 12px 0 rgba(225, 168, 148, 0.09); }
.shadow-m    { box-shadow: 0 4px 20px 0 rgba(225, 168, 148, 0.10); }
.shadow-l    { box-shadow: 0 8px 32px 0 rgba(179, 75, 46, 0.18); }

/* End of Styles */
