/* ============================================================
   TRACKFIXX LANDING PAGE — Consolidated Styles
   Mobile-first, light, responsive, no inline styles needed
   ============================================================ */

:root {
  --tf-primary: #2563eb;
  --tf-primary-dark: #1d4ed8;
  --tf-primary-light: #dbeafe;
  --tf-primary-bg: #eff6ff;
  --tf-dark: #0f172a;
  --tf-gray: #64748b;
  --tf-gray-light: #f1f5f9;
  --tf-gray-border: #e2e8f0;
  --tf-success: #22c55e;
  --tf-danger: #ef4444;
  --tf-danger-light: #fef2f2;
  --tf-white: #ffffff;
  --tf-black: #111827;
  --tf-radius: 12px;
  --tf-radius-lg: 20px;
  --tf-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --tf-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
  --tf-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --tf-font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
html { scroll-behavior: smooth; }

body.landing-page {
  font-family: var(--tf-font);
  color: var(--tf-dark);
  background: var(--tf-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--tf-primary); text-decoration: none; transition: color var(--tf-transition); }
a:hover { color: var(--tf-primary-dark); }
.text-muted { color: var(--tf-gray) !important; }

/* Fixed header compensation */
main { padding-top: 0; }
body.landing-page { padding-top: 68px; }
@media (max-width: 576px) { body.landing-page { padding-top: 60px; } }

/* ============================================================
   HERO SECTION
   ============================================================ */
.tf-hero {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0 clamp(50px, 8vw, 80px);
  background: linear-gradient(135deg, var(--tf-primary-bg) 0%, #f0f7ff 50%, #e8f0fe 100%);
  text-align: center;
  overflow: hidden;
}

.tf-hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: var(--tf-hero-watermark, url('')) repeat;
  background-size: 260px auto;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-18deg);
  transform-origin: center;
  filter: blur(0.2px);
}

.tf-hero .container { position: relative; z-index: 1; }

.tf-hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--tf-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.tf-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--tf-gray);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Hero with image background */
.tf-hero-image {
  position: relative;
  padding: clamp(120px, 14vw, 180px) 0;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tf-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.tf-hero-image .container { position: relative; z-index: 1; }
.tf-hero-image .tf-hero-title { color: #fff; }
.tf-hero-image .tf-hero-sub { color: #e2e8f0; }

/* ============================================================
   SEARCH BOX
   ============================================================ */
.tf-search-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--tf-white);
  padding: clamp(12px, 2vw, 16px);
  border-radius: var(--tf-radius-lg);
  box-shadow: var(--tf-shadow-lg);
}

.tf-search-box .form-control,
.tf-search-box .form-select {
  border: 1.5px solid var(--tf-gray-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color var(--tf-transition);
}

.tf-search-box .form-control:focus,
.tf-search-box .form-select:focus {
  border-color: var(--tf-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--tf-transition);
  white-space: nowrap;
}

.tf-btn-primary {
  background: var(--tf-primary);
  color: #fff;
}

.tf-btn-primary:hover {
  background: var(--tf-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.tf-btn-primary:active { transform: scale(0.98); }

.tf-btn-outline {
  background: transparent;
  color: var(--tf-primary);
  border: 2px solid var(--tf-primary);
}

.tf-btn-outline:hover {
  background: var(--tf-primary);
  color: #fff;
}

.tf-btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 14px; }
.tf-btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.tf-btn-block { width: 100%; }

.tf-btn:disabled,
.tf-btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* ============================================================
   CARDS
   ============================================================ */
.tf-card {
  background: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--tf-shadow);
  border: 1px solid var(--tf-gray-border);
  transition: all var(--tf-transition);
}

.tf-card:hover {
  box-shadow: var(--tf-shadow-lg);
}

/* ============================================================
   EVENT CARD
   ============================================================ */
.tf-event-card {
  background: var(--tf-white);
  border-radius: var(--tf-radius-lg);
  overflow: hidden;
  box-shadow: var(--tf-shadow);
  border: 1px solid var(--tf-gray-border);
  transition: all var(--tf-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tf-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tf-shadow-lg);
}

.tf-event-card.card-closed {
  opacity: .5;
  background: #e2e8f0;
  border-color: #94a3b8;
  pointer-events: none;
}
.tf-event-card.card-closed .tf-event-img img {
  filter: grayscale(100%) brightness(0.8);
}
.tf-event-card.card-closed .tf-event-img::after {
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent 60%);
}
.tf-event-card.card-closed .tf-event-title {
  color: #64748b;
}

.tf-event-card.card-ongoing {
  border-color: #86efac;
  box-shadow: 0 4px 20px rgba(34,197,94,.12);
}
.tf-event-card.card-ongoing .tf-event-img::after {
  background: linear-gradient(to top, rgba(22,101,52,.55), transparent 60%);
}

.tf-event-img {
  position: relative;
  overflow: hidden;
}

.tf-event-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tf-event-card:hover .tf-event-img img { transform: scale(1.05); }

.tf-event-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
}

