/* ===========================
   FANVORA V1 - FINAL CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#07111f;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(8,15,28,.88);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:60px;

    width:auto;

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:white;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#ff6b00;

}

.btn-login{

    background:#ff6b00;

    color:white;

    padding:14px 28px;

    border-radius:14px;

    font-weight:700;

    transition:.35s;

}

.btn-login:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(255,106,0,.35);

}

/* ===========================
   HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

    background:

    radial-gradient(circle at center,
    rgba(255,106,0,.12),
    transparent 45%),

    #07111f;

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero h1{

    font-size:78px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:25px;

}

.hero p{

    max-width:560px;

    color:#c7c7c7;

    line-height:1.9;

    font-size:20px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.primary-btn{

    background:#ff6b00;

    color:white;

    padding:18px 38px;

    border-radius:15px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 40px rgba(255,106,0,.28);

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 55px rgba(255,106,0,.45);

}

.secondary-btn{

    border:2px solid #ff6b00;

    color:#ff6b00;

    padding:18px 38px;

    border-radius:15px;

    transition:.35s;

    font-weight:700;

}

.secondary-btn:hover{

    background:#ff6b00;

    color:white;

    box-shadow:0 0 25px rgba(255,106,0,.45);

}

.hero-right{

    text-align:center;

}

.hero-right img{

    width:100%;

    max-width:650px;

    border-radius:22px;

    transition:.45s;

    box-shadow:0 30px 70px rgba(255,106,0,.18);

}

.hero-right img:hover{

    transform:scale(1.03);

}

.hero-stats{

    display:flex;

    gap:70px;

    margin-top:60px;

}

.hero-stats h2{

    color:#ff6b00;

    font-size:46px;

    font-weight:800;

}

.hero-stats span{

    color:#c1c1c1;

    font-size:18px;

}
/* ===========================
   SECTION TITLE
=========================== */

.section-title{

    text-align:center;

    font-size:48px;

    font-weight:800;

    margin-bottom:70px;

}

/* ===========================
   SPORTS
=========================== */

.sports{

    padding:130px 0;

}

.sports-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.sport-card{

    background:#101a2b;

    border:1px solid #22324b;

    border-radius:24px;

    padding:25px;

    text-align:center;

    overflow:hidden;

    transition:.4s;

}

.sport-card:hover{

    transform:translateY(-10px);

    border-color:#ff6b00;

    box-shadow:0 25px 60px rgba(255,106,0,.25);

}

.sport-card img{

    width:100%;

    border-radius:18px;

    margin-bottom:22px;

    transition:.5s;

}

.sport-card:hover img{

    transform:scale(1.08);

}

.sport-card h3{

    font-size:26px;

    margin-bottom:15px;

}

.sport-card p{

    color:#bfbfbf;

    line-height:1.8;

}

/* ===========================
   PASSPORT
=========================== */

.passport{

    padding:130px 0;

}

.passport-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.passport-image{

    text-align:center;

}

.passport-image img{

    width:100%;

    max-width:520px;

    border-radius:24px;

    box-shadow:0 25px 70px rgba(0,0,0,.45);

    transition:.4s;

}

.passport-image img:hover{

    transform:scale(1.03);

}

.passport-content h3{

    font-size:46px;

    margin-bottom:25px;

}

.passport-content p{

    color:#c8c8c8;

    line-height:1.9;

    margin-bottom:35px;

    font-size:18px;

}

/* ===========================
   BADGES
=========================== */

.badges{

    padding:130px 0;

}

.badge-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.badge-card{

    background:#101a2b;

    border:1px solid #22324b;

    border-radius:24px;

    padding:30px;

    text-align:center;

    transition:.4s;

}

.badge-card:hover{

    transform:translateY(-10px);

    border-color:#ff6b00;

    box-shadow:0 25px 60px rgba(255,106,0,.25);

}

.badge-card img{

    width:120px;

    margin:auto;

    margin-bottom:22px;

    transition:.45s;

}

.badge-card:hover img{

    transform:scale(1.12) rotate(6deg);

}

.badge-card h3{

    font-size:22px;

}

/* ===========================
   COMMUNITY
=========================== */

.community{

    padding:130px 0;

}

