/*=========================================================
    MVFF FOOTBALL OPERATIONS
    Version 3.0
    Part 1
=========================================================*/


/*=========================================================
    1. CSS VARIABLES
=========================================================*/

:root{

    --navy:#08111F;
    --navy-light:#12325B;

    --gold:#C9A227;
    --gold-light:#E8C65D;

    --background:#F5F7FA;
    --surface:#FFFFFF;

    --text:#1F2937;
    --muted:#6B7280;

    --border:#D9DEE7;

    --success:#16A34A;
    --warning:#F59E0B;
    --danger:#DC2626;

    --radius:14px;

    --shadow-sm:
        0 2px 6px rgba(0,0,0,.06);

    --shadow:
        0 6px 18px rgba(0,0,0,.10);

    --shadow-lg:
        0 12px 30px rgba(0,0,0,.16);

    --transition:.25s ease;

    --max-width:1280px;

}


/*=========================================================
    2. GLOBAL RESET
=========================================================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.6;

}


/*=========================================================
    3. TYPOGRAPHY
=========================================================*/

h1{

    font-size:2.2rem;
    color:var(--navy);

    font-weight:700;

}

h2{

    font-size:1.6rem;
    color:var(--navy);

    margin-bottom:1rem;

}

h3{

    font-size:1.2rem;
    color:var(--navy);

    margin-bottom:.75rem;

}

p{

    margin-bottom:1rem;

}

small{

    color:var(--muted);

}

a{

    color:inherit;

}


/*=========================================================
    4. LAYOUT
=========================================================*/

.wrap{

    width:min(100% - 2rem,var(--max-width));

    margin:auto;

}

.grid{

    display:grid;

    grid-template-columns:
        2fr
        1fr;

    gap:2rem;

    margin:2rem auto;

}


/*=========================================================
    5. HEADER
=========================================================*/

.hero{

    background:white;

    border-bottom:4px solid var(--gold);

    box-shadow:var(--shadow);

}

.glass{

    padding:20px 0;

}

.brand{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.brand-left{

    display:flex;

    align-items:center;

    gap:18px;

}

.logo{

    width:80px;

    height:auto;

}

.brand p{

    color:var(--muted);

    margin-top:4px;

}


/*=========================================================
    6. NAVIGATION
=========================================================*/

nav{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:18px;

}

nav a{

    text-decoration:none;

    background:#EEF2F7;

    color:var(--navy);

    padding:

        10px
        18px;

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);

}

nav a:hover{

    background:var(--gold);

    color:white;

}

nav a.active{

    background:var(--navy);

    color:white;

}


/*=========================================================
    7. LIVE CLOCK
=========================================================*/

.live-clock{

    min-width:240px;

    background:#F8FAFC;

    border:1px solid var(--border);

    border-radius:var(--radius);

    text-align:center;

    padding:14px;

    box-shadow:var(--shadow-sm);

}

.clock-day{

    font-size:1rem;

    font-weight:700;

    color:var(--navy);

}

.clock-date{

    color:var(--muted);

    margin:4px 0;

}

.clock-time{

    font-size:1.45rem;

    font-weight:700;

    color:var(--navy);

}


/*=========================================================
    8. STATUS TILES
=========================================================*/

.tiles{

    display:grid;

    grid-template-columns:

        repeat(
            auto-fit,
            minmax(220px,1fr)
        );

    gap:20px;

    margin:30px auto;

}

.tile{

    background:white;

    border-left:5px solid var(--gold);

    border-radius:var(--radius);

    padding:20px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.tile:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-lg);

}

.tile small{

    display:block;

    margin-bottom:8px;

    color:var(--muted);

}

.tile b{

    font-size:1.2rem;

}


/*=========================================================
    9. DASHBOARD GRID
=========================================================*/

main{

    margin-bottom:40px;

}

aside{

    display:flex;

    flex-direction:column;

}


/*=========================================================
    10. PANELS
=========================================================*/

.panel{

    background:white;

    border-radius:var(--radius);

    padding:24px;

    box-shadow:var(--shadow);

    margin-bottom:24px;

}

.panel h2,
.panel h3{

    border-bottom:

        2px solid
        var(--gold);

    padding-bottom:10px;

    margin-bottom:18px;

}

