/*!
 * SHIMMUTA - Modern Sports Federation Website
 * Modern, responsive design with beautiful UI/UX
 */

/* =========================================== 
 * CSS Reset & Base Styles
 * =========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* =========================================== 
 * Modern Color Palette & Variables
 * =========================================== */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #000000;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #1e293b;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 50%,
    #f093fb 100%
  );
}

/* =========================================== 
 * Typography
 * =========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* =========================================== 
 * Container & Grid System
 * =========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.col {
  flex: 1;
  padding: 0 0.75rem;
}

.col-1 {
  flex: 0 0 8.333333%;
}
.col-2 {
  flex: 0 0 16.666667%;
}
.col-3 {
  flex: 0 0 25%;
}
.col-4 {
  flex: 0 0 33.333333%;
}
.col-6 {
  flex: 0 0 50%;
}
.col-8 {
  flex: 0 0 66.666667%;
}
.col-9 {
  flex: 0 0 75%;
}
.col-12 {
  flex: 0 0 100%;
}

/* =========================================== 
 * Modern Header
 * =========================================== */
.site-header {
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--primary-color);
}

.top-header {
  background: var(--gradient-primary);
  color: white;
  padding: 1.5rem 0;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

#branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

#branding .logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

#branding .logo:hover {
  transform: scale(1.05) rotate(5deg);
}

.logo-text {
  flex: 1;
  min-width: 0;
}

.site-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.25rem 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.right-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: white;
}

/* =========================================== 
 * Modern Navigation
 * =========================================== */
.bottom-header {
  background: var(--bg-primary);
  padding: 0.5rem 0;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.main-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  align-items: center;
}

.mobile-navigation {
  display: none;
}

.menu li {
  position: relative;
}

.menu li a {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: capitalize;
  letter-spacing: 0.025em;
}

.menu li a:hover {
  color: white;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
}

.menu li a:hover::before {
  width: 100%;
}

/* Active menu item */
.menu li.current-menu-item a,
.menu li.active a {
  color: white;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.menu li.current-menu-item a::before,
.menu li.active a::before {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding-left: 1rem;
  border-left: 2px solid var(--border-color);
  margin-left: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-secondary), #e5e7eb);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a i {
  position: relative;
  z-index: 1;
}

