.open-sans-500 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: open-sans-500, sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body, html {
    height: 100%;
}

/* SECTIONS */
h2 {
    font-size: 2em;
    text-align: center;
    margin: 30px;
    color: #0056b3;
}

section p {
    line-height: 1.5;
    color: #0056b3;
}

.banner {
    background-color: #0056b3;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.banner a {
    font-size: 1.2em;
    color: white;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #0056b3;
}


/*NAV*/
h1 {
    color: #0056b3;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    margin-bottom: 20px;
}

nav {
  text-align: center;
  margin-bottom: 20px;
}

nav ul {
  display: inline-block;
  list-style: none;
  padding: 1% 0 1% 0;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: #333;
  font-size: 1.2em;
  padding: 5px 10px;
  transition: all 0.3s ease;
  border-radius: 20px;
}

nav ul li a:hover {
  color: #ffffff;
  background-color: #0056b3;
}

.nav #menu-toggle {
    display: none;
    padding-top: 1vw;
  }

@media screen and (max-width: 768px) {
.nav a {
    display: none; }
    .nav a#menu-toggle {
    float: left;
    display: block;
    text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .nav.nav--open {
    position: relative;
    }
    .nav.nav--open #menu-toggle {
    position: absolute;
    right: 0;
    top: 0; }
    .nav.nav--open a {
    float: none;
    display: block;
    text-align: left;
    font-size: 5vw; }
}

.menu-toggle__bar1, .menu-toggle__bar2, .menu-toggle__bar3 {
    width: 21px;
    height: 3px;
    background-color: #0056b3;
    margin: 4px 0;
    transition: 0.3s;
}

.menu-toggle--open .menu-toggle__bar1 {
transform: translate(0, 7px) rotate(-45deg);
}
.menu-toggle--open .menu-toggle__bar2 {
opacity: 0; }
.menu-toggle--open .menu-toggle__bar3 {
transform: translate(0, -7px) rotate(45deg); }

.details {
margin-right: 0;
}

.nav #menu-toggle {
display: none; 
}

@media screen and (max-width: 768px) {
.nav a:not(:first-child) {
    display: none;
    }
.nav a#menu-toggle {
    float: left;
    display: block; } }
@media screen and (max-width: 768px) {
.nav {
    text-align: left;

}
.nav a {
    padding-left: 3vw;
}

.nav.nav--open {
    position: relative; }
.nav.nav--open #menu-toggle {
    position: absolute;
    right: 0;
    top: 0; }
.nav.nav--open a {
    float: none;
    display: block;
    text-align: left; } }
.menu-toggle__bar1, .menu-toggle__bar2, .menu-toggle__bar3 {
    width: 21px;
    height: 3px;
    background-color: #0056b3;
    margin: 4px 0;
    transition: 0.3s; }
.menu-toggle--open .menu-toggle__bar1 {
    transform: translate(0, 7px) rotate(-45deg); }
.menu-toggle--open .menu-toggle__bar2 {
    opacity: 0; }
.menu-toggle--open .menu-toggle__bar3 {
    transform: translate(0, -7px) rotate(45deg); 
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("images/jobs/kitchen3a.png");
    height: 35vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    text-align: center;
    padding-top: 8vw;
    color: white;
    margin: 0 auto;
    width: 50%;
}

a {
    color: #212534;
    font-family: sans-serif;
    font-weight: bold;
    margin-top: 2rem;
  }

