/* General Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Navbar Styling */
nav {
    background-color: #800000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid grey; /* Added thin grey line */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 10px;
}

.logo .club-name {
    font-size: 32px;
    font-weight: 800;
    color: lightgrey;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    border-bottom: 2px solid #fff;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 850px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background-color: #800000;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 20px 0;
        text-align: center;
    }

    .nav-links a {
        font-size: 24px;
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .logo .club-name {
        font-size: 26px;
    }
}

/* Footer Styling */
footer {
    background-color: #800000;
    color: #fff;
    padding: 20px;
    position: relative;
    z-index: 2; /* Lowered z-index so shapes appear above footer */
}

.footer-content {
    width: 100%;
}

.footer-center {
    text-align: center;
}

.footer-left {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding-top: 10px; /* Adjust as needed */
}

.footer-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.line-separator {
    width: 90%;
    max-width: 1000px;
    border: none;
    border-top: 2px solid grey;
    margin: 10px auto; /* Center the separator line */
}

.footer-logo {
    margin-top: 5px;
}

.instagram-link {
    font-size: 35px;
    color: grey;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: white;
}

/* Responsive Text Sizes */
@media (max-width: 950px) {
    .logo .club-name {
        font-size: 26px;
    }
}

@media (max-width: 400px) {
    .logo .club-name {
        font-size: 22px;
    }
}

@media (max-width: 355px) {
    .logo .club-name {
        font-size: 19px;
    }
}
