:root {
  --green-main: #168248;
  --green-hover: #0fc336;
  --blue-accent: #005eb8;
  --dark-text: #001219;
  --white: #ffffff;
  --light: #fafafa;
  --gray-text: #555;
}

/* reset everything */
/* *,
*::before,
*::after {
  box-sizing: border-box;
} */

* {
  margin: 0;
  padding: 0;
}

/* prevent iOS font size change on orientation change */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

/* reset body line-height and min-height */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  font-family: "Barlow", sans-serif;
  color: var(--dark-text);
}

/* all media elements set to block and full width of container */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

/* reset form elements */
input,
button,
textarea,
select {
  font: inherit;
}

p,
li,
span,
a {
  font-family: "Barlow", sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.button-cls {
  display: inline-block;
  background-color: var(--green-main);
  border-radius: 8px;
  transition: background-color 0.3s ease;
  overflow: hidden;
  padding: 10px 20px;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-bottom: 60px;
  margin-top: 20px;
}

.button-cls:hover,
.button-cls:focus {
  background-color: var(--green-hover);
}

.map-iframe {
  width: 100%;
  border: 0;
}

.wrapper {
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* font faces for H1 & logo */
@font-face {
  font-family: "LesNoir";
  src: url("./les-noir/LESNOIR.woff2") format("woff2"),
    url("./les-noir/LESNOIR.ttf") format("truetype"),
    url("./les-noir/LESNOIR.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-weight: 400;
  font-family: "LesNoir";
}

/* Header styles */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  padding: 10px 10px;
}

.header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  margin-left: 40px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 5px;
}

.logo-image {
  width: 50px;
  height: auto;
}

.logo-text {
  text-decoration: none;
  font-size: 2.4rem;
  font-family: "LesNoir";
  letter-spacing: 0.5px;
  color: var(--green-main);
}
.nav-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}

.nav-links li {
  margin: 0 10px;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}

.nav-links-active {
  border: 2px solid #0066b6;
  box-shadow: 0 0 10px #0066b6;
}

.nav-links a {
  display: block;
  cursor: pointer;
  padding: 8px 16px;
  text-align: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--green-main);
  font-weight: 500;
  font-size: 13px;
}

.nav-links a:hover {
  color: var(--green-hover);
}

@media screen and (min-width: 426px) and (max-width: 768px) {
  header {
    padding: 5px 10px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .header-container {
    gap: 8px;
  }

  .logo-image {
    width: 50px;
    height: auto;
  }
  .logo-text {
    font-size: 2.2rem;
  }
  .nav-links a {
    font-size: 30px;
    padding: 6px 10px;
  }
}

@media screen and (min-width: 1025px) {
  .header-container {
    margin-left: 90px;
  }
  .logo-image {
    width: 60px;
    height: auto;
  }
  .logo-text {
    font-size: 2.8rem;
  }
  .nav-links a {
    font-size: 22px;
    padding: 6px 10px;
  }
}

@media screen and (min-width: 1026px) and (max-width: 1260px) {
  .header-container {
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
  }
  .logo-image {
    width: 60px;
    height: auto;
  }
  .logo-text {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 1261px) {
  .header-container {
    position: absolute;
    left: 43%;
    transform: translateX(-50%);
  }
  .logo-image {
    width: 60px;
    height: auto;
  }
  .logo-text {
    font-size: 2.8rem;
  }
}

/* Header burger menu styles */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: 2%;
  margin-right: 2%;
  position: relative;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green-main);
  border-radius: 3px;
  transition: 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.burger.active {
  padding-block: 10px;
  border: 3px solid var(--blue-accent);
  border-radius: 90px;
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 5px;
    gap: 0px;
  }

  .burger {
    display: flex;
    order: 0;
    margin-left: 15px;
    margin-right: 25px;
  }

  .header-container {
    margin-left: 15px;
  }

  .logo-image {
    width: 40px;
    height: auto;
  }

  .logo-text {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding-top: 30px;
    gap: 15px;
    transition: 0.3s ease;
  }

  .nav-links.open {
    right: 0;
    backdrop-filter: blur(10px);
    background: rgba(196, 189, 189, 0.633);
  }
}

/* Hero styles */

