:root {
    --primary: #d39f37;
    --bg-dark: #0d0d0d;
    --bg-light: #151515;
    --bg-alt: #181818;
    --text: #fff;
}

body {
    background: var(--bg-dark);
    color: var(--text);
}

section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

section:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.club-info {
    background: var(--bg-dark);
}

.journey {
    background: var(--bg-light);
}

.stats {
    background: linear-gradient(135deg, #2a2006, #5b4310);
}

.why-us {
    background: var(--bg-dark);
}

.facilities {
    background: var(--bg-alt);
}

.schedule {
    background: var(--bg-dark);
}

.gallery {
    background: var(--bg-light);
}

.testimonials {
    background: linear-gradient(#111, #1c1c1c);
}

.cta {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url('https://picsum.photos/1600/600?banner') center/cover;
}

.section-heading,
.section-title {
    margin-bottom: 60px;
    text-align: center;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif
}

body {
    background: #000;
    color: #fff
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .7)), url('https://picsum.photos/1600/900?random=1') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.hero h1 {
    font-size: 60px;
    color: #d39f37;
    animation: up 1.5s
}

.hero p {
    font-size: 22px;
    margin: 20px 0;
    animation: fade 2s
}

.btn {
    display: inline-block;
    background: #d39f37;
    color: #000;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s
}

.btn:hover {
    transform: scale(1.08)
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 60px;
    background: #111
}

.card {
    background: #1b1b1b;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: .4s;
    border: 1px solid #333
}

.card:hover {
    transform: translateY(-10px);
    border-color: #d39f37
}

.num {
    font-size: 42px;
    color: #d39f37;
    font-weight: bold
}

.gallery {
    padding: 60px 5%
}

.gallery h2 {
    text-align: center;
    color: #d39f37;
    margin-bottom: 30px
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px
}

.grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: .4s
}

.grid img:hover {
    transform: scale(1.05)
}

.schedule {
    padding: 60px 5%;
    background: #111
}

table {
    width: 100%;
    border-collapse: collapse
}

th,
td {
    padding: 14px;
    border: 1px solid #444;
    text-align: center
}

th {
    background: #d39f37;
    color: #000
}

.facilities {
    padding: 60px 5%
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.fac {
    background: #1b1b1b;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: .3s
}

.fac:hover {
    background: #d39f37;
    color: #000
}

.cta {
    text-align: center;
    padding: 80px 20px;
    background: #111
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media(max-width:768px) {
    .hero h1 {
        font-size: 38px
    }

    .hero p {
        font-size: 18px
    }
}





.club-info {
    padding: 70px 8%;
    background: #111;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #d39f37;
    font-size: 42px;
}

.section-title p {
    color: #ddd;
    margin-top: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    background: #1b1b1b;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: .4s;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: #d39f37;
}

.info-card h3 {
    color: #d39f37;
    margin-bottom: 20px;
}

.info-card p {
    margin: 12px 0;
    line-height: 1.8;
}

.map-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #d39f37;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: .3s;
}

.map-btn:hover {
    transform: scale(1.05);
}

.map-section {
    padding: 70px 8%;
}

.map-section h2 {
    color: #d39f37;
    text-align: center;
    margin-bottom: 30px;
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .info-card {
        padding: 20px;
    }

}

.section-heading {
    text-align: center;
    font-size: 40px;
    color: #d39f37;
    margin-bottom: 50px;
}

.why-grid,
.contact-grid,
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.why-card,
.contact-card,
.testimonial-card {

    background: #111;

    border-radius: 15px;

    padding: 30px;

    transition: .5s;

    border: 1px solid #333;

    animation: fadeUp 1s ease;

}

.why-card:hover,
.contact-card:hover,
.testimonial-card:hover {

    transform: translateY(-12px);

    border-color: #d39f37;

    box-shadow: 0 15px 30px rgba(211, 159, 55, .3);

}

.icon {

    font-size: 55px;

    margin-bottom: 20px;

}

.banner {

    height: 450px;

    background: url("../images/banner.jpg") center/cover;

    position: relative;

    margin-top: 80px;

}

.banner-overlay {

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: rgba(0, 0, 0, .6);

}

.banner h1 {

    font-size: 55px;

    color: #fff;

    animation: slideLeft 1.5s;

}

.banner p {

    margin: 20px 0;

    font-size: 22px;

    animation: slideRight 1.5s;

}

.join-btn {

    padding: 15px 40px;

    background: #d39f37;

    color: #000;

    text-decoration: none;

    font-weight: bold;

    border-radius: 40px;

    transition: .4s;

}

.join-btn:hover {

    transform: scale(1.1);

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(60px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes slideLeft {

    from {

        opacity: 0;

        transform: translateX(-120px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

@keyframes slideRight {

    from {

        opacity: 0;

        transform: translateX(120px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

.journey {
    padding: 80px 8%;
    background: #111;
}

.section-title {
    text-align: center;
    color: #d39f37;
    font-size: 42px;
    margin-bottom: 10px;
}

.journey-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
}

.timeline {
    max-width: 900px;
    margin: auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #d39f37;
}

.timeline-item {
    display: flex;
    margin-bottom: 45px;
    position: relative;
}

.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #d39f37;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    z-index: 2;
    animation: pulse 2s infinite;
}

.content {
    margin-left: 30px;
    background: #1b1b1b;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    border-left: 4px solid #d39f37;
    transition: .4s;
}

.content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(211, 159, 55, .25);
}

.content h3 {
    color: #d39f37;
    margin-bottom: 12px;
}

.content p {
    color: #ddd;
    line-height: 1.8;
}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}

@media(max-width:768px) {

    .timeline::before {
        left: 25px;
    }

    .circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .content {
        margin-left: 20px;
    }

    .section-title {
        font-size: 32px;
    }

}