/* Importar tipografías (no necesitas tocar el HTML) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@400;600;700&display=swap');

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

/* Tipografía moderna */
body {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #fdfdfd;
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: auto;
}

/* Encabezados */
h1, h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #005f73;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #0a9396;
}

h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  border-left: 4px solid #94d2bd;
  padding-left: 0.6rem;
}

/* Párrafos */
p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #444;
}

/* Enlaces */
a {
  color: #0a9396;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

a:hover {
  color: #005f73;
  text-decoration: underline;
}

/* Botón estilo CTA */
.btn {
  display: inline-block;
  background: #ee9b00;
  color: white !important;
  padding: 0.8rem 1.4rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #ca6702;
  transform: translateY(-2px);
}

/* Estilo general de secciones */
body > h2, body > p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Sutil sombreado para destacar secciones */
section, h2 {
  scroll-margin-top: 2rem;
}


/* HEADER + NAV */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a9396;
  padding: 1rem 2rem;
  border-radius: 0 0 1rem 1rem;
  margin-bottom: 2rem;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: "Montserrat", sans-serif;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

nav ul li a:hover {
  opacity: 0.7;
}

/* Para que el header se mantenga fijo */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Special button style for booking link in nav */
nav ul li a.book-now {
    background-color: #ff6b35; /* bright accent color */
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: .80em;
}

nav ul li a.book-now:hover {
    background-color: #ff3b00; /* slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}