/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

/* Fuentes */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #fcf9f3;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 80%;
  max-height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 500;
  color: #444;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e6a556
}

.reservar-btn {
    padding: 0.4rem 1rem;
    border: 2px solid #e6a556; /* dorado */
    border-radius: 25px;
    color: #e6a556;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .reservar-btn:hover {

    color: #e6a556;
  }


/* Estilo moderno del menú burger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 120;
  }
  
  .hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: #444;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* --- RESPONSIVE --- */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
      position: absolute;
      top: 1.5rem;
      right: 2rem;
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      right: 0;
      background-color: white;
      flex-direction: column;
      width: 100%;
      text-align: center;
      display: none;
      padding: 1rem 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links a {
      margin: 1rem 0;
    }
  }
  

  /* Hero Section */
  .hero {
    height: 100vh;
    background-image: url("img/imagenParaTira.jpeg"); /* Asegúrate de tener esta imagen en tu carpeta img */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    color: white;
  }
  
  .hero-logo {
    width: 100%;
    max-width: 1400px;
    height: auto;
    margin-top: 5rem;
  }
  

  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Oscurece para que el texto destaque */
    z-index: 1;
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .hero-text p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  
  .hero-text .hero-button {
    background-color: transparent;
    border: 2px solid gold;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .hero-text .hero-button:hover {
    background-color: gold;
    color: black;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-logo {
      width: 100vw;  /* 80% del ancho de la ventana */
      max-width: 600px; /* opcional, un límite máximo grande */
      height: auto;  /* para que conserve la proporción */
    }
  }
  
  
  
  


/* Sección estilo VV */
.intro-section {
    padding: 4rem 2rem;
    background-color: #fcf9f3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .intro-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .intro-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #444;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
  }
  
  .intro-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: #e6a556;
    margin-bottom: 2rem;
  }
  
  .intro-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
    text-align: center; 
  }
  


/* Cuadros foto y texto */
.about-section {
    background-color: #fcf9f3;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
  }
  
  .about-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap; /* Para soporte responsivo */
  }
  
  /* Texto */
  .about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fcf9f3;
    border: 2px solid #f0d7b5;
    padding: 3rem 2rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #666;
    min-height: 550px; /* Asegura misma altura que imagen */
  }
  
  /* Subtítulo */
  .about-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #444;
    display: block;
    margin-bottom: 1rem;
  }
  
  /* Título */
  .about-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: #e6a556;
    margin-bottom: 2rem;
  }
  
  /* Párrafos */
  .about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.2rem;
  }
  
  /* Botón */
  .about-button {
    display: inline-block;
    background-color: #e6a556;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: auto; /* Opcional: empuja el botón abajo si hay poco texto */
  }

  .about-button:hover {
    background-color: #b67e3a;
  }
  
  /* Imagen */
  .about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px; /* Coincide con .about-text */
    overflow: hidden;
    background-color: #fff;
    border: 2px solid #f0d7b5;
  }
  
  /* Imagen interna */
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
  
    .about-text,
    .about-image {
      min-height: auto;
      height: auto;
    }
  }

  /* Tira con imagen */

  .reservas-section {
    position: relative;
    background-image: url('img/fotoHero.jpeg'); /* Reemplaza por tu imagen */
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .reservas-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Capa opaca negra */
    padding: 2rem;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .reservas-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }
  
  .reservas-subtext {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
  }
  
  .reservas-button {
    background-color: #e6a556;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .reservas-button:hover {
    background-color: #b67e3a;
  }

  /* Footer */

  .site-footer {
    background-color: #fcf9f3;
    border-top: 2px solid #f0d7b5;
    padding: 3rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
    color: #444;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e6a556;
    font-family: 'DM Serif Display', serif;
  }
  
  .footer-column p,
  .footer-column li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #e6a556;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
  }

  /* Sobre Nosotros Section */
    .about-icons-section {
        background-color: #fcf9f3;
        padding: 8rem 2rem 4rem; /* espacio desde arriba para evitar el navbar fijo */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
  
  .about-icons-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: #e6a556;
    margin-bottom: 1rem;
  }
  
  .about-icons-subtext {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
  }
  
  .about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .feature {
    background-color: #fff;
    border: 2px solid #f0d7b5;
    border-radius: 12px;
    padding: 2rem;
    max-width: 300px;
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s;
  }
  
  .feature:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e6a556;
  }
  
  .feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e6a556;
  }

  /* Tiras texto y imagen*/
