*{
    font-family: 'Times New Roman', sans-serif;
    font-size: 20px;
    color: #fefbfb;
}
html, body{
    margin: 0;
    height: 100vh;
    text-align: center;
}
body {
  margin: 0;
  background: url("./img/foto1bckground.jpg") no-repeat center/cover fixed;
  background-size: 80%
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.3); /* medio transparente */
  z-index: -1;
}
/*.header{
    background-image: url(./img/hero.jpeg);
    background-repeat: no-repeat;
    background-position: 50% 60%;
    background-attachment: scroll;
    background-size: cover;
    height: 40vh;
    margin: 0;
    padding-top: 60vh;
}*/
.header {
  height: 40vh;
  background-size: cover;
  background-position: 50% 60%;
  animation: carrusel 15s infinite ease-in-out;
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding-top: 60vh;
  margin: 0;
}

/* Animación del carrusel */
@keyframes carrusel {
  0%   { background-image: url("./img/foto3.jpg"); }
  33%  { background-image: url("./img/foto1.jpg"); }
  66%  { background-image: url("./img/foto4.jpg"); }
  100% { background-image: url("./img/foto2.jpg"); }
}
.heading {
    color: #ffffff;
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 6em;
    font-weight: normal;
    text-shadow: 0 0 10px #000;
}
.heading-subtext{
    color: #fff;
    display: block;
    font-family: 'Caveat', cursive;
    font-size: .6em;
}
.fixed-button{
    background: rgba(20,20,20,.5);
    border-radius: 1em;
    bottom: 1em;
    color: white;
    font-weight: bold;
    padding: 1em;
    position: fixed;
    right: 1em;
    text-decoration: none;
    z-index: 9999;
}
.fixed-button::after{
    content: "\25BE";
    display: block;
    font-size: 28px;
    line-height: 0;
    margin-bottom: 6px;
    margin-top: 10px;
    text-align: center;
}
.fixed-button:active,
.fixed-button:hover{
    background: rgba(20,20,20,.9);
}
.section{
    margin: 0 auto;
    max-width: 600px;
    padding: 1em 2.4em;
}
.sub-heading{
    font-family: 'Caveat', cursive;
    font-size: 3em;
    margin-top: 2em;
}
.foot-er{
    font-family: 'Caveat', cursive;
    font-size: 1em;
    margin-top: 0%;
    color: #fffdfd;
}
.details{
    margin: 0 auto 8em;
}
.details-heading{
    font-weight: bold;
    text-transform: uppercase;
}
.fas {
    font-size: 3em;
    opacity: .8;
}
.resort-image{
    width: 100%
}
.footer {
  background-color: #191616f5;   /* Fondo oscuro elegante */
  color: #ffffff;              /* Texto blanco */
  text-align: center;       /* Centrar texto */
  padding: 20px 10px;       /* Espaciado interno */
  font-size: 1.2rem;        /* Tamaño de letra */
  font-family: 'Caveat', Tahoma, Cursive, Verdana, sans-serif;
  letter-spacing: 1px;      /* Espacio entre letras */
}

.footer p {
  margin: 0; /* Quitar márgenes por defecto */
}

@media only screen and (max-width: 600px) {
    .heading {
        font-size: 4em;
    }
  }