/* Registration Section */
.registration-container {
    text-align: center;
    background-color: black;
    color: white;
    padding: 40px 0;
    max-width: 900px; /* Same width as sponsor-carousel */
    margin: 0 auto; /* Centering */
}

/* Registration Title */
.registration-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Category Titles */
.registration-categories {
    display: flex;
    justify-content: center; /* Center the category titles */
    gap: 200px; /* Add space between titles */
    margin-bottom: 20px;
}

.half-marathon-title {
    color: #FF4500;
    font-size: 1.5em;
    font-weight: bold;
}

.ten-k-title {
    color: #FFFF00;
    font-size: 1.5em;
    font-weight: bold;
}

/* Ensure all cards stay centered in a row */
.registration-options {
    display: flex;
    justify-content: center; /* Center the cards */
    gap: 20px; /* Space between cards */
    max-width: 900px; /* Keep within the same width as sponsor-carousel */
    margin: 0 auto; /* Center the entire row */
}

/* Card Styling */
.card {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    width: 200px; /* Keep boxes smaller */
    text-align: center;
    flex: 1;
    min-width: 200px; /* Prevents wrapping */
}

.half-marathon-card {
    border: 2px solid #FF4500;
}

.ten-k-card {
    border: 2px solid #FFFF00;
}

/* Price */
.price {
    font-size: 1.5em;
    font-weight: bold;
}

/* Bullet Point Styling */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Button Styles */
.btn {
    display: block;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.btn-orange {
    background-color: #FF4500;
    color: black;
}

.btn-yellow {
    background-color: #FFFF00;
    color: black;
}


/* Mobile Layout: Stacking Cards */
@media (max-width: 768px) {
    .registration-categories {
        flex-direction: column; /* Stack category titles */
        gap: 10px; /* Reduce space between titles */
    }
    
        /* Registration Title */
    
    .half-marathon-title
     {
        font-size: 1.5em; /* Adjust font size for mobile */
        font-weight: bold; /* Keep titles bold */
        margin-bottom: 10px; /* Space between title and card */
    }
    
    .half-marathon-cards {
        display: flex;
        flex-direction: column; /* Stack the cards for each category */
        gap: 10px;
        align-items: center; /* Center the cards */
    }

    /* Registration Title */
    .registration-title {
        font-size: 25px;
    }

    /* Stack Cards in Mobile Layout */
    .registration-options {
        flex-direction: column; /* Stack cards vertically */
        gap: 20px; /* Space between cards */
    }

    .card {
        width: 100%; /* Make cards full width */
        max-width: 300px; /* Max width for the cards */
        margin: 0 auto; /* Center the cards */
        padding: 15px; /* Adjust padding */
    }
    
    .ten-k-title {
        font-size: 1.5em; /* Adjust font size for mobile */
        font-weight: bold; /* Keep titles bold */
        margin-bottom: 10px; /* Space between title and card */
    }
    
    .ten-k-cards {
        display: flex;
        flex-direction: column; /* Stack the cards for each category */
        gap: 10px;
        align-items: center; /* Center the cards */
    }

    /* Ensure Cards are grouped under each title */
    

    /* Margin adjustments to make sure titles appear above their respective boxes */
    .half-marathon-title {
        margin-top: 20px; /* Ensure space before Half Marathon title */
    }

    .ten-k-title {
        margin-top: 40px; /* Ensure space before 10k title */
    }
    
    
}
