/*
 * KF Veleshta United - Complete Stylesheet
 * Design System: Dark theme with red/yellow accents
 */

/* ==================== IMPORTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Colors */
  --background: hsl(0, 0%, 8%);
  --foreground: hsl(0, 0%, 98%);
  --primary: hsl(0, 83%, 45%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(0, 83%, 55%);
  --secondary: hsl(0, 0%, 15%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --accent: hsl(45, 100%, 50%);
  --accent-foreground: hsl(0, 0%, 8%);
  --muted: hsl(0, 0%, 18%);
  --muted-foreground: hsl(0, 0%, 65%);
  --card: hsl(0, 0%, 12%);
  --card-foreground: hsl(0, 0%, 98%);
  --border: hsl(0, 0%, 20%);
  --destructive: hsl(0, 84.2%, 60.2%);

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --radius: 0.5rem;
  --container-max: 1400px;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(0, 85%, 55%) 0%, hsl(45, 100%, 50%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0, 0%, 15%) 0%, hsl(0, 0%, 10%) 100%);
  --gradient-hero-overlay: linear-gradient(180deg, transparent 0%, hsla(0, 0%, 5%, 0.9) 100%);

  /* Shadows */
  --shadow-glow: 0 0 30px hsla(0, 85%, 45%, 0.3);
  --shadow-card: 0 10px 40px hsla(0, 0%, 0%, 0.5);
  --shadow-button: 0 4px 20px hsla(0, 85%, 45%, 0.4);
  --shadow-button-hover: 0 6px 30px hsla(0, 85%, 45%, 0.6);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-display {
  font-family: var(--font-display);
}

/* ==================== LAYOUT ==================== */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  padding-top: 80px; /* Navbar height */
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 5rem 0;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(0, 0%, 8%, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  /*border: 2px solid var(--primary);*/
}

.navbar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

@media (max-width: 767px) {
  .navbar-title {
    display: none;
  }
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .navbar-nav {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-dropdown-toggle:hover {
  color: var(--primary);
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-radius: calc(var(--radius) - 2px);
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background-color: var(--muted);
  color: var(--foreground);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--muted);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: hsla(0, 0%, 8%, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: var(--muted);
  color: var(--primary);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.mobile-dropdown-toggle:hover {
  background-color: var(--muted);
  color: var(--primary);
}

.mobile-dropdown-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1rem;
}

.mobile-dropdown-menu.active {
  display: block;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(0, 85%, 45%, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  animation: fadeUp 0.6s ease-out;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  /*border: 4px solid var(--primary);*/
  box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
  .hero-logo {
    width: 150px;
    height: 150px;
  }
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  animation: bounce 2s infinite;
}

.scroll-indicator-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--muted-foreground);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-dot {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 2px;
  animation: pulse 1.5s infinite;
}

.scroll-indicator-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

/* ==================== CARDS ==================== */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: hsla(0, 85%, 45%, 0.5);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.card-content {
  color: var(--muted-foreground);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsla(0, 85%, 45%, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  background-color: var(--secondary);
  padding: 5rem 0;
  text-align: center;
}

.page-header-subtitle {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.page-header-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .page-header-title {
    font-size: 4rem;
  }
}

.page-header-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== ABOUT PREVIEW ==================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
}

/* ==================== NEWS ==================== */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  overflow: hidden;
}

.news-image {
  position: relative;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem 0.75rem 0 0;
  margin: -1.5rem -1.5rem 1.5rem;
}

.news-image-placeholder {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--muted-foreground);
}

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.badge-primary {
  background-color: hsla(0, 85%, 45%, 0.1);
  color: var(--primary);
}

.badge-yellow {
  background-color: hsla(45, 100%, 50%, 0.2);
  color: hsl(45, 100%, 50%);
}

.badge-blue {
  background-color: hsla(210, 100%, 50%, 0.2);
  color: hsl(210, 100%, 60%);
}

.badge-green {
  background-color: hsla(120, 100%, 35%, 0.2);
  color: hsl(120, 100%, 45%);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.news-meta svg {
  width: 16px;
  height: 16px;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.news-card:hover .news-title {
  color: var(--primary);
}

.news-excerpt {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  transition: gap 0.3s ease;
}

.news-link:hover {
  gap: 0.5rem;
}

.news-link svg {
  width: 16px;
  height: 16px;
}

/* News Filter */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Social buttons for News */
.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-btn-facebook {
  background-color: #1877f2;
  color: white;
}

.social-btn-facebook:hover {
  background-color: #0d65d9;
}

.social-btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-btn-instagram:hover {
  opacity: 0.9;
}

/* ==================== SPONSORS ==================== */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.sponsor-card:hover {
  border-color: hsla(0, 85%, 45%, 0.5);
  transform: translateY(-4px);
}

.sponsor-placeholder {
  color: var(--muted-foreground);
  font-family: var(--font-display);
  font-weight: 500;
}

/* Sponsorship Packages */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  position: relative;
  padding: 2rem;
  text-align: center;
}

.package-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.package-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.package-benefits {
  margin-bottom: 2rem;
}

.package-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--muted-foreground);
}

