/*
@mixin grid($rows-num, $columns-num, $gap) {
    display: grid;
    grid-template-rows: repeat($rows-num, auto);
    grid-template-columns: repeat($columns-num, 1fr);
    gap: $gap;
}

Saved in case I need it later */
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  background-color: white;
  color: black;
}

html {
  scroll-behavior: smooth;
}

::-moz-selection {
  background-color: #cc0000;
  color: white;
}

::selection {
  background-color: #cc0000;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.986rem;
}

h2 {
  font-size: 2.488rem;
}

h3 {
  font-size: 2.074rem;
  text-align: center;
}

h4 {
  font-size: 1.728rem;
  letter-spacing: 0.05rem;
}

h5 {
  font-size: 1.44rem;
}

h6 {
  font-size: 1.2rem;
  line-height: 1.7rem;
}

p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7rem;
}

.column-container, .contact form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
}

.row-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0;
}

.dynamic-row-container, .contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .dynamic-row-container, .contact {
    flex-wrap: nowrap;
  }
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0;
  margin: 12rem 2rem;
  padding: 2rem;
  overflow: hidden;
  text-align: center;
}
section h2, section h5 {
  position: relative;
  display: inline-block;
}
section h2::after, section h5::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 20%;
  height: 3px;
  background-color: #cc0000;
}

/*
@mixin grid($rows-num, $columns-num, $gap) {
    display: grid;
    grid-template-rows: repeat($rows-num, auto);
    grid-template-columns: repeat($columns-num, 1fr);
    gap: $gap;
}

Saved in case I need it later */
@media (min-width: 554px) {
  html {
    font-size: 8px;
  }
}
@media (min-width: 654px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 812px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}
/*
@mixin grid($rows-num, $columns-num, $gap) {
    display: grid;
    grid-template-rows: repeat($rows-num, auto);
    grid-template-columns: repeat($columns-num, 1fr);
    gap: $gap;
}

Saved in case I need it later */
.card {
  width: 18rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 400ms ease-in-out;
}
.card .image-container {
  position: relative;
  transition: all 400ms ease-in-out;
}
.card .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 400ms ease-in-out;
}
.card .image-container:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 1rem;
  background-color: white;
}
.card .content .pros {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
}
.card .content .pros p {
  padding: 0.5rem;
  background-color: #ff9999;
  border-radius: 8px;
  font-weight: 550;
  color: #cc0000;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 400ms ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.card .content .pros p:hover {
  background-color: #cc0000;
  color: white;
  transform: translateY(-0.5rem);
}
.card .content .details {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
  background-color: rgba(211, 211, 211, 0.5);
  padding: 1.5rem 1rem;
  border-radius: 8px;
  line-height: 1.5rem;
}
.card .content .details .detail-container {
  padding: 0.5rem 1rem;
  background-color: #ffcccc;
  border-radius: 8px;
  width: 100%;
}
.card .content .details .detail-container span {
  color: #cc0000;
  font-weight: 550;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.card:hover h5::after {
  width: 100%;
}
.card:hover .image-container img {
  transform: scale(1.1);
}

@media (min-width: 654px) {
  .card {
    width: 30rem;
  }
}
@media (min-width: 1200px) {
  .card .content h5 {
    position: relative;
    width: 100%;
  }
  .card .content h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 20%;
    height: 3px;
    background-color: #cc0000;
    transition: all 400ms ease-in-out;
  }
}
.button {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transition: all 400ms ease-in-out;
  color: white;
  background-color: #cc0000;
}
.button:hover {
  transform: translateY(-0.5rem);
  background-color: #990000;
}

header, footer {
  padding: 2rem 4rem;
}
header .logo, footer .logo {
  height: 4rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 400ms ease-in-out;
}
header .logo:hover, footer .logo:hover {
  transform: scale(1.05);
}
header .header-link, footer .header-link {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: #cc0000;
  transition: all 400ms ease-in-out;
}
header .header-link:hover, footer .header-link:hover {
  color: #990000;
  transform: translateY(-0.5rem);
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  position: relative;
  z-index: 100;
}
@media (min-width: 654px) {
  header {
    position: sticky;
  }
}
@media (min-width: 1200px) {
  header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 0;
  }
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0;
  background-color: black;
  color: white;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.credit {
  padding: 2rem 5rem;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  line-height: 2rem;
}
.credit a {
  color: #cc0000;
  font-weight: 700;
  text-decoration: none;
}
.credit a:hover {
  color: #990000;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../media/hero_fries.jpg") center/cover no-repeat;
  height: 30rem;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  padding-top: 3rem;
  justify-content: flex-start;
  color: white;
}

.about-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: all 400ms ease-in-out;
}
.about-container img:hover {
  transform: scale(1.05);
}

@media (min-width: 812px) {
  .about-container img {
    width: 50%;
  }
}
.contact .content {
  padding: 2rem;
  align-items: center;
  gap: 1.5rem;
}
.contact .content a {
  text-decoration: none;
  color: #cc0000;
  font-weight: 700;
  text-align: center;
}
.contact .content p {
  color: gray;
}
.contact form {
  width: 14rem;
}
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid gray;
  border-radius: 8px;
  background-color: lightgray;
  font-size: 1rem;
  outline: none;
  transition: all 400ms ease-in-out;
}
.contact form input::-moz-placeholder, .contact form textarea::-moz-placeholder {
  color: gray;
}
.contact form input::placeholder,
.contact form textarea::placeholder {
  color: gray;
}
.contact form input:valid,
.contact form textarea:valid {
  border-color: #4CAF50;
}
.contact form .button {
  width: 100%;
}

@media (min-width: 654px) {
  .contact form {
    width: 26rem;
  }
}
@keyframes sliding {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.partners-logos {
  padding: 3rem 0;
  background-color: white;
  overflow: hidden;
  white-space: nowrap;
}
.partners-logos .scrolling-images {
  display: inline-flex;
  animation: 35s sliding infinite linear;
}
.partners-logos .scrolling-images:hover {
  animation-play-state: paused;
}
.partners-logos .scrolling-images img {
  height: 9rem;
  width: auto;
  margin: 0 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 400ms ease-in-out;
}
.partners-logos .scrolling-images img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}/*# sourceMappingURL=main.css.map */