@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

body {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.bg-gray-100 {
    background-color: #f7fafc;
}

.bg-gray-200 {
    background-color: #edf2f7;
}

.text-gray-500 {
    color: #718096;
}

.text-gray-600 {
    color: #4a5568;
}

.text-gray-700 {
    color: #2d3748;
}

.text-gray-800 {
    color: #1a202c;
}

.text-blue-500 {
    color: #3182ce;
}

.text-green-500 {
    color: #38a169;
}

.text-purple-500 {
    color: #805ad5;
}

.bg-white {
    background-color: #ffffff;
}

.font-sans {
    font-family: 'Poppins', sans-serif;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

@media (min-width: 768px) {
    .text-4xl {
        font-size: 3rem;
        line-height: 3.25rem;
    }
}

@media (min-width: 1024px) {
    .text-4xl {
        font-size: 4rem;
        line-height: 4rem;
    }
}

.font-bold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.text-center {
    text-align: center;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

@media (min-width: 768px) {
    .text-lg {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

.bg-white {
    background-color: #fff;
}

.text-blue-500 {
    color: #3b82f6;
}

.font-semibold {
    font-weight: 600;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.hover\:bg-blue-100:hover {
    background-color: #e0f2fe;
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring-2:focus {
    --tw-ring-width: 2px;
}

.focus\:ring-blue-300:focus {
    --tw-ring-color: #93c5fd;
}

.focus\:ring-offset-transparent:focus {
    --tw-ring-offset-color: transparent;
}

.leading-relaxed {
    line-height: 1.75;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.justify-content-center {
    justify-content: center;
}

.col-md-4 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}


.mb-4 {
    margin-bottom: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.bg-green-500{
    color: #16a34a;
}

.bg-purple-500{
    color:#9333ea
}

.col-md-3{
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-3{
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.rounded-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #81f0ff; /* Light blue background */
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.card-title {
    margin-bottom: 0.75rem;
    padding: 0.25rem;
    border-radius: 0.375rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.card-img-top {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    display: block;
}

.g-4,
.row>.col {
    padding-right: 1rem;
    padding-left: 1rem;
    margin-top: 1rem;
}
.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%;
}
@media (min-width: 768px){
    .row-cols-md-3>* {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
@media (min-width: 768px){
    .row-cols-md-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, #6eacf7, #ff00ff);
}

.section-border {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.workshop-box {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: #fff;
}

.judge-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.judge-item {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 400px;
}

.pop-on-hover {
    transition: transform 0.2s ease-in-out;
}

.pop-on-hover:hover {
    transform: scale(1.05);
}
