/* =====================================
   ABY LOGISTICS 12 LLC
   Main Website Styling
===================================== */

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior:smooth;
}

body {
    color:#1a1a1a;
    background:#ffffff;
    line-height:1.6;
}


/* =====================================
   HEADER
===================================== */

.header {

    width:100%;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 7%;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 3px 12px rgba(0,0,0,.15);

}


.logo img {

    width:220px;

}



nav {

    display:flex;
    align-items:center;
    gap:28px;

}


nav a {

    color:#071f41;
    text-decoration:none;
    font-weight:bold;
    font-size:16px;
    transition:.3s;

}


nav a:hover {

    color:#d9a441;

}


.quote-btn {

    background:#d9a441;
    color:white !important;
    padding:13px 28px;
    border-radius:6px;

}


.quote-btn:hover {

    background:#b8892f;

}



/* =====================================
   HERO SECTION
===================================== */


.hero {

    min-height:90vh;

    background:
    linear-gradient(
    rgba(7,31,65,.75),
    rgba(7,31,65,.75)
    ),
    url("../images/hero-truck.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    color:white;

}


.hero-content {

    max-width:900px;
    padding:30px;

}


.hero h1 {

    font-size:55px;
    margin-bottom:20px;

}


.hero p {

    font-size:22px;
    margin-bottom:30px;

}



/* =====================================
 BUTTONS
===================================== */


.hero-buttons {

    display:flex;
    justify-content:center;
    gap:20px;

}


.btn-primary,
.btn-secondary {

    padding:15px 35px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;

}


.btn-primary {

    background:#d9a441;
    color:white;

}


.btn-secondary {

    border:2px solid white;
    color:white;

}



/* =====================================
 SECTIONS
===================================== */


section {

    padding:80px 8%;

}


h2 {

    text-align:center;
    color:#071f41;
    font-size:38px;
    margin-bottom:40px;

}



/* =====================================
 CARDS
===================================== */


.cards {

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}



.card {

    background:white;
    padding:35px;
    border-radius:10px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.1);

    text-align:center;

    transition:.3s;

}



.card:hover {

    transform:translateY(-10px);

}



.card h3 {

    color:#071f41;
    margin-bottom:15px;

}



/* =====================================
 COVERAGE MAP
===================================== */


.coverage {

    text-align:center;

}


.coverage img {

    width:90%;
    max-width:1000px;
    margin-top:30px;

}



/* =====================================
 DISPATCH SECTION
===================================== */


.dispatch-call {

    background:#071f41;
    color:white;
    text-align:center;

}



.dispatch-call h2 {

    color:white;

}



.dispatch-call a {

    display:inline-block;
    margin-top:20px;

    color:#d9a441;

    font-size:30px;
    font-weight:bold;

}



/* =====================================
 COMPANY INFO
===================================== */


.company-info {

    text-align:center;

}



/* =====================================
 FOOTER
===================================== */


footer {

    background:#071f41;
    color:white;

    text-align:center;

    padding:40px;

}


footer img {

    width:180px;
    margin-bottom:20px;

}



/* =====================================
 MOBILE
===================================== */


@media(max-width:768px){


.header {

    flex-direction:column;

}


.logo img {

    width:180px;

}


nav {

    flex-wrap:wrap;
    justify-content:center;
    margin-top:20px;

}


.hero h1 {

    font-size:38px;

}


.hero-buttons {

    flex-direction:column;

}

}