/* ============================================================================
   SOCLA 2026 NATIONAL CONFERENCE WEBSITE
   MASTER GLOBAL STYLESHEET
   
   This consolidates all styles from 13 pages into one maintainable CSS file.
   Load this ONCE in Page 0 (pre-head code) - do NOT duplicate.
   ============================================================================ */

/* ============================================================================
   1. FONT IMPORTS & VARIABLES
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@1,700&family=Mulish&family=Overpass:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Philosopher:ital@1&family=Roboto&family=Space+Grotesk:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700;800&family=Lato:wght@300;400;700;900&display=swap');

/* CSS Variables - Update here for global changes */
:root {
  /* Colors */
  --primary-blue: #0056b3;
  --primary-dark-blue: #0277bd;
  --accent-orange: #cc6633;
  --accent-green: #26c667;
  --accent-red: #ff0033;
  --text-primary: #222222;
  --text-secondary: #555555;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-grey: #ebebeb;
  --link-blue: #3366ff;
  --link-visited: #1a0dab;
  
  /* Typography */
  --font-primary: 'Overpass', 'Open Sans', Arial, sans-serif;
  --font-secondary: 'Lato', 'Open Sans', Arial, sans-serif;
  --font-mono: 'IBM Plex Sans', monospace;
  
  /* Font Sizes */
  --fs-h1: 43px;
  --fs-h2: 32px;
  --fs-h3: 24px;
  --fs-h4: 21px;
  --fs-h5: 18px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-xs: 12px;
  
  /* Line Heights */
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.6;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 60px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 15px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --shadow-xl: 0 10px 40px rgba(0,0,0,0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================================================
   2. RESET & BASE STYLES
   ============================================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background-color: var(--bg-white);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
}

/* ============================================================================
   3. TYPOGRAPHY
   ============================================================================ */

h1, .h1, .size-48, .is-title1-48, .is-title-bold, .is-upper {
  font-family: var(--font-secondary);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

h2, .h2, .size-32, .is-title1-32 {
  font-family: var(--font-secondary);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

h3, .h3, .size-21, .size-24 {
  font-family: var(--font-secondary);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: var(--lh-normal);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

h4, .h4 {
  font-family: var(--font-secondary);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

p {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

/* Typography Utilities */
.is-title-lite {
  font-weight: 300;
}

.is-title-bold {
  font-weight: 700;
}

.is-upper {
  text-transform: uppercase;
}

.size-12 {
  font-size: var(--fs-xs);
}

.size-18 {
  font-size: 18px;
}

.size-32 {
  font-size: var(--fs-h2);
}

.size-48 {
  font-size: 48px;
  line-height: 1;
}

.size-80 {
  font-size: 80px;
}

/* ============================================================================
   4. LINKS & TEXT UTILITIES
   ============================================================================ */

a {
  color: var(--link-blue);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--accent-orange);
}

a:visited {
  color: var(--link-visited);
}

/* Links with proper security */
a[target="_blank"]::after {
  /* Optional: add icon for external links */
}

/* ============================================================================
   5. LAYOUT UTILITIES
   ============================================================================ */

.container-fluid, .container-fluid-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.is-container {
  padding-left: 20px;
  padding-right: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-3, .col-md-4, .col-md-6, .col-md-12,
.col-lg-4, .col-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.center {
  text-align: center;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ============================================================================
   6. NAVIGATION
   ============================================================================ */

nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--primary-blue) !important;
  z-index: 1000;
  transition: all var(--transition-normal);
}

nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand .navbar-nav {
  gap: 50px;
}

nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand .navbar-nav .nav-link {
  color: var(--text-white) !important;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color var(--transition-normal);
}

nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand .nav-link.active {
  font-weight: 900;
  color: var(--text-white) !important;
}

nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand .navbar-nav .nav-link:hover {
  color: #cce0ff !important;
}

/* Navbar Toggler (Hamburger) */
nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand .navbar-toggler {
  border-color: var(--text-white) !important;
}

nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(245,245,245,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Mobile Navigation */
@media only screen and (max-width: 768px) {
  nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand {
    background-color: var(--primary-blue) !important;
  }

  nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand .navbar-nav {
    gap: 10px;
  }

  nav.navbar.navbar-expand-md.navbar-dark.bg-dark.nav-brand .navbar-nav .nav-link {
    color: var(--text-white) !important;
  }

  ul.menu-reg-btn {
    display: block;
  }
}

.menu-reg-btn {
  display: none;
}

/* ============================================================================
   7. BUTTONS
   ============================================================================ */

.is-btn, button, a.register-btn {
  display: inline-block;
  padding: 12px 26px;
  background-color: var(--primary-blue);
  color: var(--text-white) !important;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.is-btn:hover, button:hover, a.register-btn:hover {
  background-color: #003d82;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Button Variants */
.is-btn-ghost1, .is-btn-ghost {
  background-color: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white) !important;
}

.is-btn-ghost1:hover, .is-btn-ghost:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--text-white);
}

.is-btn-small {
  padding: 8px 16px;
  font-size: var(--fs-xs);
}

.is-btn-ghost1.is-upper {
  font-size: 12px;
  padding: 10px 20px;
}

.register-btn {
  padding: 12px 28px;
  background: var(--link-blue);
  color: var(--text-white) !important;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 16px;
}

.register-btn:hover {
  background: #1e48d9;
  transform: translateY(-2px);
}

/* ============================================================================
   8. HERO SECTION
   ============================================================================ */

.hero {
  position: relative;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, rgba(0,86,179,0.9), rgba(2,119,189,0.9));
  color: var(--text-white);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 74px;
  font-weight: bold;
  line-height: 71px;
  margin-bottom: var(--spacing-lg);
  color: var(--text-white);
}

.hero-subtitle {
  font-size: 25px;
  text-transform: uppercase;
  background-color: var(--text-white);
  color: var(--text-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.hero-reg-btn {
  margin-top: 60px;
}

.hero-reg-btn a {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
  background-color: var(--text-white);
  padding: 15px 35px;
  color: var(--text-primary) !important;
  font-weight: 600;
  text-decoration: none;
}

/* Portal Buttons */
.portal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.portal-buttons a {
  white-space: nowrap;
}

/* ============================================================================
   9. SECTIONS & BOXES
   ============================================================================ */

.is-section {
  padding: var(--spacing-2xl) 0;
  background-color: var(--bg-white);
}

.is-section-auto {
  padding: auto;
}

.is-section-20 {
  padding: 20px 0;
}

.is-section-60 {
  padding: 60px 0;
}

.is-section-100 {
  padding: 100px 0;
}

.is-box {
  position: relative;
  overflow: hidden;
}

.is-box-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-bg-light {
  background-color: var(--bg-white);
}

.is-bg-grey {
  background-color: var(--bg-grey);
}

.is-dark-text {
  color: var(--text-primary);
}

.is-light-text {
  color: var(--text-white);
}

.is-opacity-85 {
  opacity: 0.85;
}

/* Overlay Effects */
.is-overlay {
  position: relative;
}

.is-overlay-bg {
  background-size: cover;
  background-position: center;
}

.is-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
}

/* ============================================================================
   10. CARDS (Speakers, Sponsors, Tickets, Rooms)
   ============================================================================ */

.speaker-card {
  text-align: center;
  margin-bottom: 40px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.speaker-card img {
  border-radius: var(--radius-full);
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--bg-grey);
}

.speaker-card h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.speaker-card p {
  color: var(--accent-orange);
  font-weight: 600;
  margin: 10px 0;
}

.box-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.box-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.box-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.box-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.box-content p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Ticket Cards */
.ticket-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.ticket-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.ticket-icon {
  font-size: 1.8rem;
  color: var(--link-blue);
  margin-bottom: 12px;
}

.ticket-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ticket-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: -4px;
  margin-bottom: 8px;
}

.ticket-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--link-blue);
  margin-bottom: 18px;
}

/* Room Cards */
.room-card {
  background: var(--bg-white);
  padding: 25px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  max-width: calc(100% - 60px);
  margin: 30px auto;
}

.room-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.room-card-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.room-card-text {
  /* text takes up available space */
}

.room-card-image {
  margin-top: auto;
  text-align: center;
}

.room-card-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.room-card h1 {
  font-size: 32px;
  line-height: 1.3;
}

/* Sponsor Cards */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 100%;
  gap: 16px;
}

.sponsor-card {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.logo-container {
  margin-bottom: 10px !important;
}

.sponsor-logo {
  max-height: 80px;
  object-fit: contain;
}

.sponsor-caption {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  color: var(--text-light);
}

/* ============================================================================
   11. SOCIAL MEDIA ICONS
   ============================================================================ */

.is-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.is-social a {
  text-decoration: none;
  color: var(--text-primary);
  transition: color var(--transition-normal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-social a:hover {
  color: var(--accent-orange);
}

.icon {
  font-family: Ionicons;
}

.icon.ion-social-linkedin,
.icon.ion-ios-contact-outline,
.icon.ion-social-dribbble-outline,
.icon.ion-chatbubbles,
.icon.ion-ios-email-outline {
  transition: all var(--transition-normal);
}

/* ============================================================================
   12. MODALS
   ============================================================================ */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 90%;
  position: relative;
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  color: var(--text-primary);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideIn 0.3s ease;
}

.modal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.modal-content p {
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-bottom: 15px;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-normal);
}

.close-btn:hover {
  color: var(--accent-orange);
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================================
   13. FAQ ACCORDION
   ============================================================================ */

.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--bg-grey);
  padding: 12px 0;
}

.faq-item summary {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--link-visited);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  transition: color var(--transition-normal);
}

