/* ===============================
   ADEM AYEM FUTSAL CLUB
   Vintage Elegant Theme
==================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===============================
   ROOT
==================================*/

:root{

    --green:#19352a;
    --green2:#214437;

    --gold:#c7a86d;

    --cream:#f8f5ef;

    --white:#ffffff;

    --dark:#151515;

    --gray:#666;

    --shadow:0 20px 50px rgba(0,0,0,.18);

    --radius:18px;

    --transition:.4s;

}

/* ===============================
   RESET
==================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--cream);

    color:var(--dark);

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,90%);

    margin:auto;

}

/* ===============================
   SECTION
==================================*/

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-family:'Cinzel',serif;

    font-size:40px;

    color:var(--green);

    letter-spacing:2px;

}

.section-title span{

    width:120px;

    height:3px;

    background:var(--gold);

    display:inline-block;

    margin-top:15px;

}

/* ===============================
   NAVBAR
==================================*/

header{

    position:fixed;

    width:100%;

    z-index:999;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 5%;

    transition:.4s;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:55px;

}

.logo span{

    color:white;

    font-family:'Cinzel';

    font-size:22px;

}

.menu{

    display:flex;

    gap:35px;

}

.menu a{

    color:white;

    font-weight:500;

    transition:.3s;

}

.menu a:hover{

    color:var(--gold);

}

.hamburger{

    display:none;

    font-size:35px;

    color:white;

}

/* ===============================
   HERO
==================================*/

.hero{

    min-height:100vh;

    background:url("../images/hero.jpg") center center/cover;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.60),
                               rgba(0,0,0,.70));

}

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

}

.subtitle{

    letter-spacing:6px;

    color:var(--gold);

    margin-bottom:15px;

}

.hero h1{

    font-family:'Cinzel';

    font-size:70px;

    line-height:1.2;

    margin-bottom:20px;

}

.tagline{

    font-size:22px;

    opacity:.9;

    margin-bottom:45px;

}

/* ===============================
   BUTTON
==================================*/

.hero-button{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    padding:16px 38px;

    background:var(--gold);

    color:white;

    border-radius:50px;

    transition:.4s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

.btn-secondary{

    padding:16px 38px;

    border:2px solid white;

    border-radius:50px;

    color:white;

    transition:.4s;

}

.btn-secondary:hover{

    background:white;

    color:var(--green);

}

/* ===============================
ABOUT
==================================*/

.about-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.about-text p{

    margin-bottom:20px;

    line-height:2;

}

/* ===============================
STATISTIC
==================================*/

.statistic{

    background:var(--green);

    color:white;

}

.stat-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:45px;

    border-radius:20px;

    text-align:center;

}

.card h2{

    font-size:48px;

    color:var(--gold);

}

.card p{

    margin-top:10px;

}

/* ===============================
GALLERY
==================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

}

.gallery-grid img{

    height:260px;

    object-fit:cover;

    border-radius:18px;

    transition:.4s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/* ===============================
DOCUMENT
==================================*/

.doc-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.doc-card{

    background:white;

    padding:50px;

    border-radius:20px;

    text-align:center;

    color:var(--green);

    transition:.4s;

    box-shadow:var(--shadow);

}

.doc-card:hover{

    background:var(--green);

    color:white;

}

.doc-card i{

    font-size:50px;

    margin-bottom:20px;

}

/* ===============================
JERSEY
==================================*/

.jersey-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.jersey-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    text-align:center;

    padding-bottom:25px;

}

.coming{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    min-height:400px;

    background:#ddd;

    color:#777;

}

/* ===============================
TIMELINE
==================================*/

.timeline{

    border-left:4px solid var(--gold);

    padding-left:40px;

}

.item{

    margin-bottom:45px;

}

.item h3{

    color:var(--green);

    margin-bottom:10px;

}

/* ===============================
QUOTE
==================================*/

.quote{

    background:var(--green);

    color:white;

    text-align:center;

}

.quote h2{

    font-family:'Cinzel';

    font-size:46px;

    line-height:1.8;

}

/* ===============================
FOOTER
==================================*/

footer{

    background:#10251d;

    color:white;

    text-align:center;

    padding:60px 0;

}

footer img{

    width:90px;

    margin:auto;

}

.social{

    margin:25px 0;

}

.social a{

    color:white;

    font-size:28px;

    margin:0 15px;

    transition:.4s;

}

.social a:hover{

    color:var(--gold);

}

/* ===============================
RESPONSIVE
==================================*/

@media(max-width:900px){

.hero h1{

font-size:50px;

}

.about-content{

grid-template-columns:1fr;

}

.stat-grid{

grid-template-columns:repeat(2,1fr);

}

.doc-grid{

grid-template-columns:1fr;

}

.jersey-grid{

grid-template-columns:1fr;

}

.menu{

display:none;

}

.hamburger{

display:block;

}

}

@media(max-width:600px){

.hero h1{

font-size:36px;

}

.section-title h2{

font-size:30px;

}

.stat-grid{

grid-template-columns:1fr;

}

.quote h2{

font-size:28px;

}

}