.tf-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tf-success);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.tf-badge.primary { background: var(--tf-primary); }
.tf-badge.danger { background: var(--tf-danger); }
.tf-badge.warning { background: #f59e0b; }

.tf-event-body {
  padding: clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tf-event-body .tf-event-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--tf-dark);
}

.tf-event-meta {
  font-size: 13px;
  color: var(--tf-gray);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tf-event-price {
  margin-top: auto;
  font-weight: 700;
  color: var(--tf-primary);
  font-size: 15px;
  padding-top: 10px;
}

.tf-event-organizer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--tf-gray-light);
}

.tf-event-organizer img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.tf-event-organizer span {
  font-size: 12px;
  font-weight: 600;
  color: var(--tf-gray);
}

/* ============================================================
   EVENT GRID (All Events Page)
   ============================================================ */
.tf-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.tf-section {
  padding: clamp(50px, 8vw, 80px) 0;
}

.tf-section.bg-light { background: var(--tf-gray-light); }

.tf-section-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.tf-section-header .tf-badge-title {
  display: inline-block;
  background: var(--tf-primary-light);
  color: var(--tf-primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tf-section-header .tf-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--tf-dark);
  margin-bottom: 8px;
}

.tf-section-header .tf-subtitle {
  color: var(--tf-gray);
  max-width: 500px;
  margin: 0 auto;
  font-size: 15px;
}

/* ============================================================
   SECTION WITH SIDEBAR (Event Detail)
   ============================================================ */
.tf-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}

.tf-detail-sidebar {
  position: sticky;
  top: 90px;
}

/* ============================================================
   TICKET SELECT LIST
   ============================================================ */
.tf-ticket-item {
  border: 2px solid var(--tf-gray-border);
  border-radius: var(--tf-radius);
  padding: 16px;
  margin-bottom: 12px;
  transition: all var(--tf-transition);
}

.tf-ticket-item:hover {
  border-color: var(--tf-primary);
  background: var(--tf-primary-bg);
}

.tf-ticket-item:has(input:checked) {
  border-color: var(--tf-primary);
  background: var(--tf-primary-bg);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.tf-form-group { margin-bottom: 16px; }

.tf-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--tf-dark);
  margin-bottom: 6px;
}

.tf-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--tf-gray-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--tf-dark);
  transition: all var(--tf-transition);
  background: var(--tf-white);
}

.tf-input:focus {
  border-color: var(--tf-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.tf-input::placeholder { color: #94a3b8; }

select.tf-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8.825L1.175 4 2.238 2.938 6 6.7 9.763 2.937 10.825 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

textarea.tf-input { resize: vertical; min-height: 100px; }

/* ============================================================
   PARTICIPANT CARD (Payment Detail)
   ============================================================ */
.tf-participant-card {
  background: var(--tf-white);
  border: 1px solid var(--tf-gray-border);
  border-radius: var(--tf-radius);
  padding: 22px;
  margin-bottom: 16px;
}

.tf-participant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-size: 14px;
}

.tf-participant-grid .tf-label { margin-bottom: 2px; }

/* ============================================================
   ALERT / NOTICE BOX
   ============================================================ */
.tf-alert {
  border: 2px solid var(--tf-danger);
  background: var(--tf-danger-light);
  padding: 20px;
  border-radius: var(--tf-radius);
  font-size: 14px;
  line-height: 1.6;
  color: var(--tf-black);
}

.tf-alert .tf-alert-title {
  color: #dc2626;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tf-alert hr { border: none; border-top: 1px dashed #ccc; margin: 14px 0; }

/* ============================================================
   SUMMARY BOX (Payment)
   ============================================================ */
.tf-summary {
  background: var(--tf-primary-light);
  border-radius: var(--tf-radius);
  padding: 22px;
}

.tf-summary-title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--tf-dark);
}

.tf-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 14px;
}

.tf-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--tf-primary);
  font-weight: 700;
  font-size: 16px;
}