.hero {
  min-height: 100vh;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url("/src/img/hero/Hero.jpg");
}

.hero-cafe {
  background-image: url("/src/img/hero/Cafe.jpg");
}

.hero-gardening {
  background-image: url("/src/img/hero/Gardening.jpg");
}

.hero-honey {
  background-image: url("/src/img/hero/honey.jpg");
}

.hero img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 12em;
  color: var(--green-main);
  margin-bottom: 60px;
  padding-top: 250px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1025px) {
  .hero-title {
    font-size: 9rem;
  }
}

@media screen and (max-width: 650px) {
  .hero-title {
    font-size: 7rem;
  }
}

@media screen and (max-width: 649px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 120px;
  text-shadow: 2px 2px 4px rgba(35, 34, 34, 0.5);
}

/* Product Button styles */

.product-button {
  display: inline-block;
  background-color: var(--green-main);
  border-radius: 8px;
  transition: background-color 0.3s ease;
  overflow: hidden;
  margin-top: 80px;
}

.now-button {
  margin-bottom: 350px;
}

@media screen and (min-width: 1025px) {
  .now-button {
    margin-bottom: 200px;
  }
}

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

.button-sun {
  margin-bottom: 140px;
}

.product-button .product-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 24px;
  color: #fafafa;
  text-decoration: none;
  font-size: 1.2rem;
  text-align: center;
}

/* Sun Button */

.square {
  width: 100px;
  height: 100px;
  background-color: #ffd700;
  border-radius: 50%;
  border: none;
  color: var(--dark-text);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.square:hover {
  color: var(--dark-text);
  transition: 0.3s;
}

.square div:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #ffea00;
  border-radius: 48% 52% 52% 48% / 50% 50% 50% 50%;
  transition: 0.8s;
  animation: animate 6s linear infinite;
  box-shadow: rgba(255, 235, 0, 0.56) 0px 22px 50px 4px;
}

.square:hover div:nth-child(1) {
  background: #f3ff07;
}

.square div:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #ffd54f;
  border-radius: 50% 50% 50% 50%;
  transition: 0.8s;
  animation: animate2 4s linear infinite;
  box-shadow: rgba(255, 215, 79, 0.56) 0px 22px 50px 4px;
}

.square:hover div:nth-child(2) {
  background: #f3ff07;
}

.square div:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #ffca28;
  border-radius: 49% 51% 51% 49% / 50% 50% 50% 50%;
  transition: 0.8s;
  animation: animate 10s linear infinite;
  box-shadow: rgba(255, 202, 40, 0.56) 0px 22px 50px 4px;
}

.square:hover div:nth-child(3) {
  background: #f3ff07;
}

.square div:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffe082;
  border-radius: 50% 50% 50% 50%;
  animation: animate2 8s linear infinite;
  box-shadow: rgba(255, 224, 130, 0.56) 0px 22px 50px 4px;
}

.square:hover div:nth-child(4) {
  background: #f3ff07;
}

.square div:nth-child(5) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff176;
  border-radius: 48% 52% 52% 48% / 50% 50% 50% 50%;
  animation: animate 12s linear infinite;
  box-shadow: rgba(255, 241, 118, 0.56) 0px 22px 50px 4px;
}

.square:hover div:nth-child(5) {
  background: #f3ff07;
}

.button a {
  position: relative;
  display: inline-block;
  margin-top: 4px;
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 800;
  font-size: 1.2rem;
  font-family: "Barlow", sans-serif;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.hero-description {
  font-family: "Bodoni Moda", sans-serif;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #005eb8;
  text-shadow: 2px 2px 4px rgba(35, 34, 34, 0.5);
}

/* About section styles */
h2 {
  font-family: "Bodoni Moda", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--green-main);
  margin-bottom: 20px;
}

.about .wrapper {
  margin-top: 60px;
  padding: 20px 40px;
  background: rgba(14, 11, 205, 0.206);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  align-items: center;
  margin-bottom: 60px;
}

.about-image {
  display: block;
  object-fit: cover;
  max-width: 1000px;
  height: auto;
  border-radius: 8px;
}

.about-image img {
  border-radius: 8px;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  gap: 50px;
}

