/* ──────────────────────────────────────────────────────────────────────── */
/* STYLESHEET: Conceito OAB - Link Hub                                      */
/* Version: 1.0 | Last Updated: June 2026                                  */
/* ──────────────────────────────────────────────────────────────────────── */

/* =============================================================================
   1. IMPORTS & FONTS
   ============================================================================= */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap");

/* =============================================================================
   2. CSS CUSTOM PROPERTIES (Variables)
   ============================================================================= */
:root {
  /* Typography */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-sans: "DM Sans", system-ui, sans-serif;

  /* Brand Color Palette */
  --gold: #ffcd1c;
  --gold-deep: #e6b800;
  --gold-soft: rgba(255, 205, 28, 0.15);
  --gold-faint: rgba(255, 205, 28, 0.07);
  --noir: #222222;
  --noir-soft: #2e2e2e;

  /* Neutral Colors */
  --background: #ffffff;
  --surface: #f7f7f7;
  --surface-alt: #e9e9e9;
  --border: #dddddd;
  --border-soft: rgba(221, 221, 221, 0.7);

  /* Text Colors */
  --foreground: #222222;
  --foreground-secondary: #444444;
  --muted-foreground: #777777;
  --destructive: #c0392b;

  /* Status Colors */
  --live: #ff0000;
  --live-soft: #ffc6c6;

  /* Glass/Backdrop Effect */
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(221, 221, 221, 0.9);
  --hairline: rgba(0, 0, 0, 0.1);

  /* Gradient Presets */
  --gradient-gold: linear-gradient(
    135deg,
    #ffdf5c 0%,
    #ffcd1c 50%,
    #e6b800 100%
  );
  --gradient-radial-gold: radial-gradient(
    ellipse at center,
    rgba(255, 205, 28, 0.2) 0%,
    transparent 65%
  );
  --gradient-fade-bottom: linear-gradient(180deg, transparent 0%, #ffffff 100%);
  --gradient-surface: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);

  /* Shadow Presets */
  --shadow-gold:
    0 0 0 1px rgba(255, 205, 28, 0.3), 0 20px 60px -20px rgba(255, 205, 28, 0.4);
  --shadow-soft:
    0 4px 24px -4px rgba(34, 34, 34, 0.08),
    0 16px 48px -16px rgba(34, 34, 34, 0.12);
  --shadow-card:
    0 2px 8px -2px rgba(34, 34, 34, 0.06),
    0 8px 24px -8px rgba(34, 34, 34, 0.08);

  /* Easing Functions */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================================================
   3. RESET & BASE STYLES
   ============================================================================= */

/* Universal reset and box-sizing inheritance */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root element */
html {
  scroll-behavior: smooth;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

/* Body element */
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

/* Links reset */
a {
  color: inherit;
  text-decoration: none;
}

/* List reset */
ul,
ol {
  list-style: none;
}

/* Image reset */
img {
  display: block;
  max-width: 100%;
}

/* Button reset */
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* =============================================================================
   4. TYPOGRAPHY
   ============================================================================= */

/* Display font utility */
.font-display {
  font-family: var(--font-display);
}

/* Accent text color with emphasis */
.text-gold {
  color: var(--gold-deep);
  font-weight: 600;
}

/* Small uppercase label for section tags */
.text-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: 0.5;
}

/* =============================================================================
   5. LAYOUT UTILITIES
   ============================================================================= */

/* Standard container with max-width constraint */
.container {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Wide container for sections spanning more width */
.container-wide {
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Center text alignment */
.text-center {
  text-align: center;
}

/* CSS text-wrap balance for improved typography */
.text-balance {
  text-wrap: balance;
}

/* Decorative horizontal line with gradient fade */
.hairline {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border) 50%,
    transparent 100%
  );
}

/* =============================================================================
   6. ANIMATIONS & TRANSITIONS
   ============================================================================= */

/* Pulsing shadow effect for featured elements */
@keyframes goldPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 205, 28, 0.2),
      0 20px 60px -20px rgba(255, 205, 28, 0.2);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(255, 205, 28, 0.35),
      0 30px 80px -20px rgba(255, 205, 28, 0.35);
  }
}

