/* ==========================================
   StadiumGenie Home Page
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f5f5;
    color:#111;
}

/* ==========================================
   Navigation
========================================== */

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 60px;

    background:#111;

    position:sticky;

    top:0;

    z-index:1000;

}

.logo{

    color:white;

    font-size:30px;

    font-weight:700;

}

nav ul{

    display:flex;

    list-style:none;

    gap:30px;

}

nav ul li a{

    color:white;

    text-decoration:none;

    font-size:17px;

    transition:.3s;

}

nav ul li a:hover{

    color:#d9d9d9;

}

/* ==========================================
   Hero Section
========================================== */

.hero{

    width:90%;

    margin:60px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    flex-wrap:wrap;

}

.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:58px;

    color:#111;

    margin-bottom:25px;

}

.hero-text p{

    font-size:20px;

    color:#555;

    line-height:1.8;

}

.hero-text button{

    margin-top:35px;

    padding:16px 38px;

    background:#111;

    color:white;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

.hero-text button:hover{

    background:#333;

    transform:translateY(-3px);

}

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:650px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

}

/* ==========================================
   Live Status
========================================== */

.live-section{

    width:90%;

    margin:70px auto;

}

.live-section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:35px;

}

.status-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.status-card{

    background:white;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;

}

.status-card:hover{

    transform:translateY(-8px);

}

.status-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.status-card p{

    font-size:22px;

    font-weight:600;

    color:#444;

}

/* ==========================================
   Features
========================================== */

.features{

    width:90%;

    margin:70px auto;

}

.features h2{

    text-align:center;

    font-size:42px;

    margin-bottom:40px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.card{

    background:white;

    border-radius:20px;

    padding:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    font-size:24px;

    margin-bottom:18px;

}

.card p{

    color:#555;

    line-height:1.8;

}

/* ==========================================
   CTA
========================================== */

.cta{

    width:90%;

    margin:80px auto;

    background:#111;

    color:white;

    text-align:center;

    padding:60px 30px;

    border-radius:20px;

}

.cta h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta p{

    font-size:20px;

    margin-bottom:30px;

}

.cta button{

    padding:15px 35px;

    background:white;

    color:#111;

    border:none;

    border-radius:12px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.cta button:hover{

    background:#e5e5e5;

}

/* ==========================================
   Footer
========================================== */

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:25px;

    margin-top:60px;

    font-size:17px;

}

/* ==========================================
   Responsive
========================================== */

@media(max-width:1000px){

.hero{

    flex-direction:column;

    text-align:center;

}

.hero-text h1{

    font-size:42px;

}

.hero-image img{

    max-width:100%;

}

nav{

    flex-direction:column;

    gap:20px;

    padding:20px;

}

nav ul{

    flex-wrap:wrap;

    justify-content:center;

}

}

@media(max-width:700px){

.hero-text h1{

    font-size:34px;

}

.hero-text p{

    font-size:17px;

}

.live-section h2,

.features h2,

.cta h2{

    font-size:32px;

}

.status-card,

.card{

    padding:22px;

}

}
button:focus,
a:focus{
outline:3px solid #FFD54F;
outline-offset:4px;
}

button{
transition:0.3s;
}

html{
scroll-behavior:smooth;
}