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

/* ---- Fondo principal ---- */
body {
  background: url("../img/bgdesktop-golf.png") center center / cover no-repeat;
  height: 100vh;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #38452C;
}

/* ---- Contenedor general ---- */
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 4vh 4vw;
}

/* ---- Secciones ---- */
.section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.section.top {
  margin-top: 6vh;
}

.section.middle {
  width: 100%;
  margin-top: 15vh;
}

.section.bottom {
  margin-bottom: 6vh;
  width: 100%;
}

/* ---- Imágenes ---- */
.logo {
  width: 45vw;
  /*max-width: 80%;*/
}

.fecha {
  width: 50vw;
  /*max-width: 90%;*/
}

.direccion {
  width: 500px;
  max-width: 80%;
}

/* ---- Botón ---- */
.boton {
  display: inline-block;
  border: 5px solid #FFF;
  color: white;
  font-weight: 900;
  font-size: 2.7vh;
  padding: 2vh 4vw;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.boton:hover {
  -webkit-transform:scale(0.9);
  transform:scale(0.9);
  transition: 0.3s;
  outline-color: rgba(49, 138, 172, 0);
  outline-offset: 80px;
  text-shadow: 1px 1px 6px #fff;
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {

  body {
    background: url("../img/bgmobile-golf.png") center center / cover no-repeat;
  }

  .container {
    padding: 6vh 4vw;
  }

  .logo {
    width: 90vw;
  }

  .fecha {
    width: 100%;
    margin-bottom: 6vh;
  }

  .direccion {
    width: 90vw;
  }

  .boton {
    padding: 14px 36px;
  }
  .section.bottom {
    display: block;
    flex-direction: column;
  }


}


