@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  color: #A26F2E;
  transition: color 0.1s ease-in;

}

a:hover {
  color: #8B5A23;

}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.4;
  color: #4D4D4D;
  background-color: #DCA85B;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

p {
  font-size: 18px;
  margin-bottom: 32px;
}

ul {
  padding-left: 32px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  min-height: auto;
  background-color: #FFFFFF;
}

.left,
.right {
  flex: 1 1 50%;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-full-screen {
  flex: 1 1 50%;
  padding: 32px 64px 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  align-items: flex-end;
}

.hero-section {
  background-color: #DCA85B;
  color: #FFFFFF;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)),
    url("../images/PuuviljaPaide-34.jpg");
  animation: fadeInHero 0.5s ease-in forwards;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-section {
  background-color: #DCA85B;
  color: #FFFFFF;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)),
    url("../images/PuuviljaPaide-2.jpg");
  animation: fadeInHero 0.5s ease-in forwards;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 64px;

}

@keyframes fadeInHero {
  to {
    opacity: 1;
  }
}

.hero-section .right {
  padding: 0;
  height: auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  padding: 0 0 32px 0;
  color: #FFFFFF;
}

.contact-section {
  padding: 64px 64px 0 64px;
  background-color: #FFFFFF;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.contact-image img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.contact-text {
  max-width: 500px;
}

.contact-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #333;
}

.contact-text p {
  font-size: 16px;
  color: #4D4D4D;
  margin-bottom: 24px;
}

button {
  all: unset;
  cursor: pointer;
}

.buttons {
  display: flex;
  gap: 16px;
}

.buttons-hero {
  display: flex;
  gap: 16px;
  padding: 32px 0 0px 0;
}

.button-primary-light {
  background-color: #FFFFFF;
  color: #4D4D4D;
  padding: 16px 32px;
  border: none;
  border-radius: 0px;
  font-size: 16px;
  text-decoration: none;
  transition:
    background-color 0.2s ease-in,
    color 0.2s ease-in,
    outline 0.2s ease-in;
}

.button-primary-light:hover {
  background-color: #DCA85B;
  color: #FFFFFF;
  outline: 1px white solid;
}

.button-secondary-light {

  color: white;
  padding: 16px 32px;
  border-radius: 0px;
  font-size: 16px;
  text-decoration: none;
  outline: 1px white solid;
  transition:
    background-color 0.2s ease-in,
    color 0.2s ease-in,
    outline 0.2s ease-in;
}

.button-secondary-light:hover {
  background-color: #FFFFFF;
  color: #4D4D4D;
}

.button-secondary-dark {
  background-color: #FFFFFF;
  color: #4D4D4D;
  padding: 16px 32px;
  border-radius: 0px;
  font-size: 16px;
  text-decoration: none;
  outline: 1px #DCA85B solid;
  transition:
    background-color 0.2s ease-in,
    color 0.2s ease-in,
    outline 0.2s ease-in;
}

.button-secondary-dark:hover {
  background-color: #DCA85B;
  color: #FFFFFF;
}

.site-footer {
  background-color: #DCA85B;
  color: #FFFFFF;
  padding: 48px 72px;
  font-size: 18px;
}

.footer-content {
  vertical-align: top;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.footer-left p {
  margin: 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #ffffffa9;
}

.info-line {
  height: 2px;
  background-color: #FFFFFF;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  row-gap: 16px;
  column-gap: 64px;
  padding: 32px 0 16px 0;
}

.info-item h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 54px;
  font-weight: 200;
  margin: 0;
  padding: 0;
}

.notification-banner {
  width: 100%;
  background-color: #ffeed2;
  color: #4D4D4D;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.notification-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.notification-banner h2 {
  font-size: 32px;
  margin: 0 0 8px;
}

.notification-banner p {
  font-size: 16px;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
  z-index: 9999;
  display: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
  margin-bottom: 24px;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .section {
    flex-direction: column;
  }

  .left,
  .right {
    flex: 1 1 100%;
    padding: 32px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-section {
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)),
      url("../images/PuuviljaPaide-34.jpg");
  }

  .hero-section .right {
    display: none;
  }

  .hero-section .left {
    padding: 40px 20px;
  }

  .info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 32px;
  }

  .info-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .info-value {
    font-size: 48px;
    font-weight: 200;
    margin: 0;
    padding: 0;
  }

  .section {
    flex-direction: column;
  }

  .section .left,
  .section .right {
    width: 100%;
  }

  .section .right {
    order: -1;
  }

  .section .left {
    order: 1;
  }
  .footer-right {
  display: grid;
  gap: 24px;
}
}