.hero-bg {
  background-image: url(img/stadium.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Custom Slider Styles */
.slider-dot {
  width: 4px !important;
  height: 4px !important;
}

@media (min-width: 768px) {
  .slider-dot {
    width: 8px !important;
    height: 8px !important;
  }
}

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

.slide-is-animating {
  animation: slideInLeft 0.6s ease-out;
}

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

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gradient Patterned Hero */
.patterned-hero-gradient {
  position: relative;
  overflow: hidden;
}
.patterned-hero-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px
    );
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  animation: patternFloat 20s ease-in-out infinite;
  z-index: 0;
}
.patterned-hero-gradient > * {
  position: relative;
  z-index: 1;
}

/* White Patterned Hero */
.patterned-hero-white {
  position: relative;
  overflow: hidden;
}

.patterned-hero-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(65, 105, 225, 0.07) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(65, 105, 225, 0.07) 2px,
      transparent 2px
    );
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  animation: patternFloat 20s ease-in-out infinite;
  z-index: 0;
}

.patterned-hero-white > * {
  position: relative;
  z-index: 1;
}

@keyframes patternFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

/* Mobile Menu Styles */
.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  gap: 12px;
}
.mobile-menu-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.mobile-menu-link-active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #facc15; /* Tailwind yellow-400 */
  font-weight: 600;
}
.mobile-menu-link i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* Blog Content Styles */
.blog-content {
  line-height: 1.6;
  word-wrap: break-word;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-content h1 {
  font-size: 1.875rem;
}
.blog-content h2 {
  font-size: 1.5rem;
}
.blog-content h3 {
  font-size: 1.25rem;
}
.blog-content h4 {
  font-size: 1.125rem;
}
.blog-content h5 {
  font-size: 1rem;
}
.blog-content h6 {
  font-size: 0.875rem;
}

.blog-content ul,
.blog-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.25rem;
}

.blog-content blockquote {
  border-left: 4px solid #4169e1;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #6b7280;
}

.blog-content code {
  background-color: #f3f4f6;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  font-family: "Courier New", monospace;
  font-size: 0.875em;
}

.blog-content pre {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.blog-content pre code {
  background: none;
  padding: 0;
}

.blog-content a {
  color: #4169e1;
  text-decoration: underline;
}

.blog-content a:hover {
  color: #3154b0;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.blog-content th,
.blog-content td {
  border: 1px solid #d1d5db;
  padding: 0.5rem;
  text-align: left;
}

.blog-content th {
  background-color: #f9fafb;
  font-weight: 600;
}

.blog-content iframe {
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.blog-content hr {
  border: none;
  border-top: 1px solid #d1d5db;
  margin: 2rem 0;
}

/* Responsive adjustments for blog content */
@media (max-width: 768px) {
  .blog-content h1 {
    font-size: 1.5rem;
  }
  .blog-content h2 {
    font-size: 1.25rem;
  }
  .blog-content h3 {
    font-size: 1.125rem;
  }

  .blog-content ul,
  .blog-content ol {
    padding-left: 1rem;
  }
}