.community-box{

    background:#101a2b;

    border-radius:28px;

    padding:70px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.community-box h2{

    font-size:48px;

    margin-bottom:20px;

}

.community-box p{

    color:#c7c7c7;

    line-height:1.9;

}

.community-box img{

    width:100%;

    max-width:430px;

    margin:auto;

    border-radius:22px;

    transition:.45s;

}

.community-box img:hover{

    transform:scale(1.05);

}

/* ===========================
   FOOTER
=========================== */

footer{

    padding:80px 0;

    border-top:1px solid #22324b;

    text-align:center;

}

.footer-logo{

    width:180px;

    margin:auto;

    margin-bottom:25px;

}

footer p{

    color:#a7a7a7;

    margin-top:10px;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;

    margin-top:30px;

}

.footer-links a{

    color:#c7c7c7;

    transition:.3s;

}

.footer-links a:hover{

    color:#ff6b00;

}
.social-links{

    display:flex;
    
    justify-content:center;
    
    gap:25px;
    
    margin:30px 0;
    
    flex-wrap:wrap;
    
    }
    
    .social-links a{
    
    color:#bdbdbd;
    
    transition:.3s;
    
    font-weight:600;
    
    }
    
    .social-links a:hover{
    
    color:#ff6b00;
    
    }
    
    footer hr{
    
    margin:35px 0;
    
    border:none;
    
    height:1px;
    
    background:#22324b;
    
    }
    
    .copyright{
    
    color:#8d96a6;
    
    font-size:15px;
    
    }
    .developer{

        margin-top:18px;
        
        font-size:14px;
        
        color:#6f7a8c;
        
        }
/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:1100px){

    .hero-content,
    .passport-wrapper,
    .community-box{
    
    grid-template-columns:1fr;
    
    text-align:center;
    
    }
    
    .hero-right{
    
    order:-1;
    
    }
    
    .hero p{
    
    margin:auto;
    
    }
    
    .hero-buttons{
    
    justify-content:center;
    
    }
    
    .hero-stats{
    
    justify-content:center;
    
    }
    
    .sports-grid,
    .badge-grid{
    
    grid-template-columns:repeat(2,1fr);
    
    }
    
    }
    
    @media (max-width:768px){
    
    .nav-container{
    
    flex-direction:column;
    
    height:auto;
    
    padding:20px 0;
    
    gap:20px;
    
    }
    
    .nav-links{
    
    flex-wrap:wrap;
    
    justify-content:center;
    
    gap:20px;
    
    }
    
    .hero{
    
    padding-top:180px;
    
    }
    
    .hero h1{
    
    font-size:48px;
    
    }
    
    .hero p{
    
    font-size:17px;
    
    }
    
    .hero-buttons{
    
    flex-direction:column;
    
    align-items:center;
    
    }
    
    .hero-stats{
    
    flex-direction:column;
    
    gap:25px;
    
    }
    
    .sports-grid,
    .badge-grid{
    
    grid-template-columns:1fr;
    
    }
    
    .community-box{
    
    padding:35px;
    
    }
    
    .passport-content h3,
    .community-box h2{
    
    font-size:34px;
    
    }
    
    .section-title{
    
    font-size:38px;
    
    }
    
    }
    
    @media (max-width:480px){
    
    .container{
    
    width:92%;
    
    }
    
    .logo img{
    
    height:45px;
    
    }
    
    .hero h1{
    
    font-size:36px;
    
    }
    
    .primary-btn,
    .secondary-btn{
    
    width:100%;
    
    text-align:center;
    
    }
    
    .hero-right img{
    
    max-width:100%;
    
    }
    
    .footer-logo{
    
    width:150px;
    
    }
    
    }
    
    /* ===========================
    ANIMATIONS
    =========================== */
    
    @keyframes fadeUp{
    
    0%{
    
    opacity:0;
    
    transform:translateY(40px);
    
    }
    
    100%{
    
    opacity:1;
    
    transform:translateY(0);
    
    }
    
    }
    
    .hero,
    .sports,
    .passport,
    .badges,
    .community{
    
    animation:fadeUp .9s ease;
    
    }
    
    .sport-card,
    .badge-card,
    .primary-btn,
    .secondary-btn{
    
    transition:all .35s ease;
    
    }
    
    /* Floating Animation */
    
    @keyframes floating{
    
    0%{
    
    transform:translateY(0px);
    
    }
    
    50%{
    
    transform:translateY(-10px);
    
    }
    
    100%{
    
    transform:translateY(0px);
    
    }
    
    }
    
    .hero-right img{
    
    animation:floating 4s ease-in-out infinite;
    
    }
    
    /* ===========================
    CUSTOM SCROLLBAR
    =========================== */
    
    ::-webkit-scrollbar{
    
    width:10px;
    
    }
    
    ::-webkit-scrollbar-track{
    
    background:#08111f;
    
    }
    
    ::-webkit-scrollbar-thumb{
    
    background:#ff6b00;
    
    border-radius:20px;
    
    }
    
    ::-webkit-scrollbar-thumb:hover{
    
    background:#ff8c32;
    
    }
    
    /* ===========================
    SELECTION
    =========================== */
    
    ::selection{
    
    background:#ff6b00;
    
    color:#fff;
    
    }
    
    /* ===========================
    EXTRA POLISH
    =========================== */
    
    section{
    
    position:relative;
    
    }
    
    .primary-btn,
    .secondary-btn,
    .btn-login{
    
    cursor:pointer;
    
    }
    
    .sport-card,
    .badge-card{
    
    cursor:pointer;
    
    }
    
    .hero-right img,
    .passport-image img,
    .community-box img{
    
    user-select:none;
    
    }