.hero-text p {
    font-size: 2em;
    margin-bottom: 50px;
    color: white;
    animation: fadeIn 3s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  .button {
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    background-color: #0F519F;
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.8em;
    background-image: linear-gradient(#2991ae, #3c67e3 43%, #0d0453);
    transition: transform 0.3s, box-shadow 0.3s;

  }

  .button:hover {
    background-image: #3c67e3;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
  }

.phone-number {
    font-size: 4em;
    width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: #0056b3;
}

.phone-number img {
    display: inline-block;
    width: 40px;
    vertical-align: middle;
}

/* SERVICES */

.service-grid {
    display: grid;
    gap: 40px;
    max-width: 70%;
    margin: 0 auto;
    padding: 20px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-text {
    background-color: #f8f8f8;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.3em;
}

.service-text h3 {
    margin-bottom: 20px;
    font-weight: bold;
}

.service-text p {
    color: #333;
    line-height: 1.6;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 300px;
    }
}

/* SUPPLIERS */

.suppliers {
    text-align: center;
}

.suppliers p {
    font-size: 1.5em;
    width: 90%;
    margin:auto;
    margin-bottom: 30px;
    color: #333;
}

.supplier-logos {
    background-color: #0056b3;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-slide {
    display: inline-block;
    animation: slide 30s linear infinite;
}

.logos-slide img {
    width: 260px;
    margin: 0 60px;
    vertical-align: middle;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.supplier-logos:hover .logos-slide {
    animation-play-state: paused;
}

/* CONATCT */

.contact {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    display: block;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    max-width: 400px;
    text-align: left;
}    

.contact-info p {
    margin: 1rem 0;
    color: #333;
    font-size: 1.4rem;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
    font-size: 25px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    max-width: 1000px;
    height: 600px;
}

/* FOOTER */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* RESPONSIVE MEDIA QUERIES */
@media only screen and (max-width: 1440px) {
    .hero-text {
        width: 70%;
        top: 50%;
        left: 25%;
        font-size: 0.8rem;
    }
    
    .button {
        padding: 12px 26px;
        border: none;
        border-radius: 30px;
        font-size: 1.8rem;
        background-image: linear-gradient(#2991ae, #3c67e3 43%, #0d0453);
      }

    .banner .phone-number{
        font-size: 2rem;
        margin: 0 auto;
        width: 100%;
    }

    .banner {
        padding: 20px;
    }

}

@media only screen and (max-width: 1024px) {
    header {
        margin-top: 1.5vw;
    }
    h1 {
        font-size: 2em;
        width: 80%;
        margin: 0 auto 0 7%;
        display: inline-block;
    }

    nav {
        display: inline-block;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .nav a {
        font-size: 0.5rem;
    }
    
    .hero-image {
        height: 55vw;
    }

    .hero-text {
        width: 75%;
        top: 50%;
        left: 25%;
        font-size: 0.6rem;
    }
    
    .button {
        padding: 12px 26px;
        border: none;
        border-radius: 30px;
        font-size: 1.5rem;
        background-image: linear-gradient(#2991ae, #3c67e3 43%, #0d0453);
      }

    .banner .phone-number{
        font-size: 2rem;
        margin: 0 auto;
        width: 100%;
    }

    .banner {
        padding: 20px;
    }

    .service-grid {
        max-width: 90%;

    }

    .logos-slide img {
        width: 180px;
        margin: 0 60px;
        vertical-align: middle;
    }

}

@media only screen and (max-width: 768px) {
    header {
        margin-top: 1.5vw;
    }
    h1 {
        font-size: 2em;
        width: 80%;
        margin: 0 auto 0 7%;
        display: inline-block;
    }

    nav {
        display: inline-block;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .nav a {
        font-size: 0.5rem;
    }
    
    .hero-image {
        height: 55vw;
    }

    .hero-text {
        width: 75%;
        top: 50%;
        left: 25%;
        font-size: 0.6rem;
    }
    
    .button {
        padding: 12px 26px;
        border: none;
        border-radius: 30px;
        font-size: 1.5rem;
        background-image: linear-gradient(#2991ae, #3c67e3 43%, #0d0453);
      }

    .banner .phone-number{
        font-size: 2rem;
        margin: 0 auto;
        width: 100%;
    }

    .banner {
        padding: 20px;
    }

    .service-grid {
        max-width: 90%;

    }

    .logos-slide img {
        width: 180px;
        margin: 0 60px;
        vertical-align: middle;
    }
}

@media only screen and (max-width: 600px) {
    header {
        margin-top: 1.5vw;
    }
    h1 {
        font-size: 1.5em;
        width: 80%;
        margin: 0 auto 0 7%;
        display: inline-block;
    }

    nav {
        display: inline-block;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
    
    .hero-image {
        height: 60vw;
    }

    .hero-text {
        width: 75%;
        top: 50%;
        left: 25%;
        font-size: 0.35rem;
    }
    
    .button {
        padding: 12px 26px;
        border: none;
        border-radius: 30px;
        font-size: 0.8rem;
        background-image: linear-gradient(#2991ae, #3c67e3 43%, #0d0453);
      }

    .banner .phone-number{
        font-size: 1rem;
        margin: 0 auto;
        width: 100%;
    }

    .banner {
        padding: 20px;
    }

    .service-grid {
        max-width: 90%;

    }

    .logos-slide img {
        width: 180px;
        margin: 0 60px;
        vertical-align: middle;
    }
}

@media only screen and (max-width: 320px) {
    header {
        margin-top: 1.5vw;
    }
    h1 {
        font-size: 1.5em;
        width: 80%;
        margin: 0 auto 0 7%;
        display: inline-block;
    }

    nav {
        display: inline-block;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
    
    .hero-image {
        height: 60vw;
    }

    .hero-text {
        width: 75%;
        top: 50%;
        left: 25%;
        font-size: 0.35rem;
    }
    
    .button {
        padding: 12px 26px;
        border: none;
        border-radius: 30px;
        font-size: 0.8rem;
        background-image: linear-gradient(#2991ae, #3c67e3 43%, #0d0453);
      }

    .banner .phone-number{
        font-size: 1rem;
        margin: 0 auto;
        width: 100%;
    }

    .banner {
        padding: 20px;
    }

    .service-grid {
        max-width: 90%;

    }

    .logos-slide img {
        width: 180px;
        margin: 0 60px;
        vertical-align: middle;
    }
}