@charset "UTF-8";
/**
//  * --- Abstracts (tiché — pouze mixiny, funkce; žádný CSS output) ---
//  * Není potřeba importovat zde — partialy si je importují samy přes @use "../abstracts".
//  * Výjimka: pokud main.scss sám potřebuje mixiny (v sekci stránkových stylů níže).
//  */
/* GENERAL */
:root {
  --color-black: #2A2A2A;
  --color-white: #FFFFFF;
  --color-gray: #DADADA;
  --secondary-color-white: #e9e9e9;
  --color-blue: #255A99;
  --color-yellow: #FFD53F;
  --color-yellow-hover: #FFC107;
  --secondary-color-yellow: #FFF2CC;
  --secondary-color-blue: #EFF5FC;
  --tertiary-color-blue: #527cb0;
  --stroke-color: #0000001f;
  --secondary-stroke-color: #0000000d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
}

h1 {
  font-size: 75px;
}

h2 {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

p,
span,
a,
label {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 20px;
}

i {
  font-size: 60px;
}

/* LINKS */
a {
  color: white;
  text-decoration: none;
}

.underline-a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body {
  background-color: var(--color-white);
  margin: 0 auto;
}

/* SECTION LAYOUT */
.bg-blue {
  background-color: var(--secondary-color-blue);
}

.bg-dark-blue {
  background-color: var(--color-blue);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* BUTTONS */
button {
  font-family: "Nunito", sans-serif;
  border: none;
  outline: none;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 18px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0 auto;
  transition: 0.1s all ease-in-out;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.yellow-button {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.yellow-button:hover {
  background-color: var(--color-yellow-hover);
}

.white-button {
  background-color: var(--color-white);
  color: var(--color-blue);
}

.white-button:hover {
  background-color: var(--secondary-color-white);
}

/* HEADER */
header {
  background-color: var(--color-blue);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 80%;
  margin: 0 auto;
}

header img {
  width: 200px;
  height: auto;
}

.header-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

header p {
  font-size: 18px;
  margin: 0;
}

header h6 {
  font-size: 18px;
  font-weight: 800;
}

header a {
  font-weight: 700;
}

.header-button {
  font-size: 20px;
  margin: 0;
  padding: 10px 25px;
}

/* HERO */
.hero-title {
  text-align: center;
}

.hero-title p {
  font-size: 22px;
  width: 70%;
  margin: 40px auto;
}

.hero button {
  font-size: 22px;
}

/* BENEFITS */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--secondary-color-blue);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 30px;
  justify-content: space-around;
  border-radius: 10px 30px 10px 30px;
}

.benefits-container hr {
  display: none;
}

.benefit-content {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
}

.benefit-content h3,
.benefit-content i {
  color: var(--color-blue);
}

.benefit-content i {
  font-size: 60px;
}

.benefit-content h3 {
  font-size: 32px;
  font-weight: 900;
}

.benefit-content h4 {
  font-size: 24px;
  font-weight: 700;
}

.benefit-content h5 {
  font-size: 20px;
  font-weight: 400;
}

.benefit-content-text {
  margin-top: 20px;
}

/* REVIEW */
.review {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.review i {
  color: var(--color-yellow);
  font-size: 25px;
}

.review p {
  font-size: 20px;
}

.icon-circle {
  background-color: var(--secondary-color-blue);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.icon-circle i {
  color: var(--color-blue);
  font-size: 52px;
}

/* WHY US */
.why-us-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-us-content h3 {
  font-size: 32px;
  font-weight: 600;
}

.why-us-content p {
  font-size: 20px;
  width: 80%;
}

/* OUR PROCESS */
.our-process-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.our-process-content {
  flex: 1;
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 20px;
  border: solid 1px var(--stroke-color);
  transition: 0.3s all ease-in-out;
}

.our-process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
}

.our-process-title {
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 20px;
}

.our-process-title i {
  font-size: 30px;
}

.our-process-content p {
  margin-bottom: 0;
}

/* RECYCLING */
.recycling-container {
  background-color: var(--secondary-color-blue);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.recycling-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.recycling p {
  text-align: center;
}

.recycling-item {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.recycling-item img {
  width: 100%;
  height: auto;
}

.recycling-item h3 {
  font-size: 20px;
  font-weight: 500;
}

.recycling-item hr {
  border: none;
  border-top: 1px solid var(--stroke-color);
  margin: 20px 0;
}

.recycling-item h4 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-blue);
}

.recycling-container span {
  font-size: 16px;
}

/* VEHICLE DISPOSAL */
.vehicle-disposal {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 30px;
  border-radius: 30px 10px 30px 10px;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.vehicle-disposal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.vehicle-disposal-content h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}

.vehicle-disposal-content p {
  font-size: 20px;
  width: 80%;
  text-align: left;
}

.vehicle-disposal-content h2,
.vehicle-disposal-content p {
  margin: 10px;
}

.vehicle-disposal button {
  margin: 0 auto;
}

/* ABOUT */
.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.about h2 {
  text-align: left;
}

.key-facts-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.key-fact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.key-fact-icon-container {
  background-color: var(--color-blue);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.key-fact-icon-container i {
  font-size: 25px;
  color: var(--color-white);
}

.key-fact-content h4 {
  font-size: 18px;
  font-weight: 500;
}

.key-fact-content p {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-images img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}

.about-images img:hover {
  border-radius: 20px;
  transform: scale(1.03);
}

/* REVIEWS */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-item {
  background-color: var(--color-white);
  padding: 20px;
  border-radius: 30px 10px 30px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s all ease-in-out;
  border: solid 1px transparent;
}

.review-item:hover {
  border-radius: 30px;
  border: solid 1px var(--stroke-color);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
}

.review-item p {
  margin: 0;
  font-size: 18px;
}

.review-item i {
  font-size: 30px;
}

/* SAFE DISPOSAL */
.safe-disposal {
  color: var(--color-white);
}

.safe-disposal h2 {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
}

.safe-disposal p {
  font-weight: 200;
  margin: 40px 0;
  text-align: center;
}

/* FAQ */
.faq i {
  color: var(--color-blue);
  font-size: 30px;
  transition: transform 0.3s ease;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}

.faq-item h3:hover {
  color: var(--color-blue);
}

.faq-answer {
  display: none;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active i {
  transform: rotate(180deg);
}

/* CONTACT */
.compliance-files-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 80%;
  margin: 0 auto;
}

.compliance-files-content {
  background-color: var(--color-white);
  border: var(--stroke-color) solid 1px;
  border-radius: 20px;
  padding: 30px;
  flex: 1;
}

.compliance-files-content p {
  font-size: 18px;
}

.file-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.file-item i {
  color: var(--color-blue);
  font-size: 20px;
}

.file-item a {
  color: var(--color-black);
  font-size: 18px;
  margin: 10px 0;
}

.contact-container {
  background-color: var(--color-white);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  margin: 40px 0;
}

.contact-container h3 {
  font-size: 32px;
  font-weight: 600;
}

/* CONTACT INFO */
.contact-info-container {
  background-color: var(--color-blue);
  border-radius: 30px 0px 0px 30px;
  padding: 50px;
  color: var(--color-white);
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 60px 0;
}

.contact-info-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.contact-info-item-icon-container {
  background-color: var(--tertiary-color-blue);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info-item-icon-container i {
  color: var(--color-white);
  font-size: 20px;
}

.contact-info-item-text p {
  font-size: 18px;
  color: var(--color-gray);
  font-weight: 200;
  margin: 10px 0;
}

.contact-info-item-text a {
  font-size: 18px;
  font-weight: 700;
}

.opening-hours-week {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}

.opening-hours-week p {
  font-size: 18px;
  margin: 5px 0;
}

/* CONTACT FORM */
.contact-form {
  padding: 50px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 0 0;
}

input,
textarea {
  padding: 10px;
  border: var(--stroke-color) solid 1px;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

form button {
  width: 100%;
  padding: 10px 20px;
}

form p {
  font-size: 14px;
  text-align: center;
}

/* FOOTER */
footer {
  border-top: var(--stroke-color) solid 1px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  font-size: 16px;
  padding: 40px 20px;
  margin-bottom: 40px;
}

footer a,
footer p {
  color: var(--color-black);
  font-size: 16px;
}

/* INFO BAR */
.info-bar {
  background-color: var(--secondary-color-yellow);
  opacity: 0.9;
  position: fixed;
  bottom: 0;
  text-align: center;
  padding: 20px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.info-bar p {
  font-size: 18px;
  margin: 0;
}

.info-bar a {
  font-size: 18px;
  font-weight: 800;
  margin: 0 10px;
  color: var(--color-black);
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
  /* HEADER */
  .header-contact {
    display: none;
  }
  /* RECYCLING */
  .recycling-content {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  button {
    padding: 15px 30px;
    font-size: 18px;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 32px;
    margin: 10px 0;
  }
  p,
  span,
  a,
  label {
    font-size: 18px;
  }
  header {
    padding: 20px;
  }
  header img {
    width: 150px;
  }
  .container {
    padding: 40px 20px;
  }
  .header-content {
    width: 100%;
  }
  .header-contact {
    display: none;
  }
  .header-button {
    padding: 10px 20px;
    font-size: 16px;
  }
  /* HERO */
  .hero .container {
    padding: 40px 20px;
  }
  .hero-title p {
    width: 100%;
  }
  /* BENEFITS */
  .benefits-container {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 20px;
  }
  .benefits-container hr {
    display: block;
    width: 100%;
    border: solid 1px var(--secondary-stroke-color);
  }
  .benefit-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
  }
  .benefit-content-text {
    text-align: left;
  }
  .benefit-content i {
    font-size: 48px;
  }
  .benefit-content h3 {
    font-size: 24px;
  }
  .benefit-content h4 {
    font-size: 18px;
  }
  .benefit-content h5 {
    font-size: 16px;
  }
  /* REVIEW */
  .review p {
    font-size: 16px;
  }
  .review i {
    font-size: 20px;
  }
  /* WHY US */
  .why-us-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .why-us h2 {
    margin: 20px 0;
  }
  .why-us-content h3 {
    font-size: 28px;
  }
  .vehicle-disposal-content p,
  .why-us-content p {
    width: 100%;
    font-size: 18px;
  }
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  .icon-circle i {
    font-size: 30px;
  }
  /* OUR PROCESS */
  .our-process h2 {
    margin: 20px 0;
  }
  .our-process-container {
    grid-template-columns: 1fr;
  }
  /* RECYCLING */
  .recycling h2,
  .recycling p {
    text-align: left;
  }
  .recycling-container {
    padding: 20px;
  }
  .recycling-content {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .recycling-item {
    flex-direction: row;
    align-items: center;
    padding: 10px;
    gap: 20px;
  }
  .recycling-item img {
    width: auto;
    height: 60px;
  }
  .recycling-item h4 {
    font-size: 24px;
  }
  .recycling-item hr {
    margin: 10px 0;
  }
  /* VEHICLE DISPOSAL */
  .vehicle-disposal {
    flex-direction: column;
    align-items: start;
    padding: 20px;
  }
  .vehicle-disposal-content h2 {
    font-size: 28px;
  }
  .vehicle-disposal button {
    margin: 10px 0;
  }
  /* ABOUT */
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-images {
    gap: 10px;
  }
  .key-facts-container {
    flex-direction: column;
    align-items: start;
  }
  /* REVIEWS */
  .reviews-container {
    grid-template-columns: 1fr;
  }
  /* SAFE DISPOSAL */
  .safe-disposal h2 {
    font-size: 32px;
    text-align: left;
  }
  .safe-disposal p {
    text-align: left;
  }
  .safe-disposal button {
    margin: 20px 0;
  }
  /* FAQ */
  .faq h2 {
    margin: 20px 0;
  }
  .faq-item h3 {
    font-size: 20px;
  }
  /* COMPLIANCE FILES */
  .contact h2 {
    text-align: left;
    margin: 20px 0;
  }
  .compliance-files-container {
    flex-direction: column;
    width: 100%;
  }
  .compliance-files-content {
    padding: 20px;
  }
  /* CONTACT INFO */
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info-container {
    border-radius: 30px 30px 0px 0px;
    padding: 30px;
  }
  .contact-info-container img {
    width: 150px;
    height: auto;
  }
  .contact-info-container h3,
  .contact-form h3 {
    font-size: 28px;
  }
  .contact-info-content {
    margin: 40px 0;
  }
  /* CONTACT FORM */
  .contact-form {
    padding: 30px;
  }
  /* FOOTER */
  footer {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  /* INFO BAR */
  .info-bar {
    padding: 10px;
  }
}