/* 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, main, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body, html { height: 100%; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; }
body {
  background: #191c1e;
  color: #ebebeb;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #FFBC42;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #e9f1fb;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
h1 { font-size: 2.8rem; margin-bottom: 24px; }
h2 { font-size: 2.1rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p { margin-bottom: 16px; line-height: 1.7; }
strong, b { color: #FFBC42; font-weight: 700; }


/* BRAND COLORS & VARS */
:root {
  --primary: #185C80;
  --secondary: #232323;
  --accent: #FFBC42;
  --bg-dark: #191c1e;
  --bg-light: #E9F1FB;
  --text-main: #ebebeb;
  --text-dark: #191c1e;
  --metal: #9ca0a7;
  --shadow: 0 4px 24px rgba(19,23,28,0.12);
}


/* MAIN CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(35,35,35,0.93);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #232323;
  border: 1px solid #31343A;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(30,33,38,0.06);
  position: relative;
  transition: transform 0.2s, box-shadow 0.22s, border 0.25s;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(24,92,128,0.22);
  border-color: var(--accent);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E9F1FB;
  color: #191c1e;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(30,33,38,0.08);
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.testimonial-card cite {
  font-style: italic;
  color: var(--primary);
  font-size: 0.96em;
  margin-left: 14px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.hero {
  background: linear-gradient(90deg, #212228 70%, #232323 100%);
  box-shadow: 0 4px 40px rgba(24,92,128,0.16);
  margin-bottom: 60px;
  border-bottom: 2px solid var(--primary);
  border-radius: 0 0 42px 42px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 48px;
  position: relative;
}
.hero .container, .hero .content-wrapper {
  gap: 20px;
}
.hero h1 {
  color: var(--accent);
  letter-spacing: 0.045em;
}
.hero p {
  color: #faf8f4;
  font-size: 1.16rem;
}


/* HEADER & NAVIGATION */
header {
  background: #191c1e;
  border-bottom: 2.5px solid var(--metal);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  padding: 16px 20px;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #E9F1FB;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.01rem;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 5px;
  transition: color 0.15s, background 0.18s;
  font-weight: 500;
  background: transparent;
}
header nav a:hover,
header nav a.active {
  background: var(--secondary);
  color: var(--accent);
}
header .btn-primary {
  margin-left: 16px;
}
header img {
  max-height: 48px;
  margin-right: 18px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2em;
  border: 0;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.20s, box-shadow 0.22s;
  box-shadow: 0 2px 10px rgba(24,92,128,0.04);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
  color: #232323;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #232323;
  transform: translateX(-110vw);
  opacity: 0;
  z-index: 2200;
  transition: transform 0.42s cubic-bezier(.55,.09,.68,.53), opacity 0.33s;
  padding: 26px 20px 44px 20px;
  box-shadow: 0 0 60px 10px #101214;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.5em;
  color: var(--accent);
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  text-align: left;
  font-size: 1.25em;
  color: #E9F1FB;
  padding: 12px 8px;
  border-radius: 7px;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  background: none;
  transition: background 0.18s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--accent);
}

@media (max-width: 1023px) {
  header nav { display: none; }
  header .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary) 85%, var(--metal) 100%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.2s;
  margin-top: 12px;
  box-shadow: 0 3px 18px rgba(24,92,128,0.09);
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: #232323;
  box-shadow: 0 4px 24px rgba(255,188,66,0.18);
}
.btn-secondary {
  background: none;
  color: var(--accent);
  font-family: 'Montserrat', 'Roboto', sans-serif;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 11px 26px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.16s, color 0.15s, border 0.17s;
}
.btn-secondary:hover {
  background: rgba(255,188,66,0.12);
  color: #fff;
  border-color: #fff;
}

