
body { 
    margin: 0;
    font-family: "acumin-variable-concept", sans-serif;
    background: white;
    color: black;
}


.header-bar {
    background: #54A4DB;
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bar h1 {
    margin: 0;
    font-size: 40px;
}

.logo {
    height: 60px;
}

.nav-bar {
    text-align: center;
    font-size: 24px;
    margin: 25px 0;
}

.nav-bar a {
    margin: 0 40px;
    text-decoration: none;
    color: black;
    font-style: italic;
}

.nav-bar a:hover {
    color: #054a7f;
}

.landing-section, .about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 60px;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    max-width: 420px;
    font-size: 20px;
    font-style: italic;
    line-height: 1.4;
}

.about-img {
    max-width: 480px;
    height: auto;
    border-radius: 4px;
}

/* ================= Player Section ================= */
.player-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.player {
    max-width: 450px;
}

.player img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.player-text {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
    font-style: italic;
}

/* ================= Contact Page ================= */
.contact-section {
    width: 60%;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-info {
    font-size: 18px;
    margin-bottom: 25px;
    font-style: italic;
}

.contact-form {
    display: flex;
    flex-direction: column;
    font-size: 18px;
}

.contact-form label {
    margin-top: 15px;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #888;
    border-radius: 6px;
    background: white;
}

#mySubmit {
    margin-top: 20px;
    padding: 12px 20px;
    background: #54A4DB;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

#mySubmit:hover {
    background: #3b7fb0;
}


.footer-bar {
    margin-top: 60px;
    text-align: center;
    padding: 12px;
    background: #54A4DB;
    color: white; /* for readability on blue */
    font-size: 18px;
    font-style: italic;
}

@media (max-width: 900px) {
    .landing-section, .about-section {
        flex-direction: column;
        align-items: center;
    }

    .about-text, .about-img {
        margin: 0;
        width: 100%;
    }

    .player-section {
        flex-direction: column;
        align-items: center;
    }

    .nav-bar a {
        display: inline-block;
        margin: 10px 20px;
    }
}