/* Pulsing effect for live/active elements */
@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--live-glow);
  }
  50% {
    box-shadow: 0 0 0 6px oklch(0.65 0.22 25 / 0);
  }
}

/* Dot pulsing animation for live indicator */
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--live-glow);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px oklch(0.65 0.22 25 / 0);
  }
}

/* Wave animation for live tag label */
@keyframes wave {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--live-glow);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 0 4px oklch(0.65 0.22 25 / 0);
  }
}

/* Scroll-triggered reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease-premium),
    transform 0.9s var(--ease-premium);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   7. HEADER COMPONENT
   ============================================================================= */

/* Main header container */
.hub-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  margin-top: 0;
}

@media (min-width: 640px) {
  .hub-header {
    padding: 4.5rem 1.5rem 3.5rem;
  }
}

/* Decorative radial glow behind header */
.hub-header-glow {
  position: absolute;
  inset-x: 0;
  top: 0;
  z-index: -1;
  margin-inline: auto;
  height: 300px;
  width: 100%;
  max-width: 600px;
  background: radial-gradient(
    ellipse at center top,
    rgba(255, 205, 28, 0.25) 0%,
    transparent 70%
  );
  opacity: 1;
}

/* Fade gradient at bottom of header */
.hub-header-fade {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  z-index: -1;
  height: 6rem;
  background: linear-gradient(180deg, transparent 0%, #ffffff 100%);
}

/* Logo container with gradient background */
.hub-logo {
  width: 5rem;
  height: 5rem;
  border-radius: 12px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: goldPulse 5s ease-in-out infinite;
  margin-inline: auto;
  overflow: hidden;
}

.hub-logo span {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--noir);
  line-height: 1;
}

.hub-logo img {
  border-radius: 10%;
}

/* Main header title */
.hub-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-top: 1rem;
  color: var(--noir);
}

/* Header tagline/subtitle */
.hub-tagline {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 36rem;
  margin: 1.25rem auto 0;
}

@media (min-width: 640px) {
  .hub-tagline {
    font-size: 1rem;
  }
}

/* Social icons container in header */
.hub-social-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Individual social icon links */
.hub-social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.hub-social-icon-link:hover {
  color: var(--noir);
  border-color: var(--gold);
  background: rgba(255, 205, 28, 0.1);
}

/* Primary action button (CTA) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--noir);
  border-radius: 9999px;
  padding: 0.875rem 1.875rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    background 0.3s var(--ease-premium),
    box-shadow 0.3s var(--ease-premium),
    transform 0.3s var(--ease-premium);
  margin-top: 2rem;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--gold-deep);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* =============================================================================
   8. LINKS SECTION COMPONENT
   ============================================================================= */

/* Container for links section */
.link-section {
  padding: 4rem 1.5rem 4rem;
  max-width: 42rem;
  margin-inline: auto;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .link-section {
    padding-inline: 1.5rem;
  }
}

/* Flexible list layout for link cards */
.link-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Base link card styling */
.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 1rem 1.25rem;
  transition:
    transform 0.4s var(--ease-premium),
    box-shadow 0.4s var(--ease-premium),
    border-color 0.4s var(--ease-premium),
    background 0.4s var(--ease-premium);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .link-card {
    padding: 1.25rem 1.5rem;
  }
}

/* Link card hover state */
.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

/* Featured link card styling (highlighted) */
.link-card.featured {
  border-color: var(--gold);
  background: #fffdf0;
  animation: goldPulse 5s ease-in-out infinite;
}

.link-card.featured:hover {
  background: #fffbe0;
}

/* Live link card (for active/streaming content) */
.link-card.live {
  border-color: var(--live);
  background: var(--live-soft);
  animation: livePulse 2.5s ease-in-out infinite;
  margin-bottom: 50px;
}

.link-card.live:hover {
  background: oklch(0.65 0.22 25 / 0.18);
}

