/* =======================
   FIRMAMENT BREEZE CONFERENCES
   VIBRANT, ENERGETIC STYLE CSS
   ======================= */

/* 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5F9FF;
  color: #181A35;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #185CA2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E2A23B;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}
strong {
  font-weight: 700;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* COLOR PALETTE */
:root {
  --primary: #185CA2;
  --primary-dark: #163b61;
  --secondary: #E2A23B;
  --secondary-dark: #ba7a18;
  --accent: #F5F9FF;
  --danger: #e64555;
  --success: #2cc281;
  --info: #2ca8e6;
  --bg: #F5F9FF;
  --text-main: #181A35;
  --text-light: #ffffff;
  --card-bg: #fff;
  --shadow: 0 4px 28px 0 rgba(24,92,162,0.10);
  --shadow-hover: 0 8px 32px 0 rgba(24,92,162,0.14);
}

/* ===============
   LAYOUT STRUCTURE
   =============== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.accent-bg {
  background: var(--accent);
}

/* ===============
   HEADER/NAVIGATION
   =============== */
header {
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(24,92,162,0.06);
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 0 0 0;
  position: relative;
}
.main-nav .logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.main-nav ul li {
  margin: 0;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--primary);
  padding: 10px 8px 10px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav ul li a.active,
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--primary);
  color: var(--text-light);
}
.main-nav .cta-button {
  margin-left: 28px;
}

/* Hamburger menu button - MOBILE ONLY */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 999;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary-dark);
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  background: var(--primary);
  box-shadow: -2px 0 20px 0 rgba(24,92,162,0.12);
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding-top: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 38px;
  padding-left: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #181A35;
}

@media (max-width: 980px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 12px;
    right: 16px;
  }
  .main-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100vw;
    min-width: 0;
  }
}

/* =============
   HERO SECTIONS
   ============= */
