/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Adjust body content to not go under the navbar */
body {
    padding-top: 60px; /* Adjust height based on navbar height */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-image: url('../assets/Breeze.jpg'); /* Background for the entire page */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #333;
    background-color: #0c0c0c;
}

/* Header Section */
header {
    background-image: url('../assets/FortniteTourneyWinterClassic8.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    margin: 1rem auto;
    margin: 0 auto; /* Remove static top margin */
    box-sizing: border-box; /* Include padding in the element's size */
}

 /* section {
    margin-top: 20px; /* Add spacing to ensure no overlap with navbar 
} */


header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Flexbox Layout for Sections */
.section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.card {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    /* max-width: 400px; */
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.card h2 {
    background: #007bff;
    color: #fff;
    margin: 0;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
}

.card-content {
    padding: 15px;
}

.card-content p,
.card-content ul {
    margin: 10px 0;
    font-size: 1rem;
    color: #555;
}

.card-content ul {
    padding: 0;
    list-style-type: none;
}

.card-content ul li {
    margin: 0.5rem 0;
}

/* Content Sections */
section {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #282c34;
    text-align: center;
}

p,
ul {
    font-size: 1.1rem;
    color: #555;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    display: flex;
    margin: 0 0;
}

/* Prizes Section */
#prizes {
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 20px; */
}

.prize-content {
    text-align: center;
    font-size: 1.1rem;
}

.prize-image img {
    max-width: 100px;
    height: auto;
    margin: 10px 0;
}

/* Form Container */
.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.registration-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

form select {
    padding: 10px;
    font-size: 16px;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="file"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.registration-form input[type="radio"] {
    margin-right: 5px;
}

.registration-form button {
    padding: 12px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.registration-form button:hover {
    background-color: #0056b3;
}

button[disabled] {
    background-color: #ccc; /* Gray out the button */
    color: #666; /* Dim the text color */
    cursor: not-allowed; /* Show "not allowed" cursor */
    opacity: 0.6; /* Make it semi-transparent */
}

/* Footer */
footer {
    background-color: rgba(40, 44, 52, 0.9);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 20px;
}