/* UI CARDS, SECTION & MISC */
.feature-grid, .region-tip-grid, .event-description-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.feature-grid > div, .region-tip-grid > div, .event-description-cards > div {
  flex: 1 1 250px;
  background: #232323;
  border: 1px solid #31343A;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(30,33,38,0.05);
  padding: 26px 22px 20px 22px;
  min-width: 240px;
  min-height: 170px;
  position: relative;
  transition: box-shadow 0.22s, border 0.21s, transform 0.16s;
}
.feature-grid > div:hover,
.region-tip-grid > div:hover,
.event-description-cards > div:hover {
  box-shadow: 0 8px 28px rgba(24,92,128,0.15);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.01);
}

.tag {
  display: inline-block;
  background: #31343a;
  color: var(--accent);
  font-size: 0.86em;
  border-radius: 5px;
  padding: 2px 8px;
  margin-left: 8px;
}

.quick-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #232323;
  border-radius: 7px;
  padding: 14px 18px;
  box-shadow: 0 1px 6px rgba(24,92,128,0.07);
  font-size: 1.05em;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--accent);
}

.info-tips {
  background: #232323;
  color: var(--accent);
  border-radius: 8px;
  padding: 14px 22px;
  margin-top: 16px;
  margin-bottom: 22px;
  font-size: 1em;
}

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #232323;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 1px 10px rgba(24,92,128,0.06);
  color: var(--accent);
}
.map-legend ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.weather-overview {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #232323;
  border-radius: 8px;
  padding: 16px 22px;
  box-shadow: 0 1px 8px rgba(24,92,128,0.10);
  color: #FFBC42;
  font-size: 1.15em;
  margin-bottom: 14px;
}

.suggestions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.suggestions h3 {
  color: var(--accent);
}

.calendar-overview {
  background: #232323;
  color: #FFBC42;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.notice {
  background: #232323;
  border-left: 4px solid var(--accent);
  color: var(--accent);
  border-radius: 7px;
  padding: 14px 26px;
  margin-bottom: 20px;
  font-size: 1em;
}

/* NEWSLETTER/INFO BULLETS */
ul li, ol li {
  margin-bottom: 8px;
  color: #e0e0e0;
  font-size: 1em;
  line-height: 1.6;
}
li strong {
  color: var(--accent);
}


