@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&family=Open+Sans&display=swap');

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #2c2c2c;
  background-color: #fdfcfb;
}

/* 🌍 Language toggle */
.lang-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 100;
}

.lang-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1.5px solid white;
  background: rgba(255,255,255,0.4);
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.1);
  color: transparent;
}

.lang-btn.active {
  background: #2e7d32;
  border-color: #2e7d32;
}

header.hero {
  position: relative;
  height: 50vh;
  background: url('images/cover.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

header .hero-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 1rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 0.2em 0;
}

main {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 4rem;
}

.about p {
  line-height: 1.7;
  color: #444;
}

.gallery .grid {
  display: flex;
  justify-content: center;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact {
  text-align: center;
}

.contact .link {
  color: #2e7d32
}

.btn {
  background-color: #2e7d32;
  color: white;
  padding: 0.8em 1.5em;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 0.5em;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #388e3c;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f6f6f6;
  color: #333;
  font-size: 0.9rem;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.icon {
  width: 28px;
  transition: filter 0.3s ease;
}

.icon:hover {
  stroke: #43a047;              /* tono más brillante */
  filter: drop-shadow(0 0 4px #a5d6a7);  /* brillo sutil */
  transform: scale(1.15);
  opacity: 1;
}




