/*
Theme Name: FutbolTips
Version: 1.1
*/

/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

img{max-width:100%;display:block;}

a{text-decoration:none;color:inherit;}

ul{list-style:none;}

button{font:inherit;cursor:pointer;border:none;}

/* =====================================================
   CONTAINER
===================================================== */

.container{
    max-width:1280px;
    margin:auto;
    padding:0 25px;
}

/* =====================================================
   TOP BAR
===================================================== */

.top-bar{
    width:100%;
    background:#0b0f16;
    color:#cfcfcf;
    font-size:13px;
    padding:8px 0;
}

.top-bar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* =====================================================
   HEADER
===================================================== */

.site-header{
    width:100%;
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    transition:.3s;
    border-bottom:1px solid #eee;
}

.site-header.scrolled{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
}

/* LOGO */

.site-logo img{
    max-height:45px;
}

.logo-text{
    font-size:24px;
    font-weight:900;
    letter-spacing:1px;
}

.logo-text span{
    color:#e31b23;
}

/* =====================================================
   NAVIGATION
===================================================== */

.main-nav .nav-menu{
    display:flex;
    gap:28px;
}

.main-nav .nav-menu li a{
    font-weight:600;
    font-size:15px;
    color:#111;
    position:relative;
    padding:8px 0;
}

.main-nav .nav-menu li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#e31b23;
    transition:.3s;
}

.main-nav .nav-menu li a:hover::after{
    width:100%;
}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.btn-login{
    padding:10px 18px;
    background:#111;
    color:#fff;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.btn-login:hover{
    background:#e31b23;
}

/* =====================================================
   HAMBURGER
===================================================== */

.hamburger{
    width:40px;
    height:40px;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    background:transparent;
}

.hamburger span{
    width:100%;
    height:3px;
    background:#111;
    transition:.3s;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translateY(-8px);
}

/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-320px;
    width:320px;
    height:100vh;
    background:#fff;
    z-index:999;
    transition:.3s;
    padding:20px;
    display:flex;
    flex-direction:column;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.close-menu{
    font-size:28px;
    background:none;
}

.mobile-nav-menu li{
    margin-bottom:18px;
}

.mobile-nav-menu li a{
    font-size:16px;
    font-weight:600;
}

.mobile-actions{
    margin-top:auto;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mobile-login{
    background:#111;
    color:#fff;
    padding:12px;
    text-align:center;
    border-radius:6px;
}

.mobile-vip{
    background:#e31b23;
    color:#fff;
    padding:12px;
    text-align:center;
    border-radius:6px;
}

/* =====================================================
   HERO (keep from previous)
===================================================== */

.hero{
    position:relative;
    width:100%;
    min-height:760px;
    display:flex;
    align-items:center;
    background:url("assets/images/hero.jpg") center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(8,12,18,.88),rgba(8,12,18,.65));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    padding:120px 0;
}

.hero h1{
    font-size:60px;
    color:#fff;
    font-weight:800;
}

.hero p{
    color:#d9d9d9;
    font-size:20px;
    margin:25px 0 40px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn{
    padding:16px 30px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#e31b23;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:#fff;
    color:#111;
}

.btn-secondary:hover{
    background:#eee;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

.main-nav{display:none;}

.hamburger{display:flex;}

.hero h1{font-size:44px;}

.hero-content{text-align:center;}

.hero-buttons{justify-content:center;flex-wrap:wrap;}

}

@media(max-width:768px){

.hero{min-height:620px;}

.hero h1{font-size:34px;}

.hero p{font-size:17px;}

}

@media(max-width:480px){

.hero h1{font-size:28px;}

.hero p{font-size:16px;}

.container{padding:0 18px;}

}
/* =====================================================
   PREDICTIONS SECTION
===================================================== */

.predictions{
    padding:90px 0;
    background:#f7f8fa;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    font-weight:800;
    color:#111;
}

.section-title p{
    color:#666;
    margin-top:10px;
    font-size:16px;
}

/* GRID */

.predictions-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

/* CARD */

.prediction-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
    border:1px solid #eee;
}

.prediction-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.match{
    font-size:18px;
    font-weight:800;
    color:#111;
    margin-bottom:8px;
}

.league{
    font-size:13px;
    color:#888;
    margin-bottom:15px;
}

.tip{
    font-size:15px;
    margin-bottom:10px;
}

.tip span{
    font-weight:700;
    color:#e31b23;
}

.odds{
    font-size:14px;
    color:#444;
    margin-bottom:20px;
}

/* BUTTON */

.card-btn{
    display:inline-block;
    padding:10px 16px;
    background:#e31b23;
    color:#fff;
    border-radius:6px;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.card-btn:hover{
    background:#b8141b;
}

/* RESPONSIVE */

@media(max-width:992px){
    .predictions-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .predictions-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:28px;
    }
}