/*
 * Globals
 */
:root {
    --dark-background: #333;
}

h1 {
  font-size: 2.5rem;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */
 @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  font-family: 'Dancing Script', cursive;
  /* box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5); */
}
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap');
body p, #footer{
  font-family: 'Jost', sans-serif;
}

/* 
* hero
*/
#hero {
    background-image: url("img/pareja-feliz-posando-al-aire-libre-ciudad-anillo-compromiso.jpg");
    background-position:center;
    background-size: cover;
    background-repeat: no-repeat;
    color:white;
    margin-bottom: 2rem;
}


.hero-conainer{
    height: 100vh;
    overflow: hidden;
}

#hero::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 95vh;
    top: 0;
    left: 0;
    background:linear-gradient(to bottom,rgba(2,0,36,0) 0%,rgba(2,0,36,0) 60%, rgba(2,0,36,1) 100%);
    opacity: 0.3;
    z-index: 1;
}

@media (min-width: 992px) {
  #hero::before {
    background:linear-gradient(to bottom,rgba(2,0,36,0) 0%,rgba(2,0,36,0) 60%, rgba(2,0,36,1) 100%);
    height: 100vh;
  }
  #hero {
    background-position:50% 40%;
}
}




#hero h2 {
  font-size: 3rem;
  margin: 0;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .8);
}
#hero h1 {
  font-size: 4rem;
  margin: 0;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .8);
}



.cover-container {
    position: relative;
    max-width: 42em;
    text-align: center;
    justify-content: end;
    z-index: 2;
  }
/*
 * Header
 */

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

/* 
*Mapa
 */

.maps {
  height: 300px;
}
@media (min-width: 992px) {
  .maps {
    max-width: 100%;
    height: 400px;
  }

}


/* 
*footer
 */

 #footer {
    background-color: var(--dark-background);
 }
 
  .custom-hr {
  width: 100%;
  border: none;
  height: 5px;
  background-color: white;
  
  margin: 0 auto; /* Esto centrará el hr horizontalmente */
}