.social-links a:hover {
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Individual social media colors on hover */
.social-links a[href*="facebook"]:hover::before {
  background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.social-links a[href*="twitter"]:hover::before {
  background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.social-links a[href*="google"]:hover::before,
.social-links a[href*="plus"]:hover::before {
  background: linear-gradient(135deg, #db4437, #c23321);
}

.social-links a[href*="pinterest"]:hover::before {
  background: linear-gradient(135deg, #bd081c, #8c0615);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hide mobile navigation by default */
.mobile-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.mobile-navigation .menu {
  flex-direction: column;
  padding: 1rem;
  gap: 0;
}

.mobile-navigation .menu li {
  width: 100%;
}

.mobile-navigation .menu li a {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

/* Desktop Navigation - Always show on larger screens */
@media (min-width: 769px) {
  .main-navigation .menu {
    display: flex !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .mobile-navigation {
    display: none !important;
  }

  /* Enhanced spacing for desktop */
  .main-navigation {
    padding: 0.5rem 0;
  }

  .menu {
    gap: 0.25rem;
  }
}

/* Extra styles for better readability */
@media (min-width: 1024px) {
  .menu {
    gap: 0.5rem;
  }

  .menu li a {
    padding: 0.875rem 1.75rem;
    font-size: 1.05rem;
  }
}

/* =========================================== 
 * Hero Section
 * =========================================== */
.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-xl);
}

.hero-slider .slides {
  list-style: none;
  height: 100%;
  position: relative;
}

.hero-slider .slides li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slides li:first-child {
  opacity: 1;
}

.hero-slider .slide-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.397);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.slide-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.slide-title strong {
  color: var(--primary-color);
  display: block;
}

.hero-slider p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* =========================================== 
 * Modern Cards & Components
 * =========================================== */
.card {
  background: var(--bg-primary);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-header {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================== 
 * Feature Sections
 * =========================================== */
.feature {
  text-align: center;
  padding: 2rem;
  background: var(--bg-primary);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  margin-bottom: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature p {
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* New Modern Feature Cards */
.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.feature-icon i {
  font-size: 2.5rem;
  color: white;
}

.feature-card .feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feature-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.feature-card-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.feature-card-highlight .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.feature-card-highlight .feature-title {
  color: white;
}

.feature-card-highlight .feature-text {
  color: rgba(255, 255, 255, 0.95);
}

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

.news-link {
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.4);
}

/* =========================================== 
 * Gallery Grid
 * =========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9),
    rgba(118, 75, 162, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: white;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* =========================================== 
 * News & Articles
 * =========================================== */
.news {
  background: var(--bg-primary);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.news:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news figure {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.news figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news:hover figure img {
  transform: scale(1.05);
}

.news .card-body {
  padding: 1.5rem;
}

.entry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.entry-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: var(--primary-color);
}

/* Modern News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-badge i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.news-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 0.75rem;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

/* =========================================== 
 * Testimonials
 * =========================================== */
.testimonial-slider {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.testimonial-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.testimonial-slider blockquote {
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonial-slider cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  opacity: 0.9;
}

/* =========================================== 
 * Partners Section
 * =========================================== */
.partners {
  text-align: center;
  padding: 2rem 0;
}

.team {
  display: inline-block;
  margin: 1rem;
  transition: transform 0.3s ease;
}

.team:hover {
  transform: scale(1.05);
}

.team img {
  max-width: 150px;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
}

/* =========================================== 
 * Modern Footer
 * =========================================== */
.site-footer {
  background: var(--bg-dark);
  color: white;
  margin-top: 4rem;
}

.widget-area {
  padding: 3rem 0;
}

.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  margin-bottom: 0.5rem;
}

.widget ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.widget ul li a:hover {
  color: white;
}

.widget address {
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.6;
}

.bottom-footer {
  background: #0f172a;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #334155;
}

.footer-navigation {
  margin-bottom: 1rem;
}

.footer-navigation a {
  color: #cbd5e1;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-navigation a:hover {
  color: white;
}

.colophon {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* =========================================== 
 * Responsive Design
 * =========================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  /* Top Header Mobile Styles */
  .top-header {
    padding: 1rem 0;
  }

  .top-header .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  #branding {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  #branding .logo {
    width: 60px;
    height: 60px;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.85rem;
  }

  .right-section {
    width: 100%;
    justify-content: center;
  }

  .btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }

  .hero-slider {
    height: 50vh;
    min-height: 400px;
  }

  .hero-slider .slide-content {
    left: 1rem;
    right: 1rem;
    padding: 2rem;
    max-width: none;
  }

  .slide-title {
    font-size: 2rem;
  }

  /* Hide desktop menu on mobile */
  .main-navigation .menu {
    display: none !important;
  }

  /* Show menu toggle button on mobile */
  .menu-toggle {
    display: block;
  }

  /* Mobile navigation styling */
  .mobile-navigation {
    display: none; /* Hidden by default, shown via JS */
  }

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

  .main-navigation {
    position: relative;
  }

  .social-links {
    display: none;
  }

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-6,
  .col-8,
  .col-9 {
    flex: 0 0 100%;
  }

  .feature {
    min-height: 250px;
    margin-bottom: 1rem;
  }

  .news {
    min-height: 300px;
    margin-bottom: 1rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

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

@media (max-width: 480px) {
  /* Top Header Extra Small Screens */
  .top-header {
    padding: 0.75rem 0;
  }

  .site-title {
    font-size: 1.25rem;
  }

  .description {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  #branding .logo {
    width: 50px;
    height: 50px;
  }

  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }

  .hero-slider .slide-content {
    padding: 1.5rem;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .card-body {
    padding: 1rem;
  }
}

/* =========================================== 
 * Modern Feature Cards (Kuhusu Sisi Page)
 * =========================================== */
.modern-feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.modern-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.modern-feature-card:hover::before {
  transform: scaleX(1);
}

.modern-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.modern-feature-card:hover .modern-num {
  transform: scale(1.1) rotate(360deg);
}

.modern-num i {
  font-size: 2rem;
  color: white;
  position: absolute;
  opacity: 0.3;
}

.modern-num span {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
}

.modern-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
}

.modern-feature-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  text-align: center;
}

/* =========================================== 
 * Team Member Cards
 * =========================================== */
.team-member-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9),
    rgba(118, 75, 162, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .team-overlay {
  opacity: 1;
}

.team-overlay i {
  font-size: 4rem;
  color: white;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.team-member-card:hover .team-overlay i {
  transform: scale(1);
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
  background: white;
}

.team-member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.team-member-designation {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

/* =========================================== 
 * News Hero Section
 * =========================================== */
.news-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Sport Items Grid */
.sport-item {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}

.sport-item:hover {
  transform: translateX(5px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.15);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(249, 115, 22, 0.05)
  );
}

/* Share Buttons */
.share-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Featured Article */
.featured-article {
  animation: fadeInUp 0.6s ease-out;
}

/* =========================================== 
 * About Hero Section
 * =========================================== */
.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-stat > div:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-stat i {
  transition: transform 0.3s ease;
}

.hero-stat:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .news-hero {
    min-height: 350px;
  }

  .news-hero h1 {
    font-size: 2.5rem !important;
  }

  .news-hero p {
    font-size: 1rem !important;
  }

  .featured-article {
    padding: 2rem !important;
  }

  .sport-item {
    font-size: 0.85rem;
    padding: 0.6rem 0.75rem;
  }

  .about-hero {
    min-height: 400px;
  }

  .about-hero h1 {
    font-size: 2.5rem !important;
  }

  .about-hero p {
    font-size: 1.1rem !important;
  }

  .hero-stat > div {
    padding: 1.5rem 1rem !important;
  }
}

@media (max-width: 480px) {
  .news-hero {
    min-height: 300px;
  }

  .news-hero h1 {
    font-size: 2rem !important;
  }

  .news-hero h1 i {
    font-size: 2rem !important;
  }

  .featured-article {
    padding: 1.5rem !important;
  }

  .featured-article h1 {
    font-size: 1.8rem !important;
  }

  .article-content {
    font-size: 1rem !important;
  }

  .sport-item {
    font-size: 0.8rem;
    padding: 0.5rem 0.6rem;
  }

  .about-hero {
    min-height: 350px;
  }

  .about-hero h1 {
    font-size: 2rem !important;
  }

  .about-hero h1 i {
    font-size: 2rem !important;
  }

  .about-hero p {
    font-size: 1rem !important;
  }

  .hero-stat > div {
    padding: 1.25rem 0.75rem !important;
  }

  .hero-stat > div > div:first-of-type {
    font-size: 1.5rem !important;
  }
}

/* =========================================== 
 * Animations & Transitions
 * =========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* =========================================== 
 * Sports Hero Animations
 * =========================================== */
@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

.sport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.sport-type-card {
  transition: all 0.3s ease;
}

.sport-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2) !important;
  border-color: var(--primary-color) !important;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* =========================================== 
 * Registration Form Styles
 * =========================================== */
.registration-hero {
  position: relative;
  overflow: hidden;
}

.form-group {
  position: relative;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  background: white !important;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--primary-light);
  background: white;
}

/* Form sections */
.form-section {
  display: none;
  animation: fadeIn 0.6s ease;
}

.form-section.active-section {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toggle-btn {
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Registration form responsive */
@media (max-width: 768px) {
  .registration-hero h1 {
    font-size: 2.5rem !important;
  }

  .registration-hero p {
    font-size: 1.1rem !important;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.875rem !important;
    font-size: 0.95rem !important;
  }

  .toggle-btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .registration-hero h1 {
    font-size: 2rem !important;
  }

  .registration-hero .container {
    padding: 2rem 1rem !important;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

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

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}

.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 3rem;
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}

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

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

.rounded {
  border-radius: 0.5rem;
}
.rounded-lg {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 50%;
}

.shadow {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-xl {
  box-shadow: var(--shadow-xl);
}

/* =========================================== 
 * Loading States
 * =========================================== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* =========================================== 
 * Additional Improvements
 * =========================================== */
body {
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

/* Smooth transitions for all elements */
* {
  transition: all 0.3s ease;
}

/* Better focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Improved text selection */
::selection {
  background: var(--primary-color);
  color: white;
}

/* Better scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
