/*======================================================
BALLERS AMMAN
Premium Website
======================================================*/

/*========== GOOGLE FONT ==========*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    background:#070707;

    color:#ffffff;

    overflow-x:hidden;

    line-height:1.6;

}

/*========== VARIABLES ==========*/

:root{

    --primary:#C6FF00;

    --secondary:#111111;

    --background:#070707;

    --card:#111111;

    --white:#ffffff;

    --gray:#B5B5B5;

    --border:#242424;

    --shadow:0 20px 50px rgba(0,0,0,.35);

}

/*========== GLOBAL ==========*/

section{

    padding:120px 8%;

}

.container{

    max-width:1400px;

    margin:auto;

}

img{

    width:100%;

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

    cursor:pointer;

    transition:.35s;

}

h1{

    font-size:5.5rem;

    font-weight:900;

    line-height:.95;

    letter-spacing:-3px;

}

h2{

    font-size:3rem;

    font-weight:800;

    margin-bottom:20px;

}

h3{

    font-size:1.4rem;

}

p{

    color:var(--gray);

}

/*======================================================
HEADER
======================================================*/

header{

    position:fixed;

    top:0;

    width:100%;

    padding:22px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(7,7,7,.55);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.logo{

    font-size:1.7rem;

    font-weight:900;

    letter-spacing:3px;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:#ddd;

    font-size:.95rem;

    transition:.3s;

}

nav a:hover{

    color:var(--primary);

}

.nav-buttons{

    display:flex;

    gap:15px;

}

.lang-btn{

    background:transparent;

    color:white;

    border:1px solid #444;

    padding:12px 22px;

    border-radius:40px;

}

.book-btn{

    background:var(--primary);

    color:black;

    border:none;

    font-weight:700;

    padding:12px 26px;

    border-radius:40px;

}

.book-btn:hover{

    transform:translateY(-3px);

}

/*======================================================
HERO
======================================================*/

.hero{

    height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    background:url("assets/hero.jpg") center center/cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(to bottom,

    rgba(0,0,0,.30),

    rgba(0,0,0,.75));

}

.hero-content{

    position:relative;

    z-index:5;

    width:700px;

}

.hero p{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:4px;

    font-weight:700;

}

.hero h3{

    color:#d0d0d0;

    margin:30px 0;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.hero-buttons button{

    padding:18px 36px;

    border-radius:50px;

    border:none;

    font-weight:700;

}

.hero-buttons button:first-child{

    background:var(--primary);

    color:black;

}

.hero-buttons button:last-child{

    background:transparent;

    color:white;

    border:1px solid white;

}

/*======================================================
ABOUT
======================================================*/

.about-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.card{

    background:var(--card);

    border:1px solid var(--border);

    padding:45px;

    border-radius:25px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

/*======================================================
COACHES
======================================================*/

.coach-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.coach-card{

    height:520px;

    border-radius:30px;

    background:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid var(--border);

}

/*======================================================
PACKAGES
======================================================*/

.packages-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

.package-card{

    background:linear-gradient(180deg,#161616,#0f0f0f);

    padding:45px;

    border-radius:30px;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:var(--shadow);

}

.package-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

}

.package-card h3{

    margin-bottom:25px;

    color:var(--primary);

}

.package-card li{

    padding:16px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/*======================================================
EVENTS
======================================================*/

.events-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.event-card{

    height:350px;

    border-radius:30px;

    background:#121212;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid var(--border);

}

/*======================================================
GALLERY
======================================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:60px;

}

.gallery-item{

    height:320px;

    border-radius:20px;

    background:#1b1b1b;

}

/*======================================================
FAQ
======================================================*/

.faq-item{

    margin-top:20px;

    background:#111;

    padding:30px;

    border-radius:18px;

    border:1px solid var(--border);

}

/*======================================================
CONTACT
======================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    margin-top:60px;

}

input,
textarea{

    width:100%;

    background:#111;

    color:white;

    border:1px solid #2b2b2b;

    padding:18px;

    border-radius:15px;

    margin-bottom:20px;

    outline:none;

}

textarea{

    height:180px;

    resize:none;

}

form button{

    background:var(--primary);

    color:black;

    border:none;

    padding:18px 40px;

    border-radius:50px;

    font-weight:700;

}

/*======================================================
FOOTER
======================================================*/

footer{

    padding:80px 8%;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

}

.footer-logo{

    font-size:2rem;

    font-weight:900;

    letter-spacing:4px;

    margin-bottom:20px;

}

.socials{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:35px;

}

.socials i{

    font-size:24px;

    transition:.35s;

    cursor:pointer;

}

.socials i:hover{

    color:var(--primary);

}

/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:1100px){

nav{

display:none;

}

.about-grid,
.coach-grid,
.events-grid,
.gallery-grid,
.packages-grid,
.contact-grid{

grid-template-columns:1fr;

}

h1{

font-size:4rem;

}

.hero{

text-align:center;

justify-content:center;

}

.hero-content{

width:100%;

}

.hero-buttons{

justify-content:center;

}

}

@media(max-width:700px){

section{

padding:80px 7%;

}

h1{

font-size:3rem;

}

h2{

font-size:2rem;

}

header{

padding:20px;

}

.book-btn{

display:none;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons button{

width:100%;

}

}