/* =========================
   Frosty Drimax Events
   Luxury Premium CSS Styles
   Responsive, Mobile-First, Flexbox Only
   Font: Montserrat (display), Open Sans (body)
   Gold accents, premium dark blue, elegant white, refined spacing
   ========================= */

/* ---- CSS RESET & 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, menu, 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, 
main, 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #f8f8fa;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #232533;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  line-height: 1.7;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }

/* ---- BRAND COLORS ---- */
:root {
  --color-primary: #175097;
  --color-secondary: #F2B134;
  --color-accent: #FFFFFF;
  --color-text: #232533;
  --color-muted: #707485;
  --color-bg: #f8f8fa;
  --color-gold-rgb: 242,177,52;
  --shadow-card: 0 10px 32px 0 rgba(23,80,151,0.07);
  --shadow-header: 0 2px 8px 0 rgba(23,80,151,0.06);
}

/* ---- FONT IMPORTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600;700&display=swap');

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #171923;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 26px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
p, li, ul {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #232533;
  margin-bottom: 16px;
}
strong { color: var(--color-primary); font-weight: 700; }
em { color: var(--color-secondary); }

ul {list-style: disc inside; padding-left: 22px; margin-bottom: 0;}
li {margin-bottom: 8px;}

/* ---- SPACING PATTERNS ---- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 10px;
    border-radius: 10px;
  }
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 12px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 700px;
}

/* ---- BUTTONS ---- */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 4px 28px 0 rgba(23,80,151,.09);
  transition: background 0.19s, color 0.18s, box-shadow 0.18s, border 0.18s;
  margin-top: 8px;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-accent);
  border: 2px solid var(--color-secondary);
  box-shadow: 0 2px 12px 0 rgba(242,177,52,0.14);
  position: relative;
}
.btn-primary::after {
  content: '';
  position: absolute;
  left: 17px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px;
  background: var(--color-secondary);
  border-radius: 99px;
  opacity: .65;
  z-index: 2;
  display: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 6px 18px rgba(23,80,151,0.15);
  border-color: var(--color-primary);
}

.btn-secondary {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  box-shadow: 0 2px 9px 0 rgba(23,80,151,0.06);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
  border-color: var(--color-primary);
}

/* ---- HEADER & NAVIGATION ---- */
header {
  width: 100%;
  padding: 26px 0 18px 0;
  background: #fff;
  box-shadow: var(--shadow-header);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1001;
  gap: 24px;
}
header > a > img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-left: 24px;
  flex: 1 0 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1rem;
  position: relative;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(var(--color-gold-rgb),0.1);
  color: var(--color-secondary);
}
header .btn-primary {
  margin-left: 18px;
  margin-right: 0;
  min-width: 136px;
}

.mobile-menu-toggle {
  display: none;
  padding: 10px 16px;
  background: var(--color-primary);
  color: var(--color-accent);
  border: none;
  font-size: 1.85rem;
  border-radius: 14px;
  margin-left: auto;
  cursor: pointer;
  z-index: 1052;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
    margin-left: 8px;
  }
  header .btn-primary {
    margin-left: 6px;
  }
}
@media (max-width: 900px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 310px;
  background: #fff;
  box-shadow: -4px 0 28px 0 rgba(23,80,151,0.15);
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.85,.02,.21,.99);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 30px 18px 0 26px;
  gap: 38px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--color-primary);
  font-size: 2.2rem;
  border: none;
  margin-bottom: 18px;
  align-self: flex-end;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
  line-height: 1;
  transition: color 0.14s, background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
  background: rgba(var(--color-gold-rgb),0.13);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 15px 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(var(--color-gold-rgb),0.12);
  color: var(--color-secondary);
}

@media (max-width: 400px) {
  .mobile-menu { width: 97vw; padding-left: 10vw; }
}

/* ---- MAIN SECTIONS & FLEX PATTERNS ---- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative; /* only used for decorative (e.g., gold bar) */
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #eceffa;
}
.card:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 5px;
  width: 40px;
  border-radius: 3px;
  background: var(--color-secondary);
  display: block;
  opacity: 0.62;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid, .card-container { gap: 14px; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: #f6f7fb;
  border-radius: 11px;
  border: 1.5px solid #e9ebf3;
  margin-bottom: 16px;
}

/* ---- EVENT & LISTING PATTERNS ---- */
.event-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.event-listing > div {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(23,80,151,.07);
  padding: 29px 22px;
  border: 1.5px solid #f0e9db;
  min-width: 280px;
  margin-bottom: 0;
  position: relative;
}
.event-listing > div h3 {color: var(--color-primary); font-size: 1.25rem; margin-bottom: 8px;}
.event-listing > div p {color: #49517a; margin-bottom: 8px; font-size: 1em;}

.filter-controls { margin-top: 12px; }
.filter-controls strong {color: var(--color-secondary);}
.filter-controls span {color: var(--color-primary); font-weight: bold;}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 18px 28px;
  border-radius: 13px;
  background: #fffbe8;
  border-left: 7px solid var(--color-secondary);
  box-shadow: 0 4px 22px 0 rgba(242,177,52,0.10);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.19s;
}
.testimonial-card p {
  color: #383326;
  font-size: 1.12rem;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: .98rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(242,177,52,0.18);
  border-color: var(--color-primary);
}