/* Live indicator dot in top-right corner */
.link-card.live::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  animation: dotPulse 2.5s ease-in-out infinite;
}

/* Live status icon styling */
.link-card.live .link-icon {
  background: var(--live);
  color: #fff;
  border-color: var(--live);
}

.link-card.live .link-label {
  color: var(--foreground);
}

.link-card.live .link-arrow {
  color: var(--live);
}

/* Live tag label */
.label-tag.live-tag {
  position: absolute;
  top: 0.4rem;
  right: 1.5rem;
  width: 6rem;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  background: var(--live-soft);
  color: var(--live);
  border: 1px solid oklch(0.65 0.22 25 / 0.3);
  animation: wave 2.5s ease-in-out infinite;
}

/* Rotating text animation for live tag */
.js-text-rotator {
  transition: opacity 0.6s ease-in-out;
}

/* Video embedded wrapper (for YouTube embeds in featured live cards) */
.video-wrapper {
  position: relative;
  width: 100%;
  margin-top: 100px;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0 !important;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: -2.5rem;
  display: block;
  border: 1px solid oklch(0.65 0.22 25 / 0.3);
  border-color: var(--live);
  animation: livePulse 2.5s ease-in-out infinite;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Link card icon container */
.link-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--noir);
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}

.link-card:hover .link-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--noir);
}

.link-card.live:hover .link-icon {
  background-color: var(--live);
  border-color: var(--foreground);
}

.link-card.featured .link-icon {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
}

/* Content wrapper for link text */
.link-body {
  flex: 1;
  min-width: 0;
}

/* Link title/label */
.link-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--noir);
}

.link-card.featured .link-label {
  color: var(--noir);
}

/* Link description (with line clamping) */
.link-desc {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Arrow icon for link */
.link-arrow {
  flex-shrink: 0;
  color: var(--border);
  transition:
    transform 0.4s var(--ease-premium),
    color 0.4s var(--ease-premium);
}

.link-card.live:hover .link-arrow {
  color: var(--foreground);
}

.link-card:hover .link-arrow {
  color: var(--gold-deep);
  transform: translate(2px, -2px);
}

.link-card.featured .link-arrow {
  color: var(--gold-deep);
}

/* =============================================================================
   9. NEWS FEED SECTION COMPONENT
   ============================================================================= */

/* News section container with background color */
.news-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Header for section with title alignment */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

/* News items list */
.news-list {
  margin-top: 0.5rem;
}

/* Individual news item link */
.news-item a {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.3s;
}

.news-item:first-child a {
  border-top: 1px solid var(--border);
}

.news-item a:hover {
  opacity: 0.75;
}

/* Inner flex layout for news content */
.news-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

/* News item thumbnail image */
.news-img {
  flex-shrink: 0;
  width: 7rem;
  height: 5rem;
  border-radius: 0.625rem;
  overflow: hidden;
  display: none;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .news-img {
    display: block;
  }
}

/* Image element inside thumbnail */
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition:
    filter 0.4s,
    transform 0.6s var(--ease-premium);
}

a:hover .news-img img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Content wrapper for news text */
.news-body {
  flex: 1;
  min-width: 0;
}

/* Date badge for news items */
.news-date {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* News title */
.news-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 0.5rem;
  color: var(--noir);
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .news-title {
    font-size: 1.45rem;
  }
}

a:hover .news-title {
  color: var(--gold-deep);
}

/* News description (with line clamping) */
.news-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* News list arrow icon */
.news-arrow {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--border);
  transition:
    transform 0.4s var(--ease-premium),
    color 0.4s;
}

a:hover .news-arrow {
  color: var(--gold-deep);
  transform: translate(2px, -2px);
}

/* Hidden news items (shown on "load more") */
.news-hidden {
  display: none;
}

/* Load more button container */
.news-load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 1rem;
}

