/* ===============================
   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;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #20354A;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}

/* CUSTOM SELECTION */
::selection {
  background: #FEBC2C;
  color: #20354A;
}

/* ===============================
   TYPOGRAPHY & BRAND SCALE
=============================== */
h1, h2, h3, h4, h5, h6 {
  color: #20354A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
}

p, li, span, blockquote {
  color: #20354A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

blockquote {
  font-style: italic;
  color: #20354A;
  opacity: 0.90;
  margin-bottom: 8px;
}

b, strong {
  font-weight: 600;
}

.subheadline {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 24px;
}

/* ===============================
   LAYOUT & CONTAINER
=============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section,
.section-hero,
.hero,
.features,
.latest-news,
.collections-preview,
.collections-list,
.review-cards,
.reviews-list,
.cta,
.news-feed,
.newsletter-signup,
.festival-listings,
.awards-list,
.about,
.legal,
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(32,53,74,0.03);
  /* lighter shadows for minimalist look */
}

.section:last-child,
.hero:last-child {
  margin-bottom: 0;
}

/* ===============================
   HEADER & PRIMARY NAVIGATION
=============================== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #F2F4F8;
  box-shadow: 0 2px 8px rgba(32,53,74,0.03);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  padding-top: 12px;
  padding-bottom: 12px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  padding: 6px 10px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #20354A;
  transition: background 0.15s, color 0.2s;
}
nav a.cta {
  background: #20354A;
  color: #fff;
  padding: 8px 18px;
  border-radius: 7px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(32,53,74,0.08);
  transition: background 0.18s, color 0.2s, box-shadow 0.2s;
}
nav a.cta:hover, nav a.cta:focus {
  background: #FEBC2C;
  color: #20354A;
  box-shadow: 0 4px 16px rgba(254,188,44,0.15);
}
nav a:hover, nav a:focus {
  background: #F2F4F8;
  color: #20354A;
}
nav a.active {
  color: #FEBC2C;
  font-weight: 700;
  background: #F2F4F8;
}
nav img {
  height: 36px;
  width: auto;
  margin-right: 14px;
}

/* ===============================
   MOBILE MENU & BURGER
=============================== */
.mobile-menu-toggle {
  display: none;
  background: #20354A;
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 16px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FEBC2C;
  color: #20354A;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 32px rgba(32,53,74,0.17);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.6,.1,.3,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 20px 20px 0;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #20354A;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FEBC2C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding: 0 30px;
}
.mobile-nav a {
  font-size: 1.25rem;
  width: 100%;
  padding: 10px 0;
  border-radius: 5px;
  color: #20354A;
  letter-spacing: 0.01em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.14s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2F4F8;
  color: #FEBC2C;
}
/* Hide main nav on mobile */
@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu.open {
    display: none !important;
  }
}

/* ===============================
   HERO & MAIN CTA
=============================== */
.hero, .section-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background: #F2F4F8;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(32,53,74,0.03);
  margin-bottom: 60px;
  padding: 60px 20px 60px 20px;
  text-align: center;
}
.hero .cta, .section-hero .cta {
  margin: 0 auto;
  margin-top: 16px;
  display: inline-block;
}

/* ===============================
   CTA BUTTONS
=============================== */
.cta {
  display: inline-block;
  background: #FEBC2C;
  color: #20354A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  border-radius: 9px;
  padding: 12px 30px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(254,188,44,0.13), 0 1.5px 5px rgba(32,53,74,0.06);
  transition: background 0.18s, color 0.19s, box-shadow 0.18s;
  cursor: pointer;
  text-align: center;
}
.cta:hover, .cta:focus {
  background: #20354A;
  color: #fff;
  box-shadow: 0 8px 32px rgba(32,53,74,0.14);
}

/* ===============================
   FLEXBOX LAYOUT COMPONENTS
=============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(32,53,74,0.04);
  padding: 28px 22px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 7px 28px rgba(32,53,74,0.10);
  transform: translateY(-2px) scale(1.017);
}
.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;
  background: #F2F4F8;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(32,53,74,0.045);
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  color: #20354A;
  opacity: 1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MARGIN, GAPS AND SPACING */
