@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Orbitron", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #393934;
    color: #c5c4bd;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #393934;
    padding: 15px;
    color: #FFE11E;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.navbar a {
    color: #9D8DF1;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #FFE11E;
}

.high-contrast .navbar {
    background-color: #000;
    color: #FFF;
}

.brand-name {
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
}

.brand-name img {
    width: 100px;
    height: 45px;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(157, 141, 241, 0.2);
}

main {
    padding: 40px 20px;
    text-align: center;
}

.tournament-booking {
    background-color: #393934;
    border-radius: 8px;
    padding: 40px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    color: #FFE11E;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #c5c4bd;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    color: #FFE11E;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #FFE11E;
    background-color: #2B2A27;
    color: #c5c4bd;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: #FFD700;
    outline: none;
}

.submit-btn {
    background-color: #FFE11E;
    color: #393934;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
}

.submit-btn:hover {
    background-color: #FFD700;
}

.tournament-time {
    font-size: 1.2rem;
    color: #FFE11E;
}

.highlight {
    font-weight: bold;
    color: #FFD700;
}


/* Footer Styles */
footer {
    background-color: #393934;
    color: #c5c4bd;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.5);
}

.social-links a {
    color: #9D8DF1;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

.social-links a:hover {
    color: #FFE11E;
}

/* Accessibility Widget */
.accessibility-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accessibility-btn {
    background-color: #FFE11E;
    color: #393934;
    font-size: 30px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.accessibility-btn:hover {
    background-color: #FFD700;
}

.accessibility-menu {
    display: none;
    margin-top: 10px;
    background-color: #2B2A27;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    color: #c5c4bd;
    text-align: center;
}

.accessibility-widget.active .accessibility-menu {
    display: block;
}

.accessibility-option {
    background-color: #393934;
    color: #FFE11E;
    border: none;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accessibility-option:hover {
    background-color: #FFD700;
    color: #393934;
}

/* High Contrast Mode */
.high-contrast {
    background-color: #000;
    color: #FFF;
}

.high-contrast .navbar {
    background-color: #000;
    color: #FFF;
}

.high-contrast .reviews-wrapper, .high-contrast .review {
    background-color: #000;
    color: #FFF;
}

.high-contrast .accessibility-widget {
    background-color: #000;
}

.restore-defaults-btn {
    align-self: flex-end;
    background-color: #393934; /* Matches other buttons */
    color: #FFE11E; /* Text color consistent with theme */
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.restore-defaults-btn:hover {
    background-color: #FFD700; /* Hover effect similar to other buttons */
    color: #2B2A27;
}

