@import url('https://fonts.googleapis.com/css2?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&display=swap');

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

html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.bar {
    margin-right: 200px;
    display: flex;
}

#logo {
    font-family: 'Poppins';
    font-size: 30px;
    font-weight: bold;
    color: blue;
    margin-top: 10px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.267);
    height: 12vh;
    width: 100vw;
    padding: 0px 20px;
}

.navbar ul li {
    list-style: none;
    font-size: 16px;
    font-family: 'Poppins';
    margin: 20px;
    cursor: pointer;
}

.navbar ul {
    display: flex;
    gap: 3em;
}

.navbar ul li:hover {
    border-bottom: solid 3px blue;
}


#btn {
    border-radius: 20px;
    border: none;
    background-color: blue;
    width: 7vw;
    height: 7vh;
    font-family: 'Poppins';
    font-size: 15px;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    margin-right: 15px;
}

#btn:hover {
    background-color: rgb(31, 31, 211);
    transition: 0.5s;
}

a {
    text-decoration: none;
    color: black;
}

.logo {
    display: flex;
}

/* ===== CONTACT MODAL (DESIGN SIMPLE) ===== */
#contact {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

#contact.active {
    display: flex;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    width: 350px;
    z-index: 201;
    text-align: center;
}

.contact-card h3 {
    font-size: 22px;
    color: blue;
    margin-bottom: 10px;
}

.contact-card #text {
    font-size: 14px;
    color: black;
    margin-bottom: 20px;
}

.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    border: 1px solid black;
    padding: 8px;
    font-size: 14px;
    border-radius: 10px;
}

.contact-card textarea {
    height: 80px;
    border-radius: 10px;
}

.contact-card #btn2 {
    background: blue;
    color: white;
    border-radius: 10px;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

#txt {
    float: right;
    font-weight: bold;
    font-size: 20px;
    color: black;
    cursor: pointer;
    border: 1px solid black;
    padding: 0 5px;
    background: #ddd;
}

#txt:hover {
    background: red;
    color: white;
}

.img img {
    width: 20vw;
    height: 55vh;
}

.sport {
    display: flex;
    justify-content: space-between;
    margin: 70px;
}

.img1 img {
    width: 20vw;
    height: 55vh;
}

.spor {
    border: 0.5px solid black;
    display: flex;
    gap: 30px;
    margin: 10px;
    height: 55vh;
    width: 50vw;
    padding-right: 10px;
}

.spor h1 {
    font-size: 25px;
    font-weight: bold;
    color: blue;
    font-family: 'Arial';
    margin-top: 10px;
    text-align: center;
    text-transform: capitalize;
}

.spor p {
    font-size: 17px;
    font-family: 'Arial';
    margin-top: 50px;
    margin: 20px;
    text-align: justify;

}

.spor {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.42);
    border: none;
    border-radius: 20px;
}

i {
    color: blue;
    margin-top: 10px;
    font-size: 36px;
    display: flex;
}


.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: blue;
        z-index: 99;
        transition: right 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    }

    .navbar.open {
        right: 0;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .bar {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
    }

    .navbar ul li {
        margin: 15px 0;
        font-size: 20px;
        color: white;
    }

    .navbar ul li a {
        color: white;
        font-size: 20px;
    }

    #btn {
        width: auto;
        padding: 10px 25px;
        height: auto;
        margin: 15px 0;
        border: 2px solid white;
    }

    .sport {
        flex-direction: column;
        margin: 20px;
    }

    .spor {
        width: 90vw;
        height: auto;
        flex-direction: column;
    }

    .img img, .img1 img {
        width: 80vw;
        height: auto;
    }

    header {
        width: 100%;
    }
}

footer {
    background: blue;
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin-top: auto;
}

footer p {
    font-size: 16px;
    margin: 0;
}

footer p span {
    font-weight: bold;
    text-decoration: underline;
}