@media screen and (min-width: 768px) {
  .about-container {
    flex-direction: row;
  }
}

h3 {
  font-family: "Bodoni Moda", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--green-main);
  margin-bottom: 20px;
}

.about-description {
  font-size: 1.3rem;
  color: #001219;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-list {
  margin-top: 30px;
  list-style-type: disc;
  padding-left: 20px;
  color: #001219;
  font-size: 1.3rem;
  line-height: 1.6;
}

/*Organic Goodness Section Styles */

.organic-goodness {
  background: url("/src/img/about/goodnes-Firefly-Upscaler-2x-scale.jpg")
    no-repeat center center fixed;
  background-size: cover;
  padding: 60px 20px;
  color: var(--dark-text);
}

.organic-goodness .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  border-radius: 8px;
  background: rgba(235, 230, 231, 0.623);
}

.organic-goodness-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--light);

  margin-bottom: 15px;
  font-family: "Bodoni Moda", serif;
}

.section-subtitle {
  display: inline-block;
  color: var(--dark-text);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.85;
}

.features-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-item {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(38, 8, 190, 0.025);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-number {
  width: 110px;
  min-width: 110px;
  background: linear-gradient(180deg, #2f2f2f, #1b1b1b18);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  color: #c7c7c7;
  font-family: "Bodoni Moda", serif;
  position: relative;
}

.feature-number::before {
  top: -20px;
}

.feature-number::after {
  bottom: -20px;
  transform: rotate(180deg);
}

.feature-content {
  padding: 25px 30px;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Bodoni Moda", serif;
  margin-bottom: 8px;
  color: var(--light);
}

.feature-description {
  font-size: 1.3rem;
  line-height: 1.55;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
  }

  .feature-number {
    width: 100%;
    min-width: unset;
    height: 70px;
  }

  .feature-number::before,
  .feature-number::after {
    display: none;
  }

  .feature-content {
    padding: 20px;
  }
}

@media (max-width: 450px) {
  .section-title {
    font-size: 2.2rem;
  }

  .feature-number {
    font-size: 1.8rem;
  }
}

/* Organic Products and Services Section Styles */
.organic-products {
  padding: 60px 20px;
  color: var(--dark-text);
}

.section-products {
  padding: 40px 0;
}

@media only screen and (min-width: 768px) {
  .section-products {
    padding: 50px 0;
  }
}

@media only screen and (min-width: 1168px) {
  .section-products {
    padding: 60px 0;
  }
}
.products-title {
  color: var(--dark-text);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.6px;
  text-transform: uppercase;

  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) {
  .products-title {
    margin-bottom: 50px;
    font-size: 24px;
    line-height: 1.17;
    letter-spacing: -0.72px;
  }
}
.products-list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  list-style-type: none;
}

.products-img {
  margin: 0 auto;
  border-radius: 8px;
}

@media only screen and (min-width: 768px) {
  .products-list {
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 32px;
  }
}
@media only screen and (min-width: 1168px) {
  .products-list {
    gap: 24px 18px;
  }
}
.products-list-item {
  width: 100%;
  padding: 32px 52px;
  text-align: center;

  border-radius: 15px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: var(--light);
}

@media only screen and (min-width: 768px) {
  .products-list-item {
    width: calc((100% - 32px) / 2);
    padding: 32px 20px;
  }
}

@media only screen and (min-width: 1168px) {
  .products-list-item {
    padding: 32px 20px;
    width: calc((100% - 18px * 3) / 4);
  }
}
.products-sub-title {
  font-family: "Bodoni Moda", serif;
  color: var(--green-main);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin: 8px 0 2px;
}
.products-text {
  color: rgba(17, 17, 17, 0.7);
  font-size: 1.3rem;
  line-height: 1.7;
  letter-spacing: -0.24px;
  margin-bottom: 18px;
}

.products-btn {
  border-radius: 100px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: var(--light);
  width: 94px;
  height: 33px;
  padding: 8px 20px;

  color: #001219;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  font-family: "Montserat", sans-serif;
}

/*reviews section styles */

.reviews .wrapper {
  margin-top: 60px;
  padding: 20px 40px;
  background: rgba(14, 11, 205, 0.206);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  align-items: center;
  margin-bottom: 60px;
}

