/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-size: cover;
    min-height: 100vh;
    background: url(image/WhatsApp\ Image\ 2025-09-02\ at\ 01.37.05_49276d66.jpg) no-repeat center/cover;
}

body {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: #111827;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-family: cursive;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #1f2937;
    min-width: 160px;
    border-radius: 6px;
    flex-direction: column;
    z-index: 1000;
}

.dropdown-content a {
    padding: 10px;
    text-decoration: none;
    color: white;
    display: block;
}

.dropdown-content a:hover {
    background: #374151;
}

.dropdown.show .dropdown-content {
    display: flex;
}

/* Hamburger */
.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #111827;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px 0;
    }

    nav.show {
        display: flex;
    }

    .dropdown-content {
        position: static;
        background: #1f2937;
        border-radius: 0;
    }

    .menu-btn {
        display: flex;
    }
}


/* Hero */
.hero {
    height: 92vh;
    /* background: url(image/Pickleball.jpg)  no-repeat center/cover; */
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* About */
.about,
.events,
.contact {
    padding: 50px 20px;
    text-align: center;
    color: rgb(255, 253, 253);
}

.about p {
    max-width: 700px;
    margin: auto;
}

button {
    margin-top: 15px;
}

/* Contact */

button {
    padding: 10px;
    background: #1b4332;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #2d6a4f;
}

/* Footer */
footer {
    background: #1b4332;
    color: white;
    text-align: center;
    padding: 15px;
}
h1 {
    font-size: 45px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1s forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-in-out;
}


/* Keyframes */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}