/* ---------------------------------------------------------- */
/*           CSS RESET & NORMALIZE - CORPORATE BASE           */
/* ---------------------------------------------------------- */
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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F4F7F9;
  color: #142432;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #15607A;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #DAA03E;
  text-decoration: underline;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #0B3340;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
h5, h6 {
  font-size: 1rem;
}
p {
  font-size: 1.08rem;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

/* --------------------- GENERAL LAYOUT CONTAINERS --------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ------------- HEADER & NAVBAR - PROFESSIONAL CORPORATE STYLE ------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(22,47,82,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  position: relative;
  min-height: 70px;
  z-index: 10;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  color: #15607A;
  padding: 8px 6px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4F7F9;
  color: #DAA03E;
}
.cta-button {
  background: #15607A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 24px;
  font-size: 1.1rem;
  box-shadow: 0 3px 12px rgba(21,96,122,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  border: none;
  margin-left: 24px;
  letter-spacing: 0.03em;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #DAA03E;
  color: #142432;
  box-shadow: 0 6px 16px rgba(21,96,122,0.12);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #15607A;
  font-size: 2rem;
  margin-left: 10px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: background .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e1ebf2;
}

/* ------------------------ MOBILE MENU ----------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,96,122,0.97);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  color: #fff;
  background: none;
  font-size: 2.2rem;
  margin: 18px 18px 6px 0;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #165d73;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  margin-top: 24px;
  padding-left: 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 12px 0 8px 2px;
  border-radius: 4px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(218,160,62,0.17);
  color: #DAA03E;
}

/* Hide main nav and show burger button below 960px */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---------------------------------------------------------- */
/*                 HERO SECTIONS & PAGE TITLES               */
/* ---------------------------------------------------------- */
.hero {
  background: #F4F7F9;
  box-shadow: 0 2px 10px rgba(21,96,122,0.05);
  padding: 60px 0 36px 0;
}
.hero h1 {
  color: #15607A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero p {
  color: #23404B;
  font-size: 1.25rem;
  margin-bottom: 28px;
  font-family: 'Roboto', sans-serif;
}
.hero .cta-button {
  margin-top: 10px;
}

/* ---------------------------------------------------------- */
/*                   FEATURES & CARD DESIGN                   */
/* ---------------------------------------------------------- */
.features, .services {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 26px rgba(21,96,122,0.07), 0 1.5px 2px rgba(40,80,112,0.01);
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card {
  background: #F4F7F9;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(21,96,122,0.06);
  padding: 28px 20px 24px 20px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  max-width: 95%;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 28px rgba(21,96,122,0.15);
  transform: translateY(-4px) scale(1.015);
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  filter: brightness(1);
}
.feature-card h3 {
  color: #15607A;
  font-size: 1.26rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 1.04rem;
  color: #23404B;
  margin-bottom: 0;
}

/* ---------------------------- TESTIMONIALS ---------------------------- */
.testimonials {
  margin-bottom: 60px;
  background: #F4F7F9;
  padding: 40px 0;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(21,96,122,0.08);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(21,96,122,0.08);
  min-width: 260px; 
  max-width: 370px;
  margin-bottom: 20px;
  color: #23404B;
  font-size: 1.08rem;
  font-style: italic;
  position: relative;
  transition: box-shadow 0.15s;
}
.testimonial-card p {
  color: #142432;
  font-size: 1.08em;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #15607A;
  font-style: normal;
  font-weight: 500;
  font-size: 1.01em;
  margin-top: 4px;
}
.client-logos-row {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 0;
}
.client-logos-row img {
  width: 44px;
  max-width: 64px;
  opacity: .85;
  transition: opacity 0.18s;
}
.client-logos-row img:hover {
  opacity: 1;
}

/* ---------------------- CONTENT TEXT AND IMAGE FLEX LAYOUT ---------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ---------------------- CARDS & FLEXBOX LISTS ---------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px rgba(21,96,122,0.1);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(21,96,122,0.13);
  transform: translateY(-3px) scale(1.014);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.festival-categories, .festival-highlights-list, .calendar-preview, .key-performers, .event-features, .service-benefits-list, .client-outcomes, .quick-faq, .team-highlights {
  margin-top: 18px;
  padding: 14px 16px 10px 18px;
  background: #f8fbfd;
  border-radius: 10px;
  box-shadow: 0 0.5px 2px rgba(21,96,122,0.04);
}

/* ------------------- SECTION SPACING + FLEX POSITIONS (MANDATORY RULES) ---------------- */
.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; }

/* ------------------------ FOOTER ------------------------ */
footer {
  background: #15607A;
  color: #fff;
  padding: 38px 20px 30px 20px;
  margin-top: 64px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #F4F7F9;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: .9;
  font-size: 1.06rem;
  transition: color 0.14s, opacity 0.14s;
}
.footer-nav a:hover {
  color: #DAA03E;
  opacity: 1;
}
.footer-contact {
  font-size: 1.02rem;
  margin-top: 8px;
}
.footer-contact a {
  color: #fff;
  border-bottom: 1.5px dotted #fff6;
  transition: color 0.16s;
}
.footer-contact a:hover {
  color: #DAA03E;
  border-bottom: 1.5px solid #DAA03E;
}

/* ------------------------ RESPONSIVE DESIGN --------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
    padding: 0 12px;
  }
  .feature-grid { gap: 16px; }
  .testimonial-slider { gap: 16px; }
  .client-logos-row { gap: 16px; }
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 20px; }
  .testimonial-slider { flex-direction: column; align-items: stretch; gap: 20px; }
  .client-logos-row { gap: 11px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero h1 { font-size: 2.08rem; }
  .hero { padding: 36px 0 24px 0; }
  .section { margin-bottom: 38px; padding: 24px 7px; }
  .feature-card, .testimonial-card { min-width: 210px; padding: 18px 11px; }
  .footer-nav { flex-direction: column; gap: 7px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 14px; }
  .client-logos-row, .card-container { flex-direction: row; gap: 8px; }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 1.28rem; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1rem; }
  .feature-card, .testimonial-card { min-width: 155px; }
}

/* ------------------ BUTTONS & INTERACTIVES ------------------ */
button, .cta-button, .footer-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.14s, color 0.15s, box-shadow 0.15s;
}
button:active, .cta-button:active {
  filter: brightness(0.95);
}
button:focus-visible, .cta-button:focus-visible {
  outline: 2px solid #15607A;
}