.reviewes-container-title {
  margin-bottom: 40px;
}

.reviewes-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .reviewes-container-title {
    margin-bottom: 50px;
    margin-right: 0;
    width: 547px;
  }
}

.reviewes-title {
  color: var(--dark-text);
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .reviewes-title {
    margin-bottom: 25px;
  }
}

.green-text {
  color: #576f35;
}

.reviewes-desc {
  color: var(--dark-text);
}

@media screen and (min-width: 768px) {
  .reviewes-desc {
    line-height: 1.4;
  }
}

.reviewes-menu {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .reviewes-menu {
    gap: 18px;
  }
}

@media screen and (min-width: 1280px) {
  .reviewes-menu {
    gap: 25px;
  }
}

.reviewes-item {
  width: 335px;
  background-color: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  border: 1px solid #1715964d;
  margin-bottom: 20px;
}

.reviewes-item:nth-last-child(-n + 2) {
  display: none;
}

@media screen and (min-width: 768px) {
  .reviewes-item:nth-child(-n + 2) {
    display: flex;
  }

  .reviewes-item {
    width: 343px;
    padding: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .reviewes-item:nth-last-child(-n + 2) {
    display: flex;
  }
}

.reviewes-costumers {
  margin-bottom: 24px;
}

.reviewes-card-text {
  padding: 0 6px;
}

.reviewes-name {
  font-family: "Bodoni Moda", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .reviewes-name {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
}

.reviewes-name {
  color: var(--dark-text);
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.reviewes-text-descripiton {
  color: var(--dark-text);
  font-size: 1.3rem;
}

/* footer styles */

.footer-class .container {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
  justify-items: center;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .footer-class .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1158px) {
  .footer-class .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

@media screen and (min-width: 1025px) {
  .footer-class .container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
  }
}

.footer-logo-box {
  margin: 0 auto;
  margin-right: 120px;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .footer-logo-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 264px;
  }
}

@media screen and (min-width: 1158px) {
  .footer-logo-block {
    align-items: flex-start;
    gap: 17.5px;
    margin-right: 120px;
    width: 264px;
  }
}

.footer-h {
  font-family: "Bodoni Moda", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.32px;
}

.footer-class {
  background-color: var(--green-main);
  padding: 20px;
}

@media screen and (min-width: 1158px) {
  .footer-class {
    padding-bottom: 25px;
    padding-top: 25px;
  }
}

.bestsellers-ill {
  max-width: 100%;
  height: auto;
}

.logo-footer {
  display: inline-block;
  color: var(--light);
  font-family: "LesNoir", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 0.54px;
}

footer .logo,
.footer-par {
  color: var(--light);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer-h {
  color: var(--light);
  font-family: "Bodoni Moda", sans-serif;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer-h {
    text-align: left;
  }
}

.footer-social-links {
  display: flex;
  list-style-type: none;
  gap: 16px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .footer-social-links {
    justify-content: flex-start;
  }
}

.footer-social-links .link:hover,
.footer-social-links .link:focus {
  background-color: #31d0aa;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-form-subscribe {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adress-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style-type: none;
  margin-top: 16px;
  margin-bottom: 24px;
}

.adress-link {
  text-decoration: none;
  color: var(--light);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.32px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.product-button-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 20px;
  background-color: var(--light);
  border-radius: 8px;
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.product-button-subscribe:hover,
.product-button-subscribe:focus {
  background-color: var(--dark-text);
  color: var(--light);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

icon-team-fut:hover,
.icon-team-fut:focus {
  fill: var(--dark-text);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-team {
  fill: var(--light);
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-team:hover,
.icon-team:focus {
  fill: var(--dark-text);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-team-fut {
  fill: var(--blue-main);
}

.adress-link:hover,
.adress-link:focus {
  color: var(--dark-text);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Organic Cafe styles */

/* Hero Section Styles */

.optimize {
  padding-top: 120px;
  margin-bottom: 40px;
}

.hero-subtitle-cafe {
  max-width: 1200px;
  font-size: 1.8rem;
  color: var(--light);
  margin: 0 auto 40px;
  text-shadow: 2px 2px 4px rgba(19, 19, 19, 0.809);
}

@media screen and (max-width: 768px) {
  .hero-subtitle-cafe {
    font-size: 1rem;
  }
}

/* Menu Section Styles */

.menu-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.menu-section h2 {
  text-align: center;
  color: var(--green-main);
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: 600;
}

.menu-category {
  margin-top: 40px;
}

.menu-category h3 {
  font-family: "Bodoni Moda", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--green-main);
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item .details {
  max-width: 70%;
}

.menu-item .name {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 4px;
  color: var(--dark-text);
}

.menu-item .description {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.4;
}

.menu-item .price {
  font-weight: bold;
  font-size: 18px;
  color: var(--green-main);
  white-space: nowrap;
  margin-left: 20px;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

/*modal styles */
dialog::backdrop {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4);
}

dialog {
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(14, 11, 205, 0.206);
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
}

.modal {
  padding: 20px;
  width: 300px;
}

.reservation-form h3 {
  padding-top: 20px;
  margin-top: 0;
  text-align: center;
}

.reservation-form label {
  display: block;
  margin: 12px 0 4px;
  font-weight: 600;
}

.reservation-form input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.reservation-form select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.reservation-form button[type="submit"] {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: var(--green-main);
  color: var(--light);
  font-size: 16px;
  cursor: pointer;
}

dialog > button[command="close"] {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

#closeModal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  font-size: 20px;
  font-weight: bold;
  color: var(--dark-text);
}

.map-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.map-section h2 {
  font-size: 26px;
  color: var(--green-main);
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Gardening Academy Section Styles */

@media screen and (max-width: 768px) {
  .hero-subtitle-cafe {
    font-size: 1rem;
  }
}

.courses-section {
  max-width: 1000px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

.course-card {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.course-card h3 {
  color: var(--green-main);
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.course-card p {
  color: var(--dark-text);
  line-height: 1.5;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.course-card .price {
  font-weight: bold;
  font-size: 18px;
  color: var(--green-main);
  margin-bottom: 15px;
}

/* Honey Section Styles */

.hero-honey {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  background-image: url("/src/img/hero/honey.jpg");
  background-size: cover;
  background-position: center;
}

/* Products Section Styles */
.carousel-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
}

.carousel-slide {
  height: 100%;
  display: none;
  position: relative;
}

.carousel-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel-slide.active {
  display: block;
}

.carousel-title {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12em;
  line-height: 1;
  color: var(--green-main);
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .carousel-title {
    font-size: 3em;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .carousel-title {
    font-size: 4em;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 5px 12px;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 15px;
}
.carousel-btn.next {
  right: 15px;
}

/* products section styles */
.products-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.products-section h2 {
  font-size: 32px;
  color: var(--green-main);
  margin-bottom: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 20px;
  color: #001219;
}

/* clothes section styles */
.clothing-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.clothing-section h2 {
  font-size: 32px;
  color: var(--green-main);
  margin-bottom: 25px;
}

.clothing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.clothing-card {
  background: var(--light);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clothing-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.clothing-card h3 {
  color: #001219;
  font-size: 20px;
}

/* Honey Section Styles */

.video-section-honey {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.video-section-honey h2 {
  font-size: 28px;
  color: var(--green-main);
  margin-bottom: 20px;
}

.video-honey {
  display: inline-block;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.video-container-honey {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

/* accordion styles */
.accordion details {
  background: var(--light);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

details[open] {
  background: var(--light);
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
  list-style: none;
  font-family: "Bodoni Moda", serif;
  color: #168248;
  font-weight: 600;
  min-width: 200px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  font-size: 2rem;
  font-weight: 900;

  flex-shrink: 0;
  transition: all 0.3s ease;
  width: 20px;
}

summary span {
  min-width: 200px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
  font-size: 1.3rem;
}

/* honey section styles */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 60px;
}

.product-card {
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  font-family: "Bodoni Moda", serif;
  margin: 16px 16px 8px;
  font-size: 1.4rem;
}

.product-card p {
  margin: 0 16px 16px;
  color: #555;
  font-size: 1.3rem;
  line-height: 1.5;
}

.price {
  font-weight: 600;
  margin: 0 16px 16px;
  color: var(--green-main);
}