/* ---- FOOTER ---- */
footer {
  background: #182442;
  color: #fff;
  padding: 38px 0 16px 0;
  border-top: 7px solid var(--color-secondary);
  margin-top: 80px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.footer-menu a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.19s, text-decoration 0.17s;
  border-radius: 7px;
  padding: 4px 10px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
  background: rgba(var(--color-gold-rgb),0.14);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 0px;
}
.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 2px;
}
.footer-brand p {
  color: #c8cada;
  font-size: 0.98rem;
}
@media (max-width: 600px) {
  footer { padding: 21px 0 12px 0; }
  .footer-menu { gap: 16px; font-size: 0.92rem; flex-wrap: wrap; }
  .footer-brand { gap: 10px; }
}

/* ---- FORMS (for contact page in general purpose) ---- */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  border: 1.6px solid #d3d8ea;
  border-radius: 8px;
  padding: 13px;
  background: #fcfcfe;
  color: #232533;
  margin-bottom: 18px;
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(23,80,151,0.04);
  outline: none;
  transition: border 0.14s, box-shadow 0.15s;
}
input:focus, textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(242,177,52,0.18);
}
label { font-weight: 600; margin-bottom: 8px; display: block; }

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #171923;
  color: var(--color-accent);
  padding: 24px 16px 20px 24px;
  border-top: 4px solid var(--color-secondary);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  z-index: 4000;
  box-shadow: 0 -6px 35px 0 rgba(23,80,151,0.12);
  font-size: 1.06rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s cubic-bezier(.75,0,.22,1.0);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: auto;
}
.cookie-banner button, .cookie-banner a {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 9px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 10px 22px;
  font-size: 1rem;
  transition: background 0.14s, color 0.13s, box-shadow 0.16s;
  margin-right: 0;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 3px 14px 0 rgba(242,177,52,0.13);
}
.cookie-banner button:last-child {
  background: #fff;
  color: var(--color-primary);
  border: 1.3px solid var(--color-secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px 6px; gap: 22px; font-size: .98rem; }
  .cookie-banner-btns { margin-left:0; align-items: stretch; gap:11px; }
}

/* ---- COOKIE PREFERENCE MODAL ---- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4100;
  inset: 0 0 0 0;
  background: rgba(23,80,151, 0.13);
  backdrop-filter: blur(2.5px);
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 40px 28px 28px 28px;
  box-shadow: 0 15px 50px 0 rgba(23,80,151,0.17);
  width: 95vw;
  max-width: 440px;
  color: #252532;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  animation: fadeinUp 0.38s cubic-bezier(.77,.02,.21,.98);
}
@keyframes fadeinUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h3 { font-family: 'Montserrat', Arial, sans-serif; color: var(--color-primary); font-size: 1.25rem; margin-bottom: 18px; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-category input[type=checkbox] {
  width: 21px; height: 21px;
  accent-color: var(--color-secondary);
}
.cookie-category input[disabled] {
  accent-color: #bdbdbd;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}
.cookie-modal-actions button {
  padding: 9px 22px;
  border-radius: 8px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.13s, color 0.11s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  right: 14px; top: 14px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  border-radius: 50%;
  width: 35px; height: 35px;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal-close:hover { background: #faf6ea; color: var(--color-secondary); }

@media (max-width: 500px) {
  .cookie-modal { padding: 22px 7px 16px 7px; max-width: 99vw; }
}

/* ---- MICRO-INTERACTIONS / TRANSITIONS ---- */
a, button, .btn-primary, .btn-secondary {
  transition: background 0.17s, color 0.14s, box-shadow 0.18s, border 0.14s, transform 0.09s;
}
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2.8px solid var(--color-secondary);
  outline-offset: 1px;
}

/* ---- CUSTOM UTILITIES/MINOR OVERRIDES ---- */
::-webkit-scrollbar {
  width: 8px;
  background: #e8e8ee;
}
::-webkit-scrollbar-thumb {
  background: #cfb16a;
  border-radius: 8px;
}
::-webkit-input-placeholder { color: #bdbdbd; }
::-moz-placeholder { color: #bdbdbd; }
:-ms-input-placeholder { color: #bdbdbd; }
::placeholder { color: #bdbdbd; }

hr {
  border: none;
  border-top: 1.5px solid #e6e7ed;
  margin: 24px 0;
}

/* ---- RESPONSIVE CLASSES ---- */
@media (max-width: 900px) {
  .container { max-width: 99vw; padding: 0 7px; }
  .content-wrapper { gap: 13px; }
  .event-listing { gap: 13px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.05rem; }
  .section {padding: 18px 2px; }
  .card, .event-listing > div {padding: 20px 9px;}
}
@media (max-width: 540px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1rem; }
  h3, h4 { font-size: .97rem; }
  .section {margin-bottom: 20px;}
}

/* Remove blue autofill bg in Chrome */
input:-webkit-autofill, textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fcfcfe inset;
  box-shadow: 0 0 0 1000px #fcfcfe inset;
  -webkit-text-fill-color: #232533;
}

/* ---- ACCESSIBILITY ---- */
@media (hover: hover) and (pointer: fine) {
  a:focus-visible, button:focus-visible {
    outline: 2.8px solid var(--color-secondary);
    outline-offset: 1px;
  }
}

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