/* Load more button styling */
.news-load-more-btn {
  padding: 0.75rem 2rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.news-load-more-btn:hover {
  background: var(--foreground);
  color: var(--background);
}

/* =============================================================================
   10. EVENTS SECTION COMPONENT
   ============================================================================= */

/* Events section container */
.events-section {
  padding: 5rem 0 7rem;
}

/* =============================================================================
   PRODUCTS SECTION COMPONENT
   ============================================================================= */

.products-section {
  padding: 5rem 1.5rem;
}

.products-controls {
  margin-top: 1.4rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.products-nav-btn {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--noir);
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.products-nav-btn:hover {
  border-color: var(--gold);
  background: #fffdf0;
  transform: translateY(-1px);
}

.products-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.products-carousel {
  --products-per-view: 1;
  margin-top: 2.75rem;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.products-carousel.is-dragging {
  cursor: grabbing;
}

.products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - (var(--products-per-view) - 1) * 1.25rem) / var(--products-per-view)
  );
  gap: 1.25rem;
  transition: transform 0.9s var(--ease-premium);
  will-change: transform;
}

.product-slide {
  min-width: 0;
  display: flex;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.35s var(--ease-premium),
    border-color 0.35s var(--ease-premium),
    box-shadow 0.35s var(--ease-premium);
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.product-card.featured {
  border-color: var(--gold);
  background: #fffdf0;
}

.product-offer-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  background: var(--noir);
}

.product-image-link {
  display: block;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-premium);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1rem;
}

.product-title {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--noir);
}

.product-desc {
  color: var(--foreground-secondary);
  font-size: 0.84rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.product-prices {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-price-installments {
  font-size: 0.84rem;
  color: var(--foreground-secondary);
}

.product-price-installments strong {
  display: inline-block;
  margin-left: 0.3rem;
  color: var(--noir);
  font-size: 1.02rem;
}

.product-price-cash {
  font-size: 0.73rem;
  color: var(--muted-foreground);
}

.product-cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.4rem;
  border-radius: 0.7rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--noir);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium),
    transform 0.25s var(--ease-premium);
}

.product-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
}

@media (min-width: 960px) {
  .products-carousel {
    --products-per-view: 3;
  }

  .products-controls {
    margin-top: 1.7rem;
  }

  .product-content {
    padding: 1.1rem;
  }

  .product-title {
    font-size: 1.32rem;
  }
}

/* Featured event card (next upcoming event) */
.event-featured {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  background: #fffdf0;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 3rem;
  animation: goldPulse 5s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .event-featured {
    padding: 3rem;
  }
}

/* Decorative glow for featured event */
.event-glow {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 205, 28, 0.25) 0%,
    transparent 65%
  );
  opacity: 0.8;
  pointer-events: none;
}

/* Featured event title */
.event-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-top: 1rem;
  position: relative;
  color: var(--noir);
}

/* Featured event description */
.event-desc {
  color: var(--foreground-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
  position: relative;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .event-desc {
    font-size: 1rem;
  }
}

/* Event metadata (date and time) */
.event-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--foreground-secondary);
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta svg {
  color: var(--gold-deep);
  width: 14px;
  height: 14px;
}

/* Countdown timer grid */
.countdown {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .countdown {
    gap: 0.75rem;
  }
}

/* Individual countdown tile */
.countdown-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-card);
}

/* Countdown value (number) */
.countdown-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--noir);
  line-height: 1;
}

@media (min-width: 640px) {
  .countdown-value {
    font-size: 2.5rem;
  }
}

/* Countdown unit label (days, hours, etc) */
.countdown-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.375rem;
}

/* Grid layout for additional events */
.events-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Additional event cards */
.event-card {
  display: block;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  transition:
    transform 0.4s var(--ease-premium),
    border-color 0.4s,
    box-shadow 0.4s;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.event-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

/* Event card date badge */
.event-card-date {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* Event card title */
.event-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.75rem;
  color: var(--noir);
  transition: color 0.3s;
}

.event-card:hover .event-card-title {
  color: var(--gold-deep);
}

/* Event card description */
.event-card-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================================================
   11. LEAD FORM / NEWSLETTER SECTION
   ============================================================================= */

/* Lead form section container */
.lead-section {
  padding: 5rem 0 7rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Form box container */
.lead-box {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .lead-box {
    padding: 3.5rem;
  }
}

/* Decorative glow background for form */
.lead-glow {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32rem;
  height: 18rem;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 205, 28, 0.18) 0%,
    transparent 65%
  );
  opacity: 1;
  pointer-events: none;
}

