.path {
    animation: draw 20s infinite;
    animation-timing-function: linear;
  }
  .path-01 {
    animation-delay: 0s;
  }
  .path-02 {
    animation-delay: 1s;
  }
  .path-03 {
    animation-delay: 2s;
  }
  .path-04 {
    animation-delay: 3s;
  }
  .path-05 {
    animation-delay: 4s;
  }
  
  
  
  @keyframes draw {
    0% {
    }
    100% {
      stroke-dashoffset: 0;
      stroke-opacity: 1;
    }
  }

.alert {
    background-color: hsl(var(--b1) / 1);
}

p, h1, h2, h3, h4, h5, h6, li, a, button {
    font-family: stratum-2-web, sans-serif !important;
}

.team-grid .card {
    max-width: 38vh;
}

@media only screen and (min-width: 1080px) {
.wide-on-big-screen {
  width: 75vh;
}
}

.card figure {
  height: 350px;
}

.fillbg {
  background-size: cover;
  background-position: center;
}

/* Button Styling */
.btn {
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.btn:hover::after {
    animation: button-shine 0.8s;
}

@keyframes button-shine {
    100% {
        transform: translateX(100%);
    }
}

/* Prize Section Styling */
#prizes .card {
    transition: transform 0.2s ease-in-out;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#prizes .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#prizes .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

#prizes .card img {
    border-radius: 16px 16px 0 0;
    transition: all 0.3s ease;
}

#prizes .card:hover img {
    transform: scale(1.05);
}

#prizes .card:hover {
    transform: translateY(-5px);
}

#prizes .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#prizes .card-title {
    justify-content: center;
    margin-bottom: 0.5rem;

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .text-5xl {
        font-size: 2.5rem;
    }

    .text-2xl {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 0.5rem;
    }

    .menu-horizontal {
        display: none;
    }

    /* Add hamburger menu for mobile */
    .navbar .flex-none {
        position: relative;
    }

    .menu-horizontal {
        position: absolute;
        top: 100%;
        right: 0;
        background: hsl(var(--b1));
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border-radius: 0.5rem;
        width: 200px;
    }

    .menu-horizontal li {
        display: block;
        margin: 0.5rem 0;
    }

    /* Adjust grid layouts for mobile */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* Adjust card sizes for mobile */
    .card {
        max-width: 100% !important;
    }

    .card figure {
        height: 250px;
    }

    /* Adjust buttons for mobile */
    .btn {
        margin: 0.5rem;
        min-width: 120px;
    }
}

/* Tablet Responsive Styles */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .wide-on-big-screen {
        width: 100%;
    }
}
}