.package-benefit svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* ==================== TEAM ==================== */
/* Tabs */
.tabs {
  margin-bottom: 2rem;
}

.tabs-list {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Player Cards */
.players-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .players-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.player-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.player-avatar {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.player-avatar svg {
  width: 40px;
  height: 40px;
  color: var(--muted-foreground);
}

.player-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.player-name {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.player-position {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.position-goalkeeper {
  background-color: hsla(45, 100%, 50%, 0.2);
  color: hsl(45, 100%, 50%);
}

.position-defender {
  background-color: hsla(210, 100%, 50%, 0.2);
  color: hsl(210, 100%, 60%);
}

.position-midfielder {
  background-color: hsla(120, 100%, 35%, 0.2);
  color: hsl(120, 100%, 45%);
}

.position-forward {
  background-color: hsla(0, 85%, 45%, 0.2);
  color: var(--primary);
}

/* Staff Cards */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.staff-card {
  padding: 2rem;
}

.staff-avatar {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.staff-avatar svg {
  width: 40px;
  height: 40px;
  color: var(--muted-foreground);
}

.staff-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.staff-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.staff-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsla(0, 85%, 45%, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-card-text {
  color: var(--muted-foreground);
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500;
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 4rem;
}

.about-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsla(0, 85%, 45%, 0.1);
  color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-description {
  color: var(--muted-foreground);
}

.vision-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--secondary);
  border-radius: 0.75rem;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .vision-quote {
    font-size: 2.5rem;
  }
}

/* ==================== CTA SECTIONS ==================== */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--secondary);
  border-radius: 0.75rem;
  margin-top: 4rem;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /*border: 2px solid var(--primary);*/
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-about {
  color: var(--muted-foreground);
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border); /* This is the line you mentioned */
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Pushes copyright left, links right */
    align-items: center;

    /* Use 'container' logic to align with the line above */
    width: 100%;
    max-width: 1320px; /* Standard Bootstrap XXL container width */
    margin: 0 auto;    /* Centers the content */
    padding: 0 15px;   /* Standard gutter padding */
}

.footer-links-custom {
    display: flex;
    gap: 10px; /* Adds space around the "|" separator */
    align-items: center;
}

/* Responsive: Center them on mobile so they don't look cramped */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* ==================== 404 PAGE ==================== */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  text-align: center;
  padding: 2rem;
}

.not-found-code {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.not-found-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.not-found-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fadeUp {
  animation: fadeUp 0.6s ease-out;
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out;
}

/* Staggered animation delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.overflow-hidden { overflow: hidden; }

.footer-contact-item a:hover {
    color: var(--primary);
}

.news-excerpt-custom {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%; /* Or a specific width */
}
.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden; /* Hides the slides that are not active */
}

.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out; /* Smooth sliding effect */
}

.carousel-slide {
    min-width: 100%; /* Each slide takes up full width of container */
}

.carousel-slide img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8); /* Light background */
    color: #333; /* Dark arrow color */
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Makes it a circle */
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-button:hover {
    background: white;
    color: var(--primary, #e60000); /* Use your theme color on hover */
    transform: translateY(-50%) scale(1.1);
}

.carousel-button svg {
    width: 24px;
    height: 24px;
}

.btn-left { left: 20px; }
.btn-right { right: 20px; }

.news-detail-title{
    margin-bottom: 20px;
}
.news-detail-content {
    margin-top: 40px;
}
