:root {
  --primary: #6b8e75;
  --background: #fdeff2;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

@keyframes watercolor {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  background: rgba(107, 142, 117, 0.25);
  backdrop-filter: blur(6px);
  animation: watercolor 15s ease-in-out infinite;
  background-size: 400% 400%;
}

nav .logo {
  display: flex;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

nav .logo-img {
  height: 100px;
  margin-right: 0.7rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: auto;
  flex-wrap: wrap;
  padding-right: 1rem;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 90vh;
  padding: 2rem;
  background: url("../assets/placeholder.jpg") center/cover no-repeat;
  color: #57725e;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #57725e;
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: #f7f7f3;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact-item {
  font-size: 1rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem 0;
  background: rgba(107, 142, 117, 0.25);
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
  color: #fff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
  margin-top: auto;
  animation: watercolor 120s ease-in-out infinite;
}

nav,
footer {
  border-radius: 0;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

  nav .logo {
    font-size: 1.6rem;
  }

  nav .logo-img {
    height: 45px;
  }

  nav ul {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  nav a {
    font-size: 1.05rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(6px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

footer {
  text-align: center;
  padding: 2rem 0;
  background: transparent;
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
  color: #fff;
  margin-top: auto;
}

@media (max-width: 768px) {
  nav {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(107, 142, 117, 0.95);
    width: 100%;
    padding: 1rem 0;
    text-align: center;
  }

  nav ul.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
}