.section, .section-hero, .hero {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .features ul, .review-cards, .collection-cards, .festival-overview, .award-cards, .value-cards {
  gap: 24px;
}
.card, .card-container > *, .review-cards > *, .collection-cards > *, .festival-overview > *, .award-cards > *, .value-cards > * {
  margin-bottom: 20px;
}
.content-wrapper {
  gap: 24px;
}

/* ===============================
   FEATURES & CARDS
=============================== */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 38px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.features ul li {
  display: flex;
  align-items: center;
  background: #F2F4F8;
  border-radius: 12px;
  padding: 16px 22px;
  min-width: 230px;
  box-shadow: 0 2px 8px rgba(32,53,74,0.04);
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 0;
}
.features ul li img {
  width: 28px;
  height: 28px;
}

.collection-teasers, .collection-cards, .review-cards, .festival-overview, .award-cards, .value-cards, .winner-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.collection-teasers > div,
.collection-cards > div,
.review-cards > div,
.festival-overview > div,
.award-cards > div,
.value-cards > div,
.winner-profiles > div {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 1px 6px rgba(32,53,74,0.05);
  transition: box-shadow 0.16s, transform 0.16s;
}
.collection-teasers > div:hover,
.collection-cards > div:hover,
.review-cards > div:hover,
.festival-overview > div:hover,
.award-cards > div:hover,
.value-cards > div:hover,
.winner-profiles > div:hover {
  box-shadow: 0 5px 16px rgba(32,53,74,0.09);
  transform: translateY(-1.5px) scale(1.012);
}

.editors-choice, .editors-picks, .top-rated, .spotlight-festival, .visitor-info, .award-highlights, .editorial-principles {
  background: #F2F4F8;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 1rem;
  margin-top: 10px;
  color: #20354A;
  font-weight: 500;
  box-shadow: 0 1.5px 7px rgba(32,53,74,0.04);
}

.view-all, .archive-link {
  display: inline-block;
  margin-top: 18px;
  color: #20354A;
  background: #F2F4F8;
  padding: 8px 22px;
  border-radius: 7px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.14s, color 0.13s;
}
.view-all:hover, .archive-link:hover {
  background: #FEBC2C;
  color: #20354A;
}

.topic-filters, .sort-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.topic-filters button, .sort-filters button {
  background: #F2F4F8;
  color: #20354A;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.15s;
  border: none;
  margin-bottom: 0;
}
.topic-filters button:hover, .sort-filters button:hover,
.topic-filters button:focus, .sort-filters button:focus {
  background: #FEBC2C;
  color: #20354A;
  box-shadow: 0 2px 8px rgba(254,188,44,0.08);
}

.news-list, .news-article-list, .review-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.news-list article, .news-article-list article, .review-snippets > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(32,53,74,0.03);
  padding: 18px 16px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.news-list article:hover, .news-article-list article:hover, .review-snippets > div:hover {
  box-shadow: 0 4px 18px rgba(32,53,74,0.08);
  transform: scale(1.013);
}

.news-categories, .calendar, .award-categories, .winners-list, .festival-tips {
  margin: 24px 0 14px 0;
}
.news-categories h3, .calendar h3, .award-categories h3, .winners-list h3, .festival-tips ul {
  margin-bottom: 10px;
}

.news-categories ul, .calendar ul, .award-categories ul, .winners-list ul, .festival-tips ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
}
.news-categories li, .calendar li, .award-categories li, .winners-list li, .festival-tips li {
  background: #F2F4F8;
  color: #20354A;
  border-radius: 7px;
  padding: 7px 16px;
  font-size: 1rem;
}