.faq-item summary:hover {
  color: var(--accent-orange);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item div {
  margin-top: 10px;
  font-size: var(--fs-small);
  line-height: var(--lh-normal);
  color: var(--text-light);
}

/* ============================================================================
   14. DIVIDERS & SEPARATORS
   ============================================================================ */

.page-divider, hr {
  border: none;
  height: 3px;
  background-color: var(--primary-dark-blue);
  margin: 20px 0;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .page-divider, hr {
    margin: 12px 0;
  }
}

/* ============================================================================
   15. IMAGES & MEDIA
   ============================================================================ */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* ============================================================================
   16. FORMS & INPUTS
   ============================================================================ */

input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--bg-grey);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-normal);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

/* ============================================================================
   17. LISTS
   ============================================================================ */

ul, ol {
  margin-left: 20px;
  margin-bottom: var(--spacing-md);
}

li {
  margin-bottom: 4px;
  line-height: var(--lh-relaxed);
}

/* ============================================================================
   18. MOBILE RESPONSIVENESS
   ============================================================================ */

@media only screen and (max-width: 768px) {
  /* Typography Adjustments */
  h1 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 15px;
  }

  h2, h3, h4, h5, h6, p {
    font-size: var(--fs-body);
    line-height: 22px;
  }

  /* Heading size tweaks */
  h1 {
    font-size: 22px !important;
    line-height: 26px !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  h2 {
    font-size: 14px !important;
    line-height: 18px !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  /* Force text wrapping */
  h1, h2 {
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
  }

  /* Navigation */
  .nav.navbar-nav {
    gap: 10px;
  }

  /* Hero */
  .hero-reg-btn a {
    font-size: 20px;
    padding: 10px 20px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  /* Cards */
  .speaker-card img {
    width: 150px;
    height: 150px;
  }

  .room-card-content {
    flex-direction: column;
  }

  .room-card-image {
    margin-left: 0;
    margin-top: 20px;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Modal */
  .modal-content {
    padding: 20px;
  }

  /* Modals for bios */
  .modal-content {
    padding: 20px;
  }

  /* Buttons */
  .register-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Container */
  .is-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================================================
   19. UTILITY CLASSES
   ============================================================================ */

.mrgn-top {
  margin-top: 20px;
}

.text-bold {
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================================
   20. SECTION SPECIFIC STYLES
   ============================================================================ */

/* Countdown Container */
.countdown-container {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  font-family: Arial, sans-serif;
}

.count-num {
  text-align: center;
  flex: 1;
}

.count-value {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.count-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-size: 12px;
  margin-top: 8px;
}

/* Register Wrap Container */
.register-wrap-container {
  width: 100% !important;
  text-align: center !important;
  display: block !important;
  justify-content: unset !important;
  align-items: unset !important;
}

.register-wrap {
  width: 100% !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.register-wrap a.register-btn {
  display: inline-block !important;
  width: auto !important;
  max-width: max-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 12px 26px !important;
}

/* ============================================================================
   21. ANIMATION & TRANSITIONS
   ============================================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease;
}

/* ============================================================================
   22. EVENAIRS BUILDER COMPATIBILITY
   ============================================================================ */

/* Prevent layout breaking from builder classes */
.is-box-8 {
  width: auto;
}

.is-box-4 {
  width: auto;
}

.is-box-12 {
  width: 100%;
}

.is-shadow-1 {
  box-shadow: var(--shadow-sm);
}

.edge-y-4 {
  /* EventsAir class - don't override */
}

.is-scale-animated {
  /* EventsAir class - don't override */
}

.type-oswald-opensans,
.type-frankruhllibre-lato,
.type-cutivemono-lato {
  /* EventsAir theme classes */
  font-family: var(--font-primary) !important;
}

/* ============================================================================
   END OF GLOBAL STYLESHEET
   ============================================================================ */