/* Form wrapper with flex layout */
.lead-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 2.5rem auto 0;
}

/* Standard input field styling */
.input-field {
  height: 3.25rem;
  border-radius: 9999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--noir);
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  width: 100%;
}

.input-field::placeholder {
  color: #aaaaaa;
}

.input-field:focus {
  outline: none;
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 205, 28, 0.2);
}

/* Error state for inputs */
.input-error {
  border-color: var(--destructive, #ef4444);
  outline-color: var(--destructive, #ef4444);
}

/* Error message text */
.field-error-msg {
  display: block;
  font-size: 0.75rem;
  color: var(--destructive, #ef4444);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

/* International Telephone Input Library customization */
.iti {
  width: 100%;
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  background: var(--surface);
  display: flex;
  align-items: center;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  border-radius: 9999px 0 0 9999px;
  padding-left: 1rem;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 0.25rem;
}

.iti input.input-field {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 9999px 9999px 0 !important;
  padding-left: 0.5rem;
}

.iti input.input-field:focus {
  outline: none;
  box-shadow: none !important;
}

.iti:focus-within {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 205, 28, 0.2);
}

.iti__dropdown-content {
  z-index: 9999;
}

.iti__selected-flag:focus {
  outline: none !important;
  box-shadow: none !important;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus,
.iti__selected-flag {
  background: transparent !important;
  border-radius: 9999px 0 0 9999px !important;
  overflow: hidden;
}

/* Honeypot field (spam protection) */
.honeypot {
  position: absolute;
  left: -9999px;
}

/* Form submit button */
.btn-submit {
  height: 3.25rem;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--noir);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    background 0.3s var(--ease-premium),
    box-shadow 0.3s,
    transform 0.3s;
  width: 100%;
  border: 2px solid transparent;
}

.btn-submit:hover:not(:disabled) {
  background: var(--gold-deep);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
}

/* Form helper text */
.form-note {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  text-align: center;
}

/* Error message container */
.form-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(192, 57, 43, 0.35);
  background: rgba(192, 57, 43, 0.06);
  color: var(--destructive);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
}

/* Success message container */
.form-success {
  border: 1.5px solid var(--gold);
  background: #fffdf0;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 28rem;
  margin: 2.5rem auto 0;
}

/* Success icon container */
.success-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

/* Success message title */
.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1.25rem;
  color: var(--noir);
}

/* Success message description */
.success-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* =============================================================================
   12. SOCIAL SECTION COMPONENT
   ============================================================================= */

/* Social section container */
.social-section {
  padding: 4rem 0 5rem;
}

/* Grid layout for social cards */
.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Individual social card */
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition:
    transform 0.4s var(--ease-premium),
    border-color 0.4s,
    box-shadow 0.4s;
  box-shadow: var(--shadow-card);
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

/* Social platform icon */
.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.social-card:hover .social-icon {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
}

/* Social platform name/label */
.social-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--noir);
}

/* Social platform handle/username */
.social-handle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* =============================================================================
   13. FOOTER COMPONENT
   ============================================================================= */

/* Main footer container */
.hub-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--surface);
}

/* Footer brand section */
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

/* Footer copyright text */
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

/* Footer subtext (credits, powered by) */
.footer-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bbbbbb;
  margin-top: 0.5rem;
}

.politics {
  margin-top: 2rem;
  color: var(--muted-foreground);
}
.politics a {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.5rem;
}
/* =============================================================================
   14. GLOBAL SECTION UTILITIES
   ============================================================================= */

/* Main section title (reusable across sections) */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-top: 1rem;
  color: var(--noir);
}

/* =============================================================================
   END OF STYLESHEET
   ============================================================================= */
