:root {
  --primary-color: #7a9e7e;
  --secondary-color: #d4a373;
  --background-color: #f3f0e6;
  --header-bg: #7a9e7e;
  --footer-bg: #4c6654;
  --text-color: #2d2d2d;
  --btn-bg: #d4a373;
  --btn-hover-bg: #c87f48;
  --font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #d4a373;
  color: #cde6d0;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background 0.3s ease-in-out;
  overflow-x: hidden;
}

.header_div {
  background: var(--header-bg);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  width: 90%;
  max-width: 1200px;
}

.logo img {
  width: 120px;
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.3);
}

nav ul li a:hover {
  background: var(--btn-hover-bg);
  transform: scale(1.1);
}

.particles {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: floatUp 8s linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0.6);
    opacity: 0.4;
  }
  50% {
    transform: translateY(50vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0.8);
    opacity: 0;
  }
}

.button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--secondary-color), #e0b389);
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.button:hover {
  background: var(--btn-hover-bg);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 5px solid var(--secondary-color);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: rotate(5deg);
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--btn-hover-bg);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.hero_section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/hero.jpg") no-repeat center center/cover;
  z-index: -1;
  animation: heroParallax 15s infinite linear;
  filter: brightness(80%) contrast(90%);
}

@keyframes heroParallax {
  0% {
    transform: scale(1.1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(10px);
  }
  100% {
    transform: scale(1.1) translateY(0);
  }
}

.hero_content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  animation: fadeIn 1.2s ease-in-out;
}

.hero_content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
}

.hero_content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.3);
}

.hero_button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #7a9e7e, #5c846b);
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero_button:hover {
  background: #4f6b5a;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero_content {
    padding: 30px;
  }

  .hero_content h1 {
    font-size: 2.5rem;
  }

  .hero_content p {
    font-size: 1.2rem;
  }

  .hero_button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

.about_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #cde6d0, #a3c9a8);
  color: #222;
  text-align: center;
  overflow: hidden;
}

.about_container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-in-out;
}

.about_text h2 {
  font-size: 2.8rem;
  color: #4f6b5a;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
}

.about_text p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.3);
}

.spirits {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.spirit {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  animation: floatSpirit 8s linear infinite;
}

@keyframes floatSpirit {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0.4;
  }
  50% {
    transform: translateY(50vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0.8);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about_container {
    padding: 30px;
  }

  .about_text h2 {
    font-size: 2.5rem;
  }

  .about_text p {
    font-size: 1.2rem;
  }
}

.cookies-section {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    rgba(250, 250, 250, 0.9),
    rgba(230, 240, 230, 0.95)
  );
  padding: 15px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
  z-index: 1000;
}

.cookies-section.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookies-div p {
  font-size: 1.2rem;
  color: #4f6b5a;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

#acceptButton {
  background: linear-gradient(135deg, #7a9e7e, #5c846b);
  color: #fff;
  font-size: 1rem;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

#acceptButton::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease-out;
}

#acceptButton:hover::before {
  opacity: 1;
  transform: scale(1);
}

.cookies-section.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
}

@media (max-width: 768px) {
  .cookies-section {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }

  .cookies-div p {
    font-size: 1rem;
  }

  #acceptButton {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

.service_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f3f0e6, #cde6d0);
  text-align: center;
  overflow: hidden;
}

.service_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-in-out;
}

.service_container h2 {
  font-size: 3rem;
  color: #4f6b5a;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
}

.service_intro {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #555;
}

.service_grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service_card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 20px;
  width: 30%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service_card img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
}

.service_card h3 {
  font-size: 1.8rem;
  color: #4f6b5a;
  margin-top: 15px;
}

.service_card p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #333;
}

.service_card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.service_card:hover img {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .service_card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .service_card {
    width: 90%;
  }

  .service_container h2 {
    font-size: 2.5rem;
  }

  .service_intro {
    font-size: 1.3rem;
  }
}

.advantages_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f3f0e6, #cde6d0);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.advantages_container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  gap: 50px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.advantages_image {
  flex: 1;
  max-width: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease-in-out;
}

.advantages_image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.advantages_image:hover img {
  transform: scale(1.05);
}

.advantages_text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.advantages_text h2 {
  font-size: 2.8rem;
  color: #4f6b5a;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
}

.advantages_text p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #333;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.3);
}

.advantages_list {
  list-style: none;
  padding: 0;
}

.advantages_list li {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #333;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.3);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s ease, transform 1s ease;
}

.advantages_list li span {
  font-size: 2rem;
  margin-right: 15px;
  color: #7a9e7e;
}

@media (max-width: 1024px) {
  .advantages_container {
    flex-direction: column;
    text-align: center;
  }

  .advantages_image {
    max-width: 100%;
  }

  .advantages_text {
    max-width: 100%;
    text-align: center;
  }

  .advantages_list li {
    justify-content: center;
  }
}

.gallery_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f3f0e6, #cde6d0);
  text-align: center;
  overflow: hidden;
}

.gallery_section h2 {
  font-size: 3rem;
  color: #4f6b5a;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
}

.gallery_wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.gallery_track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 20s linear infinite;
}

.gallery_track img {
  width: 450px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery_track img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery_wrapper:hover .gallery_track {
  animation-play-state: paused;
}

.contact_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f3f0e6, #cde6d0);
  text-align: center;
  overflow: hidden;
}

.contact_container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-in-out;
}

.contact_container h2 {
  font-size: 2.8rem;
  color: #4f6b5a;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
}

.contact_container p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #333;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.3);
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form_group label {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #4f6b5a;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: none;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;
}

.contact_form input:focus,
.contact_form textarea:focus {
  border: 2px solid #7a9e7e;
  box-shadow: 0 0 10px rgba(122, 158, 126, 0.6);
}

.submit_button {
  background: linear-gradient(135deg, #7a9e7e, #5c846b);
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

@keyframes breathing {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.submit_button:hover {
  background: #4f6b5a;
  animation: breathing 1.5s infinite;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .contact_container {
    padding: 30px;
  }

  .contact_container h2 {
    font-size: 2.5rem;
  }

  .contact_container p {
    font-size: 1.3rem;
  }

  .submit_button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}