/*=====================================
    Red Dirt Avian Diagnostics
    Main Stylesheet
=====================================*/

/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ---------- BODY ---------- */

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f5f5f5;

    color:#2f2f2f;

    line-height:1.6;

}

/* ---------- LINKS ---------- */

a{

    text-decoration:none;

    color:inherit;

}

/* ---------- HEADER ---------- */

header {
    background:#f1a87d;
    padding:15px 8%;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    border-bottom:4px solid #8B2E24;
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ---------- LOGO ---------- */

.logo img {
    height: 100px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform:scale(1.05);
}
/* ---------- NAV ---------- */

.nav-button{

    height: 32px;
    width: auto;
    display: block;
    transition: transform 0.25s ease,
    filter 0.25s ease;

}

.nav-button:hover{
    transform:scale(1.08);
    filter:
        brightness(0.5)
        drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}


#main-nav ul {
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:25px;
}

/* ---------- HERO ---------- */

.hero{

    text-align:center;

    padding:120px 10%;

    background:white;

}

.hero h2{

    font-size:3rem;

    margin-bottom:20px;

}

.hero p{

    max-width:700px;

    margin:auto;

    font-size:1.2rem;

}

/* ---------- BUTTON ---------- */

.button{

    display:inline-block;

    margin-top:40px;

    background:#8B2E24;

    color:white;

    padding:15px 35px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.button:hover{

    background:#6e221a;

    transform:translateY(-3px);

}

/* ---------- FEATURES ---------- */

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    padding:80px 10%;

}

.feature{

    background:white;

    padding:35px;

    border-radius:10px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.feature h3{

    color:#8B2E24;

    margin-bottom:15px;

}

/* ---------- HOW IT WORKS ---------- */

.how-it-works{

    background:white;

    padding:80px 10%;

}

.how-it-works h2{

    text-align:center;

    margin-bottom:30px;

}

.how-it-works ol{

    max-width:650px;

    margin:auto;

    font-size:1.15rem;

}

.how-it-works li{

    margin-bottom:15px;

}

/* ---------- FOOTER ---------- */

footer{

    background:#000000;

    color:white;

    text-align:center;

    padding:25px;

}
.menu-toggle{

    display:none;

}