.panel p{

    color:#374151;

}
/*=========================================================
    11. QUICK LAUNCH CARDS
=========================================================*/

.cards{

    display:grid;

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

    gap:20px;

    margin-top:20px;

}

.card{

    background:white;

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:24px;

    text-align:center;

    text-decoration:none;

    color:var(--text);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

    border-color:var(--gold);

}

.card-icon{

    font-size:2rem;

    margin-bottom:14px;

}

.card-title{

    font-size:1.1rem;

    font-weight:700;

    color:var(--navy);

    margin-bottom:8px;

}

.card-text{

    color:var(--muted);

    font-size:.95rem;

}



/*=========================================================
    12. BUTTONS
=========================================================*/

.button,
.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px 22px;

    border-radius:10px;

    border:none;

    cursor:pointer;

    text-decoration:none;

    font-weight:600;

    transition:var(--transition);

}

.button,
.btn-primary{

    background:var(--navy);

    color:white;

}

.button:hover,
.btn-primary:hover{

    background:var(--gold);

    color:white;

    transform:translateY(-2px);

}

.btn-secondary{

    background:#EEF2F7;

    color:var(--navy);

}

.btn-secondary:hover{

    background:#DCE4EE;

}



/*=========================================================
    13. TABLES
=========================================================*/

.table-wrapper{

    overflow-x:auto;

}

table{

    width:100%;

    border-collapse:collapse;

    background:white;

    margin-top:10px;

}

th{

    background:var(--navy);

    color:white;

    padding:14px;

    text-align:left;

}

td{

    padding:12px 14px;

    border-bottom:1px solid var(--border);

}

tbody tr:hover{

    background:#F8FAFC;

}



/*=========================================================
    14. FORMS
=========================================================*/

label{

    display:block;

    margin-bottom:6px;

    font-weight:600;

}

input,
select,
textarea{

    width:100%;

    padding:12px;

    border:1px solid var(--border);

    border-radius:10px;

    margin-bottom:16px;

    font-size:1rem;

}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 0 3px rgba(201,162,39,.18);

}



/*=========================================================
    15. FOOTER
=========================================================*/

footer{

    border-top:1px solid var(--border);

    padding:30px 0;

    background:white;

}

footer p{

    text-align:center;

    color:var(--muted);

    margin:0;

}



/*=========================================================
    16. UTILITY CLASSES
=========================================================*/

.text-center{

    text-align:center;

}

.text-right{

    text-align:right;

}

.text-muted{

    color:var(--muted);

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}

.hidden{

    display:none;

}



/*=========================================================
    17. BADGES
=========================================================*/

.badge{

    display:inline-block;

    padding:4px 10px;

    border-radius:999px;

    font-size:.8rem;

    font-weight:700;

}

.badge-success{

    background:#DCFCE7;

    color:#166534;

}

.badge-warning{

    background:#FEF3C7;

    color:#92400E;

}

.badge-danger{

    background:#FEE2E2;

    color:#991B1B;

}



/*=========================================================
    18. ANIMATIONS
=========================================================*/

.fade-in{

    animation:fadeIn .5s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.slide-up{

    animation:slideUp .4s ease;

}

@keyframes slideUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/*=========================================================
    19. RESPONSIVE
=========================================================*/

@media (max-width:1024px){

    .grid{

        grid-template-columns:1fr;

    }

    aside{

        order:-1;

    }

}

@media (max-width:768px){

    .brand{

        flex-direction:column;

        align-items:flex-start;

    }

    .brand-left{

        flex-direction:row;

    }

    .live-clock{

        width:100%;

    }

    nav{

        justify-content:center;

    }

    .tiles{

        grid-template-columns:1fr;

    }

    .cards{

        grid-template-columns:1fr;

    }

}

@media (max-width:480px){

    h1{

        font-size:1.6rem;

    }

    h2{

        font-size:1.3rem;

    }

    .logo{

        width:64px;

    }

    .panel{

        padding:18px;

    }

}



/*=========================================================
    20. PRINT
=========================================================*/

@media print{

    nav,
    footer,
    .button,
    .btn{

        display:none;

    }

    body{

        background:white;

    }

    .panel{

        box-shadow:none;

        border:1px solid #ccc;

    }

}

/*=========================================================
    END OF MVFF STYLE.CSS
=========================================================*/