/* ------------------ COOKIE CONSENT BANNER ------------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #142432;
  color: #fff;
  box-shadow: 0 -2px 20px rgba(34,56,80,0.13);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 22px 38px;
  font-size: 1.02rem;
  animation: slideUpCookie 0.50s cubic-bezier(0.57,0.01,0.25,1);
}
#cookie-banner.hide {
  transform: translateY(120%);
  transition: transform 0.26s cubic-bezier(0.79,0,0.23,1);
}
@keyframes slideUpCookie {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0%); }
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 24px;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .17s, color .18s, box-shadow .18s;
}
.cookie-btn.accept {
  background: #15607A;
  color: #fff;
}
.cookie-btn.accept:hover { background: #DAA03E; color: #142432; }
.cookie-btn.reject {
  background: #fff;
  color: #15607A;
  border: 1.5px solid #15607A;
}
.cookie-btn.reject:hover { background: #EBF3F7; }
.cookie-btn.settings {
  background: #DAA03E;
  color: #23404B;
}
.cookie-btn.settings:hover { background: #15607A; color: #fff; }

/* -------- COOKIE PREFERENCES MODAL (CATEGORIES, TOGGLES) ------- */
#cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(21,96,122,0.28);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-box {
  background: #fff;
  color: #23404B;
  border-radius: 14px;
  max-width: 98vw;
  min-width: 320px;
  max-width: 410px;
  padding: 32px 28px 22px 28px;
  box-shadow: 0 10px 34px rgba(21,96,122,0.19);
  animation: fadeUp .28s cubic-bezier(0.37,0,.31,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@keyframes fadeUp {
  0% { transform: translateY(70px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-box h2 {
  margin-bottom: 6px;
  font-size: 1.16rem;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  background: #f4f7f9;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 1.02rem;
}
.cookie-category-row .category-label {
  font-weight: 500;
  color: #15607A;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input[type=checkbox] {
  accent-color: #15607A;
  width: 19px;
  height: 19px;
  margin-right: 6px;
}
.cookie-essential-label {
  color: #142432;
  font-weight: 550;
  font-size: 1em;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  color: #15607A;
  font-size: 1.48rem;
  border-radius: 20px;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .13s;
}
.cookie-modal-close:hover {
  background: #EBF3F7;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

/* ---------------------- FORMS (FOR FUTURE-PROOFING) ---------------------- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 7px;
  border: 1.5px solid #D8E1E5;
  margin-bottom: 10px;
  outline: none;
  color: #142432;
  background: #fff;
  transition: border 0.15s, box-shadow 0.15s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #15607A;
  box-shadow: 0 0 2px #15607A11;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15607A;
  font-weight: 500;
  font-size: 1.025rem;
}

/* ---------------- ACCESSIBILITY / FOCUS STATES ----------------- */
a:focus, button:focus, .cta-button:focus, .footer-nav a:focus {
  outline: 2px solid #15607A;
  outline-offset: 2px;
}

/* --------------------------------- UTILITIES -------------------------------- */
.bg-accent { background: #F4F7F9 !important; }
.bg-primary { background: #15607A !important; color: #fff !important; }
.bg-secondary { background: #DAA03E !important; color: #142432 !important; }
.text-primary { color: #15607A !important; }
.text-secondary { color: #DAA03E !important; }
.text-muted { color: #6d7e8c !important; }
.rounded { border-radius: 24px !important; }
.shadow { box-shadow: 0 2px 10px rgba(21,96,122,0.09) !important; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ---- UI MICRO-INTERACTIONS (TRANSITIONS & SOFT-ANIMATION) ---- */
.card, .feature-card, .testimonial-card, .cta-button, .cookie-btn, .mobile-menu, header, .mobile-menu-toggle {
  transition: box-shadow .18s, background .18s, color .16s, transform .12s;
}
/* subtle fade in up */
.fade-in-up { animation: fadeUp .6s cubic-bezier(0.58,0,.28,1); }

/* -------------- PRINT OPTIMIZATION (hide nav, cookie) ------------- */
@media print {
  header, footer, #cookie-banner, #cookie-modal, .mobile-menu { display: none !important; }
  body { background: #fff !important; }
}

/* ---------------------------------------------------------- */
/* END OF PROFESSIONAL CORPORATE CSS FOR FROSTY SUDS FESTIVALS */
/* ---------------------------------------------------------- */