/* ===============================
   STAR RATINGS
=============================== */
.star-ratings {
  color: #FEBC2C;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}

/* ===============================
   FOOTER STYLING
=============================== */
footer {
  border-top: 1px solid #F2F4F8;
  padding-top: 20px;
  padding-bottom: 30px;
  background: #fff;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-menu {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #20354A;
  opacity: 0.87;
  transition: color 0.12s, opacity 0.17s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #FEBC2C;
  opacity: 1;
}
footer .contact-info, footer .address {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.98rem;
  opacity: 0.93;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
footer .contact-info img, footer .address img {
  height: 18px;
  width: 18px;
  margin-right: 3px;
}

/* ===============================
   CONTACT & MAP BLOCKS
=============================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 6px;
}
.contact-info img {
  vertical-align: middle;
  margin-right: 5px;
  height: 18px;
  width: 18px;
}
.map-location {
  margin-top: 20px;
  padding: 15px 19px;
  background: #F2F4F8;
  border-radius: 10px;
  font-size: 1rem;
  color: #20354A;
  box-shadow: 0 1px 5px rgba(32,53,74,0.04);
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
=============================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #20354A;
  color: #fff;
  padding: 22px 20px 22px 20px;
  box-shadow: 0 -2px 24px rgba(32,53,74,0.09);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: banner-fade-in 0.35s cubic-bezier(.65,.08,.24,1);
}
@keyframes banner-fade-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  opacity: 0.96;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  padding: 9px 20px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.18s;
  border: none;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #FEBC2C;
  color: #20354A;
  box-shadow: 0 2px 8px rgba(254,188,44,0.10);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #fff;
  color: #20354A;
}
.cookie-banner .reject {
  background: #fff;
  color: #20354A;
  border: 1px solid #F2F4F8;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #F2F4F8;
  color: #20354A;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #FEBC2C;
  color: #20354A;
  border-color: #FEBC2C;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,53,74,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  animation: modal-bg-in 0.32s cubic-bezier(.67,.04,.32,.87);
}
@keyframes modal-bg-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #20354A;
  border-radius: 17px;
  box-shadow: 0 8px 32px rgba(32,53,74,0.14);
  padding: 38px 30px 30px 30px;
  min-width: 350px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-slide-in 0.35s cubic-bezier(.6,.12,.36,1);
  position: relative;
}
@keyframes modal-slide-in {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}
.cookie-modal input[type=checkbox], .cookie-modal input[type=radio] {
  width: 20px;
  height: 20px;
  accent-color: #FEBC2C;
  cursor: pointer;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 20px; right: 22px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #20354A;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #FEBC2C;
}
.cookie-modal .modal-btn-row {
  display: flex;
  gap: 14px;
}
.cookie-modal .modal-btn-row button {
  padding: 9px 20px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/* ===============================
   THANK YOU PAGE
=============================== */
.thank-you-message {
  font-size: 1.2rem;
  color: #20354A;
  margin-bottom: 15px;
}
.next-steps {
  margin-top: 20px;
}

/* ===============================
   ACCESSIBILITY: FOCUS VISIBLE
=============================== */
a:focus-visible, button:focus-visible {
  outline: 2px solid #FEBC2C;
  outline-offset: 2px;
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media (max-width: 900px) {
  .features ul, .collection-teasers, .collection-cards, .review-cards, .festival-overview, .award-cards, .value-cards, .winner-profiles, .news-list, .news-article-list, .review-snippets {
    gap: 16px;
  }
  .hero, .section-hero {
    padding: 38px 6px 38px 6px;
    min-height: 220px;
    font-size: 1.03rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  h3 {
    font-size: 1.09rem;
  }
  .section, .section-hero, .hero {
    padding: 24px 7px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .card, .collection-teasers > div,
  .collection-cards > div,
  .review-cards > div,
  .festival-overview > div,
  .award-cards > div,
  .value-cards > div,
  .winner-profiles > div,
  .news-list article,
  .news-article-list article {
    min-width: 90vw;
    max-width: 98vw;
      padding: 16px 7px;
  }
  .content-grid, .card-container,
  .collection-teasers,
  .collection-cards,
  .review-cards,
  .festival-overview,
  .award-cards,
  .value-cards,
  .winner-profiles,
  .features ul,
  .news-list,
  .news-article-list,
  .review-snippets {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-menu {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  .cookie-modal .cookie-modal-content {
    min-width: 90vw;
    padding: 19px 5vw 16px 5vw;
  }
}

/* ===============================
   TRANSITIONS / MICRO-ANIMATIONS
=============================== */
button, a.cta, .card, .testimonial-card, .cookie-banner, .view-all, .archive-link, .topic-filters button, .sort-filters button {
  transition: background 0.18s, color 0.15s, transform 0.13s, box-shadow 0.18s;
}

/* ===============================
   UTILITY CLASSES
=============================== */
.hide {
  display: none !important;
}
.flex {
  display: flex !important;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-20 {
  gap: 20px !important;
}
.gap-24 {
  gap: 24px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

/* ===============================
   PRINT STYLES
=============================== */
@media print {
  * {
    color: #000 !important;
    background: none !important;
    box-shadow: none !important;
  }
  nav, .mobile-menu, .cookie-banner, .cookie-modal, .cta, footer {
    display: none !important;
  }
  .container, .section, .section-hero, .hero {
    padding: 0 !important;
    margin: 0 !important;
  }
}