/* ============================================================
   PAYMENT METHOD SELECTOR
   ============================================================ */
.tf-payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.tf-payment-option {
  width: 90px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  opacity: 0.55;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all var(--tf-transition);
  background: var(--tf-gray-light);
  padding: 8px;
}

.tf-payment-option:hover { opacity: 0.8; }

.tf-payment-option.active {
  opacity: 1;
  border-color: var(--tf-primary);
  background: var(--tf-primary-bg);
}

.tf-payment-option img {
  max-width: 70px;
  max-height: 24px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tf-payment-option span { font-size: 10px; font-weight: 600; color: var(--tf-dark); }

/* ============================================================
   STATUS BADGES
   ============================================================ */
.tf-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tf-status.paid { background: #dcfce7; color: #166534; }
.tf-status.pending { background: #fef9c3; color: #854d0e; }
.tf-status.expired { background: #fee2e2; color: #991b1b; }
.tf-status.waiting { background: #e0e7ff; color: #3730a3; }

/* ============================================================
   DIVIDER
   ============================================================ */
.tf-divider {
  border: none;
  border-top: 1px solid var(--tf-gray-border);
  margin: 24px 0;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.tf-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   SWIPER OVERRIDES
   ============================================================ */
.swiper { padding-bottom: 40px; }
.swiper-pagination-bullet-active { background: var(--tf-primary) !important; }
.swiper-slide { height: auto; display: flex; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 991px) {
  .tf-detail-layout {
    grid-template-columns: 1fr;
  }

  .tf-detail-sidebar {
    position: static;
  }

  .tf-participant-grid {
    grid-template-columns: 1fr;
  }

  .tf-event-img img {
    height: 180px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 576px) {
  .tf-hero { padding: 80px 0 50px; }
  .tf-hero-image { padding: 100px 0 60px; }
  .tf-hero-title { font-size: 24px; }

  .tf-event-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tf-event-img img {
    height: 220px;
  }

  .tf-payment-methods {
    gap: 8px;
  }

  .tf-payment-option {
    width: 70px;
    height: 54px;
  }

  .tf-payment-option span { font-size: 9px; }

  .tf-btn { padding: 10px 18px; font-size: 14px; }

  .tf-card { padding: 16px; }

  .tf-search-box .row {
    flex-direction: column;
    gap: 8px;
  }

  .tf-search-box .col-md-5,
  .tf-search-box .col-md-4,
  .tf-search-box .col-md-3 {
    width: 100%;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes tfFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tf-animate-in {
  animation: tfFadeIn 0.5s ease forwards;
}

/* ============================================================
   SKELETON LOADING (optional)
   ============================================================ */
.tf-skeleton {
  background: linear-gradient(90deg, var(--tf-gray-light) 25%, #e5e7eb 50%, var(--tf-gray-light) 75%);
  background-size: 200% 100%;
  animation: tfShimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes tfShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
/* ============================================================
   HEADER — Modern Glass + Animated
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent;
}

.header-container {
    height: 68px;
    padding: 0 16px;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-container {
    height: 58px;
}

/* ---- LOGO ---- */
.logo {
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-icon img {
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon img {
    transform: scale(1.1);
}

.logo:hover .logo-icon {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: #2563eb;
}

/* ---- NAVIGATION ---- */
.navmenu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navmenu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #2563eb;
    background: #eff6ff;
}

.nav-link.active {
    color: #2563eb;
    background: #dbeafe;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background: #2563eb;
    transition: all 0.3s ease;
}

/* ---- BUTTON NAV ---- */
.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-nav-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-nav-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-nav-primary:active {
    transform: scale(0.97);
}

/* ---- MOBILE TOGGLE ---- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #0f172a;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .navmenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 30px;
        background: #fff;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        gap: 8px;
    }

    .navmenu.mobile-open {
        right: 0;
    }

    .navmenu ul {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 12px;
    }

    .nav-link.active::after {
        bottom: auto;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 20px;
    }

    .btn-nav {
        justify-content: center;
        padding: 14px;
        font-size: 15px;
        border-radius: 12px;
    }

    .btn-nav.ms-3 {
        margin-left: 0 !important;
    }

    /* Overlay */
    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

@media (max-width: 576px) {
    .header-container {
        height: 60px;
    }

    .header.scrolled .header-container {
        height: 54px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .logo-icon img {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 18px;
    }

    .navmenu {
        width: 100%;
        right: -100%;
    }
}

