/* ESTRUCTURA GENERAL */
html, 
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;

  background-image: url("otroman.jpeg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  /* opcional, para suavizar la lectura de texto */
  background-attachment: fixed; /* hace que el fondo quede fijo */
}


/* SECCIONES */
.section-block {
    padding: 3rem 2rem;
    text-align: center;
    background: none;
    background-color:none;
}

/* FOOTER */
.footer-block {
    background-color: #333;
    color: white;
    padding: 2rem;
}

.social-icon {
    width: 40px;
    margin: 0 10px;
}

/* TOP BAR */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  z-index: 100;
}

/* Contenedor interno centrado */
.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* TOP RIGHT + WHATSAPP */
.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-right span {
    font-size: 0.9rem;
}

/* WHATSAPP INLINE */
.whatsapp-inline img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.whatsapp-inline img:hover {
    transform: scale(1.15);
}

/* MENU */
.main-menu {
    display: flex;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    position: absolute;
    width: 100%;
    top: 55px;
    z-index: 9;
}

.main-menu a {
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.main-menu a:hover {
    background: rgba(255,255,255,0.1);
}

/* Airbnb */
.airbnb-section {
    padding: 60px 20px;
    text-align: center;
}

.airbnb-section h2 {
    margin-bottom: 30px;
    font-size: 32px;
    color: white;
}

.airbnb-card {
    max-width: 600px;
    margin: auto;
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.airbnb-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.airbnb-info {
    padding: 25px;
}

.airbnb-info h3 {
    margin-bottom: 10px;
}

.airbnb-info p {
    color: #555;
}

.airbnb-btn {
    display: inline-block;
    margin-top: 18px;
    background: #FF5A5F;
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.airbnb-btn:hover {
    background: #e0484d;
}

.location-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.location-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
     body {
        background-attachment: scroll; /* en móviles ya no es fijo */
        background-position: center top; /* opcional: ajusta la parte visible */
    }
    .main-menu {
        padding: 0 12px;   /* espacio a los lados */
        box-sizing: border-box;
    }

    .main-menu a {
        padding: 12px 14px; /* reduce un poco el ancho del botón */
        font-size: 0.85rem;
    }
}
    .header-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-right {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
    }

    .main-menu {
        top: 95px; /* antes estaba muy alto */
    }