.hero {
  background: linear-gradient(90deg, #185CA2 65%, #E2A23B 98%);
  color: #fff;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 4px 22px 0 rgba(24,92,162,0.11);
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hero .content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 740px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.14;
  margin-bottom: 10px;
  color: #fff;
}
.hero p {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}

/* Vibrant underline effect */
.hero h1::after {
  content: '';
  display: block;
  width: 74px;
  height: 6px;
  margin-top: 18px;
  border-radius: 14px;
  background: var(--secondary);
  box-shadow: 0 10px 30px 0 rgba(226,162,59,0.10);
}


@media (max-width: 600px) {
  .hero {
    min-height: 200px;
    padding: 18px 0;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1.16;
  }
  .hero p {
    font-size: 16px;
  }
}

/* ============== 
   HEADINGS/TYPOGRAPHY
   ============== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  line-height: 1.18;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: 48px; }
h2 { font-size: 32px; margin-bottom: 10px; }
h3 { font-size: 24px; margin-bottom: 7px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
}

p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 0;
  color: var(--text-main);
}
li {
  margin-bottom: 7px;
}
blockquote {
  quotes: "\201C" "\201D"; 
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 500;
  padding-left: 12px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 8px;
}
.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

/* ==============
   CTA BUTTONS
   ============== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 16px;
  border: none;
  border-radius: 32px;
  padding: 13px 32px;
  margin-top: 14px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.16s;
  text-shadow: 0 2px 12px rgba(24,92,162,0.07);
  outline: none;
}
.cta-button.primary {
  background: var(--secondary);
  color: #181A35;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}
.cta-button.secondary {
  background: var(--primary);
  color: #fff;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: var(--secondary);
  color: #181A35;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}

/* ========
   SECTION LAYOUT FLEXBOX
   ======== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
  transition: box-shadow 0.23s, transform 0.16s;
  flex: 1 1 calc(48% - 24px);
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02);
}
.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: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(24,92,162,0.12);
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow 0.22s, transform 0.13s;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(24,92,162,0.18);
  transform: scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(24,92,162,0.08);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(226,162,59,0.15), var(--shadow-hover);
  transform: translateY(-3px) scale(1.03);
}

.feature-item img {
  width: 42px;
  height: 42px;
}

/* ==============
   GRID-LIKE REPEATED BLOCKS (Features, Services, etc.)
   ============== */
.feature-grid, .service-list, .speaker-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.service-list {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.speaker-list {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.article-list {
  flex-direction: row;
  align-items: flex-start;
}

/* Make feature and service items responsive flex */
.feature-item, .service-item, .speaker-category, .article-item {
  min-width: 240px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(24,92,162,0.08);
  border-radius: 14px;
  padding: 22px 18px;
  transition: box-shadow 0.21s, transform 0.17s;
}
.feature-item:hover, .service-item:hover, .speaker-category:hover,
.article-item:hover {
  box-shadow: 0 6px 20px 0 rgba(24,92,162,0.14), 0 2px 24px 0 rgba(226,162,59,0.06);
  transform: scale(1.018);
}
.price {
  color: var(--secondary);
  font-size: 18px;
  display: block;
  margin-top: 10px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .feature-grid, .service-list, .speaker-list, .article-list {
    gap: 16px;
    flex-direction: column;
  }
  .feature-item, .service-item, .speaker-category, .article-item, .card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
}

/* ===============
   TESTIMONIALS 
   =============== */
.testimonials,
.testimonials.accent-bg {
  padding-top: 40px;
  padding-bottom: 40px;
}
.testimonial-card {
  background: #fff;
  color: #182132;
  box-shadow: 0 2px 16px 0 rgba(24,92,162,0.11);
  border-left: 4px solid var(--primary);
  max-width: 640px;
}
.testimonial-card blockquote {
  font-size: 18px;
  line-height: 1.5;
  color: var(--primary-dark);
  margin-bottom: 8px;
  padding-left: 0;
  border-left: none;
  font-style: italic;
}
.testimonial-card .testimonial-name {
  color: var(--secondary);
  font-size: 15px;
}

@media (max-width: 600px) {
  .testimonials .testimonial-card {
    max-width: 98vw;
    padding: 15px;
  }
}

/* ===============
   FORMS (if present in future)
   =============== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  border-radius: 8px;
  border: 1.5px solid #e6eaf0;
  padding: 14px 12px;
  background: #fff;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: 2px solid var(--secondary);
}
label {
  display: block;
  margin-bottom: 7px;
  font-weight: 500;
  color: var(--primary);
}

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 30px 0 0 0;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav img {
  width: 64px;
  margin-right: 20px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
}
.footer-nav ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  border-radius: 4px;
  padding: 6px 12px;
}
.footer-nav ul li a:hover, .footer-nav ul li a:focus {
  color: var(--secondary);
  background: rgba(226,162,59,0.11);
}
.footer-details {
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 20px 0 8px 0;
  opacity: 0.92;
}

@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 6px;
  }
}

/* ===============
   RESPONSIVENESS
   =============== */
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 14px 2vw;
  }
}

/* ===============
   COOKIE BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #181A35;
  box-shadow: 0 -2px 18px 0 rgba(24,92,162,0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  z-index: 9999;
  animation: slideUp 0.42s cubic-bezier(.37,.84,.53,1.26);
  transition: transform 0.28s, box-shadow 0.21s;
}
@keyframes slideUp {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  font-size: 15px;
  margin: 0 0 0 0;
  flex: 1 1 60%;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  padding: 9px 22px;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.21s, transform 0.12s;
  margin: 0 0 0 0;
}
.cookie-btn.accept {
  background: var(--success);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #28a06c;
  transform: translateY(-1.5px) scale(1.03);
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b03240;
  transform: translateY(-1.5px) scale(1.03);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: #181A35;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #c59026;
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 8px;
  }
  .cookie-buttons {
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,92,162, 0.25);
  z-index: 10010;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: fadeIn 0.26s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 50px 0 rgba(24,92,162,0.14);
  width: 98vw;
  max-width: 420px;
  padding: 34px 24px 24px 24px;
  z-index: 10020;
  animation: modalPop .29s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 6px;
  font-size: 22px;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--accent);
  padding: 11px 13px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 500;
  color: var(--primary);
  font-size: 15px;
  margin: 0;
}
.cookie-modal .toggle-input {
  width: 34px;
  height: 19px;
  appearance: none;
  border-radius: 14px;
  background: #ddd;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-modal .toggle-input:checked {
  background: var(--success);
}
.cookie-modal .toggle-input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.cookie-modal .toggle-input:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  box-shadow: 0 2px 9px 0 rgba(24,92,162,0.08);
}
.cookie-modal .toggle-input:checked:before {
  transform: translateX(14px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 11px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-dark);
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--danger);
}

/* ===============
   MICRO-INTERACTIONS
   =============== */
.card, .feature-item, .service-item, .article-item, .testimonial-card, .cta-button {
  transition: box-shadow 0.22s, transform 0.15s, background 0.19s, color 0.19s;
}

/* ===============
   HIGHLIGHT EFFECTS
   =============== */
.feature-item:hover h3, .service-item:hover h3, .speaker-category:hover h3, .article-item:hover h3 {
  color: var(--secondary);
  text-shadow: 0 4px 16px rgba(226,162,59,0.09);
}

/* ================
   OTHER UTILITIES
   ================ */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.pt-0 { padding-top: 0!important; }
.pb-0 { padding-bottom: 0!important; }
.show { display: block!important; }
.hide { display: none!important; }

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