/* ===========================
   ZIRVE PLUS AKADEMI
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f0f0f;
    color:white;
}

/* HEADER */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);

    z-index:999;
}

.logo img{

    width:75px;
}

nav{

    display:flex;
    gap:35px;
}

nav a{

    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.35s;
}

nav a:hover{

    color:#d4af37;
}

/* HERO */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.75),
    rgba(0,0,0,.80)),
    url("images/1.jpg.jpeg");

    background-size:cover;
    background-position:center;
}

.hero-content{

    max-width:900px;
    padding:20px;
}

.hero h1{

    font-size:72px;
    color:#d4af37;
    text-shadow:
0 0 10px rgba(212,175,55,.5),
0 0 25px rgba(212,175,55,.4),
0 0 45px rgba(212,175,55,.2);
    margin-bottom:20px;
    line-height:1.1;
    text-transform:uppercase;
}

.hero-text{

    font-size:24px;
    margin-bottom:18px;
    letter-spacing:2px;
}

.hero p{

    font-size:20px;
    margin-bottom:15px;
}

/* BUTTON */

.btn{

    display:inline-block;

    margin-top:35px;

    padding:18px 42px;

    text-decoration:none;

    color:#000;

    background:#d4af37;

    border-radius:50px;

    font-weight:bold;

    transition:.4s;
}

.btn:hover{

    transform:translateY(-8px);scale:(1.05);

    background:white;

    box-shadow:0 0 40px rgba(212,175,55,.7)
}

/* TITLES */

section{

    padding:100px 8%;
}

section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    color:#d4af37;
}
/* ===========================
   BRANŞLAR
=========================== */

.courses{
    background:#141414;
}

.course-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.card{

    background:#1d1d1d;

    border:1px solid rgba(212,175,55,.3);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.4s;

    cursor:pointer;

}

.card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 0 30px rgba(212,175,55,.4);

}

.card h3{

    font-size:28px;

    color:#d4af37;

    margin-bottom:20px;

}

.card p{

    color:#dcdcdc;

    line-height:1.8;

}/* ===========================
   GALERİ
=========================== */

.gallery{

    background:#101010;

}

.gallery-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

}

.gallery-container img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:20px;

    transition:.45s;

    cursor:pointer;

}

.gallery-container img:hover{

    transform:scale(1.05);

    box-shadow:0 0 30px rgba(212,175,55,.45);

}/* ===========================
   NEDEN ZİRVE
=========================== */

.features{

    background:#141414;

}

.features-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.feature-card{

    background:#1f1f1f;

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

}

.feature-card:hover{

    transform:translateY(-10px);scale:(1.03);

    box-shadow:0 0 30px rgba(212,175,55,.3);

}

.feature-card h3{

    color:#d4af37;

    margin-bottom:18px;

}/*==========================
      ANTRENÖRLER
==========================*/

.trainers{
    background:#101010;
}

.trainer-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;

}

.trainer-card{

    background:#1b1b1b;
    border-radius:25px;
    overflow:hidden;

    border:2px solid rgba(212,175,55,.25);

    transition:.4s;

    text-align:center;

    padding-bottom:30px;

}

.trainer-card:hover{

    transform:translateY(-12px);scale:(1.03);

    border-color:#d4af37;

    box-shadow:0 0 35px rgba(212,175,55,.35);

}

.trainer-card img{

    width:100%;
    height:420px;

    object-fit:cover;

}

.trainer-card h3{

    margin-top:25px;

    color:#d4af37;

    font-size:30px;

}

.trainer-card p{

    margin-top:18px;

    line-height:2;

    color:#e5e5e5;

    font-size:17px;

}.trainer-card h4{

    color:#d4af37;

    margin-top:10px;

    font-size:18px;

    font-weight:500;

    letter-spacing:1px;

}/*==========================
      İLETİŞİM
==========================*/

.contact{

    background:#101010;

}

.contact-box{

    max-width:900px;

    margin:auto;

    background:#1b1b1b;

    border:2px solid rgba(212,175,55,.3);

    border-radius:25px;

    padding:50px;

    text-align:center;

    transition:.4s;

}

.contact-box:hover{

    border-color:#d4af37;

    box-shadow:0 0 35px rgba(212,175,55,.35);

}

.contact-box h3{

    color:#d4af37;

    margin-top:25px;

    margin-bottom:10px;

    font-size:24px;

}

.contact-box p{

    font-size:18px;

    color:#e5e5e5;

    line-height:1.9;

}/*==========================
         FOOTER
==========================*/

footer{

    background:#0b0b0b;

    text-align:center;

    padding:50px 20px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-content h3{

    color:#d4af37;

    margin-bottom:15px;

    font-size:30px;

}

.footer-content p{

    margin:10px 0;

    color:#dcdcdc;

}/*==========================
      WHATSAPP
==========================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:white;

    font-size:30px;

    box-shadow:0 0 20px rgba(0,0,0,.4);

    transition:.3s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.1);

}/*==========================
      BACK TO TOP
==========================*/

.back-to-top{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    background:#d4af37;

    color:black;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:26px;

    font-weight:bold;

    transition:.3s;

}

.back-to-top:hover{

    transform:scale(1.1);

}/*==========================
      BACK TO TOP
==========================*/

.back-to-top{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    background:#d4af37;

    color:black;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:26px;

    font-weight:bold;

    transition:.3s;

}

.back-to-top:hover{

    transform:scale(1.1);

}section h2{

    position:relative;

    display:inline-block;

    margin-bottom:50px;

}

section h2::after{

    content:"";

    width:80px;

    height:4px;

    background:#d4af37;

    position:absolute;

    left:50%;

    bottom:-15px;

    transform:translateX(-50%);

    border-radius:10px;

}header{

    transition:.4s;

}

header.scrolled{

    background:rgba(0,0,0,.95);

    box-shadow:0 8px 25px rgba(0,0,0,.5);

}footer{

    border-top:2px solid rgba(212,175,55,.3);

}.contact-box i{

    color:#d4af37;

}
/*==========================
    MİSYON & VİZYON
==========================*/

.mission{

    background:#111;

}

.mission-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}

.mission-card{

    background:#1b1b1b;

    padding:40px;

    border-radius:20px;

    border:2px solid rgba(212,175,55,.2);

    transition:.4s;

}

.mission-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 0 30px rgba(212,175,55,.25);

}

.mission-card h3{

    color:#d4af37;

    margin-bottom:20px;

    font-size:28px;

}

.mission-card p{

    color:#ddd;

    line-height:1.9;

    font-size:17px;

}/*==========================
          SSS
==========================*/

.faq{

    background:#0f0f0f;

}

.faq-container{

    display:grid;

    gap:25px;

}

.faq-item{

    background:#1b1b1b;

    border-left:5px solid #d4af37;

    padding:25px 30px;

    border-radius:15px;

    transition:.3s;

}

.faq-item:hover{

    transform:translateX(8px);

}

.faq-item h3{

    color:#d4af37;

    margin-bottom:12px;

}

.faq-item p{

    color:#ddd;

    line-height:1.8;

}.footer-links{

    margin-top:20px;

}

.footer-links a{

    color:#d4af37;

    text-decoration:none;

    margin:0 15px;

    transition:.3s;

}

.footer-links a:hover{

    color:white;

}