:root {
  /* --primary-color: #4a634b; */
  --primary-color: #a4b0a4;
  --accent-color: #e6dac2;
  --text-color: #333;
  --light-bg: #f7f7f7;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  background: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: var(--light-bg);
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--primary-color);
  transition: color 0.3s;
}
nav ul li a:hover {
  color: var(--accent-color);
}

/* Hero */
.hero {
  position: relative;
  background: url("../img/hero-flowers.png") 50% 25% / cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(74, 99, 75, 0.5);
}
.hero h1 {
  position: relative;
  top: 25vh;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  /* color: #fff; */
  color: #000;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1.5rem;
  border: 2px solid #000;
  border-radius: 8px;
}

/* Sections */
section {
  padding: 60px 0;
}
h2 {
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
p {
  max-width: 700px;
  margin: 0.5rem auto;
  line-height: 1.8;
}

/* Galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Contacto */
.contact-form {
  max-width: 600px;
  margin: 1.5rem auto;
  display: grid;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}
.contact-form button {
  padding: 14px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

img.whatsapp {
  height: 1.5rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}
.modal-content .close {
  color: #aaa;
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
.modal-content .close:hover {
  color: #000;
}

/* Footer */
footer {
  background: var(--light-bg);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #e0e0e0;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  nav ul {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }

  img.whatsapp {
    height: 1.5rem;
  }
}