/* TEAM-INTRO & FOOTER LAYOUTS */
.team-intros {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.team-intros > div {
  flex: 1 1 260px;
  background: #232323;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(24,92,128,0.07);
  padding: 22px 20px;
  min-width: 210px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 54px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 20px;
}
footer .brand img {
  max-height: 36px;
  margin-bottom: 6px;
}
footer .brand span {
  color: #e5e7eb;
  font-size: 1.025em;
  font-family: 'Roboto', sans-serif;
}
.social-media-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
}
footer {
  background: linear-gradient(0deg, #191c1e 98%, #185C80 100%);
  padding: 54px 0 32px 0;
  border-top: 3px solid var(--metal);
  color: #e5e7eb;
  margin-top: 60px;
}
.contact-brief {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-brief p, .contact-brief a {
  color: #e5e7eb;
  font-size: 0.98em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-brief img {
  width: 17px;
  height: 17px;
  opacity: 0.77;
}

/* ADDRESS */
address {
  font-style: normal;
  color: #E9F1FB;
  background: #232323;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 18px;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
address p {
  color: #E9F1FB;
  margin-bottom: 0;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 10px;
}
address a {
  color: #FFBC42;
}
address a:hover { color: #185C80; }

/* MODAL/OVERLAY UNIVERSAL */
.modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31,32,32,0.79);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.19s;
}
.modal.open {
  display: flex;
}
.modal-content {
  background: #E9F1FB;
  color: #191c1e;
  border-radius: 13px;
  box-shadow: 0 9px 36px rgba(24,92,128,0.09);
  padding: 36px 24px 24px 24px;
  min-width: 320px;
  max-width: 90vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalIn 0.49s cubic-bezier(.48,1.35,.28,1);
}
@keyframes modalIn {
  from { transform: translateY(24px) scale(0.95); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232323;
  color: #E9F1FB;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding: 26px 34px 22px 34px;
  z-index: 3300;
  box-shadow: 0 -4px 32px rgba(24,92,128,0.12);
  opacity: 1;
  transition: transform 0.30s, opacity 0.2s;
  border-top: 3px solid var(--accent);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  font-size: 1.07em;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 1em;
  padding: 9px 20px;
}
.cookie-banner .btn-settings {
  background: none;
  color: var(--metal);
  border: none;
  font-size: 0.98em;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.16s;
}
.cookie-banner .btn-settings:hover { color: var(--accent); }

.cookie-modal .modal-content {
  background: #232323;
  color: #fff;
}
.cookie-modal h2 {
  color: #FFBC42;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1.1em;
  color: #FFBC42;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  accent-color: #185C80;
}
.cookie-modal .cookie-desc {
  color: #d4dae5;
  font-size: 0.98em;
  margin-top: 5px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 22px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  font-size: 1em;
  padding: 9px 20px;
  margin-top: 0;
}


/* MICRO-ANIMATION */
a, .btn-primary, .btn-secondary, .feature-grid > div, .card, .testimonial-card, .mobile-menu-toggle, .mobile-menu-close {
  transition: color 0.2s, background 0.22s, border 0.19s, box-shadow 0.22s, transform 0.15s;
}

/* RESPONSIVE QUERIES */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 10px; padding-right: 10px;
  }
  .footer-nav {
    gap: 24px;
  }
  .brand span {
    font-size: 1em;
  }
}
@media (max-width: 900px) {
  .feature-grid, .region-tip-grid, .event-description-cards, .team-intros {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  .hero { min-height: 180px; padding-top: 30px; }
  .section { padding: 22px 6px; margin-bottom: 34px; }
  .content-wrapper { gap: 12px; }
  .card-content { padding: 15px; }
  .feature-grid, .region-tip-grid, .event-description-cards, .team-intros {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px 22px 8px;
    font-size: 0.98em;
  }
  .modal-content {
    min-width: 96vw;
    padding: 22px 7px 18px 7px;
  }
}

@media (max-width: 480px) {
  .container { padding-left: 3px; padding-right: 3px; }
  .footer-nav nav { font-size: 0.98em; }
  .brand span { font-size: 0.97em; }
  .card-content { font-size: 0.99em; }
}


/* INDUSTRIAL MODERN AESTHETIC */
body,
header,
footer,
.section,
.card,
.feature-grid > div,
.region-tip-grid > div,
.event-description-cards > div,
address,
.map-legend,
.calendar-overview,
.info-tips,
.weather-overview,
.quick-info,
.modal-content {
  background: #232323;
  color: #ebebeb;
}
.cookie-banner, .testimonial-card {
  background: #E9F1FB;
  color: #191c1e;
}
h2,h3,h4,h5,h6,.btn-primary { font-family: 'Montserrat', 'Roboto', Arial, sans-serif; }
h1, .btn-primary { letter-spacing: 0.045em; }

/* METALLIC ACCENTS & INDUSTRIAL DETAILS */
.card, .feature-grid > div, .region-tip-grid > div, .event-description-cards > div, .footer-nav nav, .brand, .contact-brief, .testimonial-card {
  border: 1.5px solid var(--metal);
}
.section, .modal-content, .cookie-banner {
  box-shadow: 0 9px 44px rgba(98,110,123,0.14), 0 1px 2px rgba(72,78,92,0.08);
}
hr {
  border: none;
  border-top: 2px solid var(--metal);
  margin: 32px 0;
}

/* FOCUS STATE for Accessibility */
a:focus, .btn-primary:focus, .btn-secondary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 3px dashed var(--accent);
  outline-offset: 2px;
}

/* Miscellaneous */
::-webkit-scrollbar {
  width: 9px;
  background: #232323;
}
::-webkit-scrollbar-thumb {
  background: #434649;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #185C80;
}

/* Hide cookie banner on print */
@media print {
  .cookie-banner { display: none !important; }
}