.about-strips {
    background-color: #fcf9f3;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  
  .strip {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fcf9f3;
    border: 2px solid #f0d7b5;
    border-radius: 0px;
    overflow: hidden;
  }
  
  .strip-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: 400px; /* altura fija */
    overflow: hidden;
    border-radius: 0px 0 0 0px; /* bordes redondeados solo en una esquina */
    background-color: #fcf9f3; /* color de fondo para evitar espacios vacíos */
  }
  
  .strip.reverse .strip-image {
    border-radius: 0 0px 0px 0; /* bordes en la otra esquina si está invertido */
  }
  
  .strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* la imagen cubre el contenedor recortando si es necesario */
    display: block;
  }
  
  .strip-text {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color: #666;
    text-align: left;
  }
  
  .strip-text h3 {
    font-size: 2rem;
    font-family: 'DM Serif Display', serif;
    color: #e6a556;
    margin-bottom: 1rem;
  }
  
  .strip-text p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .strip {
      flex-direction: column;
      padding: 1rem; /* ← este es el cambio que necesitas */
    }
  
    .strip.reverse {
      flex-direction: column;
    }
  
    .strip-text {
      text-align: center;
    }
  }
  


  /* Info contacto */

  .contact-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #444;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: #e6a556;
  margin-bottom: 2rem;
}

.contact-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-image img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #f0d7b5;
  background-color: #fff;
}

.contact-info {
  flex: 1 1 300px;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  color: #666;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info strong {
  color: #444;
}

.social-icons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}

.social-icons a svg {
  transition: fill 0.3s ease;
  cursor: pointer;
  filter: grayscale(100%);
}

.social-icons a:hover svg {
  filter: none;
  fill: #b67e3a; /* tono más oscuro dorado en hover */
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

/* FAQ */
.faq-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
    font-family: 'Inter', sans-serif;
    color: #444;
    background-color: #fcf9f3;
  }
  
  .faq-section h2 {
    text-align: center;
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e6a556;
  }
  
  .faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid #f0d7b5;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    position: relative;
    color: #e6a556;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
  }
  
  .faq-question:hover {
    background-color: #fcf4e3;
  }
  
  .faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #b67e3a;
    transition: transform 0.3s ease;
  }
  
  .faq-question.active::after {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #fafafa;
    padding: 0 1.5rem;
  }
  
  .faq-answer p {
    margin: 1rem 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
  }
  
  .faq-question.active + .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
  }

  .covermanager-section {
    width: 60%;
    height: 30%;
    margin: 0 auto;
  }  
  
  /* Trabaja con nosotros */
  .trabaja-con-nosotros-section {
    padding: 60px 20px;
    background-color: #fcf4e3;
    color: #222;
  }
  
  .trabaja-con-nosotros-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .trabaja-texto {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
  }
  
  .trabaja-texto h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .trabaja-texto p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .trabaja-texto a {
    display: inline-block;
    background-color: #e6a556;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .trabaja-texto a:hover {
    background-color: #b67e3a;
  }
  
  .trabaja-imagen {
    flex: 1;
    max-width: 500px;
  }
  
  .trabaja-imagen img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* 📱 Responsive para móviles */
  @media (max-width: 768px) {
    .trabaja-con-nosotros-content {
      flex-direction: column;
      text-align: center;
    }
  
    .trabaja-texto {
      text-align: center;
    }
  
    .trabaja-texto h2 {
      font-size: 2rem;
    }
  
    .trabaja-texto p {
      font-size: 1rem;
    }
  
    .trabaja-imagen {
      max-width: 90%;
    }
  }


/* Contenedor del iframe COVERMANAGER */

.reserva-section {
    width: 100vw;
    height: 40vh; /* Por defecto, menos altura en escritorio */
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  .reserva-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  
  /* Para móviles: aumentar la altura del iframe */
  @media (max-width: 768px) {
    .reserva-section {
      height: 60vh;
    }
  }



/* Sección galería */
  .gallery-section {
    padding: 5rem 2rem;
    background-color: #fcf9f3;
    text-align: center;
  }
  
  .gallery-section h2 {
    font-size: 2.5rem;
    font-family: 'DM Serif Display', serif;
    color: #e6a556;
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3; 
    border: 2px solid #f0d7b5;
  }
  .gallery-section h2 {
    margin-top: 2rem; /* Ajusta según lo que necesites */
  }



/* Reseñas */
  .reviews-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff8ef;
    color: #333;
  }
  
  .reviews-section h2 {
    font-size: 2.2rem;
    font-family: 'DM Serif Display', serif;
    color: #e6a556;
    margin-bottom: 1rem;
  }
  
  .reviews-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
  }
  
  .review-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .review-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    background-color: #fff;
    border: 2px solid #f0d7b5;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .review-btn img {
    height: 24px;
  }
  
  .review-btn:hover {
    background-color: #f0d7b5;
    color: #fff;
  }
  
  .review-btn.google:hover {
    background-color: #7da7ec;
  }
  
  .review-btn.tripadvisor:hover {
    background-color: #94e0c4;
  }
  



















  
  
  
  