/* ===========================
   GB ONLINE BABA - STYLE.CSS
   Part 1
=========================== */

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

body{
    font-family:'Poppins',sans-serif;
    background:#0b1220;
    color:#fff;
    line-height:1.6;
}

/* Header */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(11,18,32,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:1000;
}

.logo h2{
    color:#ffd54f;
    font-size:28px;
    font-weight:700;
}

nav{
    display:flex;
    align-items:center;
    gap:20px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#ffd54f;
}

.login-btn{
    background:#ffd54f;
    color:#111;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
}

.login-btn:hover{
    background:#ffca28;
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:140px 20px 60px;
    background:linear-gradient(135deg,#0b1220,#14213d);
}

.hero h1{
    font-size:54px;
    color:#ffd54f;
    margin-bottom:15px;
}

.hero h2{
    font-size:28px;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    color:#cfd8dc;
    font-size:18px;
}

/* Search Box */

.search-box{
    margin-top:35px;
    display:flex;
    width:100%;
    max-width:700px;
}

.search-box input{
    flex:1;
    padding:16px;
    border:none;
    border-radius:50px 0 0 50px;
    font-size:16px;
    outline:none;
}

.search-box button{
    border:none;
    background:#ffd54f;
    color:#111;
    padding:0 30px;
    border-radius:0 50px 50px 0;
    cursor:pointer;
    font-weight:600;
}

.search-box button:hover{
    background:#ffca28;
}

/* Hero Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
    justify-content:center;
}

.btn,
.btn2{
    text-decoration:none;
    padding:15px 28px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn{
    background:#ffd54f;
    color:#111;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn2{
    border:2px solid #ffd54f;
    color:#ffd54f;
}

.btn2:hover{
    background:#ffd54f;
    color:#111;
}

/* Section */

section{
    padding:80px 8%;
}
/* ===========================
   GB ONLINE BABA - STYLE.CSS
   Part 2
=========================== */

/* Categories */

.categories h2,
.features h2,
.articles h2,
.support h2,
.contact h2{
    text-align:center;
    font-size:36px;
    color:#ffd54f;
    margin-bottom:40px;
}

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

/* Cards */

.card,
.feature-card,
.article-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.card:hover,
.feature-card:hover,
.article-card:hover{
    transform:translateY(-10px);
    border-color:#ffd54f;
    box-shadow:0 15px 35px rgba(255,213,79,.25);
}

.card{
    font-size:22px;
}

.card h3,
.feature-card h3,
.article-card h3{
    margin-top:15px;
    margin-bottom:10px;
    color:#ffd54f;
}

.card p,
.feature-card p,
.article-card p{
    color:#d6d6d6;
    font-size:15px;
}

.article-card a{
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    color:#111;
    background:#ffd54f;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.article-card a:hover{
    background:#ffca28;
}

/* Support */

.support{
    text-align:center;
}

.support p{
    max-width:700px;
    margin:20px auto;
    color:#d6d6d6;
}

.support-btn{
    display:inline-block;
    padding:15px 35px;
    background:#ffd54f;
    color:#111;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.support-btn:hover{
    transform:scale(1.05);
    background:#ffca28;
}

/* Contact */

.contact{
    text-align:center;
}

.contact p{
    margin:12px 0;
    font-size:17px;
    color:#d6d6d6;
}
/* ===========================
   GB ONLINE BABA - STYLE.CSS
   Part 3
=========================== */

/* Footer */

footer{
    background:#08111f;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:40px 20px;
}

footer p{
    color:#bfc7d5;
    margin:10px 0;
}

footer a{
    color:#ffd54f;
    text-decoration:none;
    margin:0 8px;
    transition:.3s;
}

footer a:hover{
    color:#ffffff;
}

/* Smooth Scrolling */

html{
    scroll-behavior:smooth;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0b1220;
}

::-webkit-scrollbar-thumb{
    background:#ffd54f;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#ffca28;
}

/* Fade Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero,
.card,
.feature-card,
.article-card,
.support,
.contact{
    animation:fadeUp .8s ease;
}

/* Responsive */

@media (max-width:992px){

header{
    padding:15px 5%;
}

.hero h1{
    font-size:42px;
}

.hero h2{
    font-size:22px;
}

.search-box{
    flex-direction:column;
    gap:12px;
}

.search-box input{