:root {
  --green: #2e6c57;
  --red: #c62b27;
  --lightblue: #d2e4ea;

  font-family: 'marvin';
}

.c_menu_item {
  color: var(--green);
  font-size: 24pt;
  text-decoration: none;
}

.c_menu_item:hover {
  color: #85b8ab;
}

.container {
  position: relative;
  background-color: var(--lightblue);
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  z-index: 100;
  box-sizing: border-box;
}

.nav_list {
  display: flex;
  flex-direction: row;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c_hero_img {
  width: 100%;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  z-index: 20;
}

.nav_list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.hero {
  position: relative;
}

.hero_content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 800px;
  z-index: 10;
}

.main_title {
  color: var(--red);
  font-size: 81pt;
  margin: 10px 0;
}

.subtitle {
  color: var(--red);
  font-weight: bold;
  font-size: 30pt;
  letter-spacing: 1px;
}

.description {
  color: var(--green);
}

.c_button {
  background-color: var(--green);
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  display: inline-block;
  font-family: 'marvin', sans-serif;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transform: rotate(-2deg) skewX(-5deg);
  padding: 1rem;
  margin-top: 2rem;
}

.c_button span {
  display: block;
  transform: skewX(5deg);
}

.c_button:hover {
  background-color: #85b8ab;
}

.info_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  padding: 145px 80px;
  background-image: url('../images/background/wolk1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--lightblue);
}

.info_content {
  flex: 1;
}

.info_title {
  color: var(--red);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.info_text {
  color: var(--green);
  font-family: 'Arial';
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
}

.info_image {
  flex: 1;
  display: flex;
  justify-content: right;
}

.info_image img {
  max-width: 450px;
  height: auto;
}

@media (max-width: 768px) {
  .info_section {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .info_image img {
    max-width: 300px;
    margin-top: 40px;
  }
}

#json-products {
  padding: 80px 50px;
  background-color: var(--lightblue);
  text-align: center;
}

#product-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.product-card {
  background: white;
  border-radius: 30px;
  padding: 25px;
  width: 350px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.product-card a {
  display: inline-block;
  background-color: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
  transition: background-color 0.3s ease;
}

.product-card a:hover {
  background-color: var(--red);
}

.product-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.product-card h3 {
  color: var(--red);
  font-family: 'marvin', sans-serif;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: 'Arial';
}

h2 {
  color: var(--red);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
