@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
:root {
    --azul: #336699;
    --blanco: #ffffff;
    --rojo: #ff0000;
    
}
body {
  background-color: var(--blanco);
  color: #516171;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  color: #092032;
  font-weight: 700;
}

/* Top Bar */
.top-nav {
  background-color: var(--rojo);
  color: var(--blanco);
  font-size: 1.125rem;
}
.top-nav a{
  color: var(--blanco);
  text-decoration: none;
}

/* Navbar */
.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
}
.voley {
  color: var(--rojo);
}
.salon {
  color: var(--azul);
}
.navbar {
  box-shadow: 0 .5rem .5rem rgba(0, 0, 0, .1);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .1rem;
}
.nav-item {
  padding: .5rem;
}
.nav-link.active, 
.nav-link:hover {
  color: var(--rojo);
}

/* Carousel */
#carousel {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, .1);
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  transition: 1.2s ease;
}
.carousel-caption {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  text-transform: uppercase;
}
.bg-custom {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}
.carousel-caption h1 {
  font-size: 3.8rem;
  text-shadow: .1rem .1rem .3rem rgba(255, 255, 255, .9);
}
.carousel-caption h3 {
  font-size: 2.2rem;
  text-shadow: .1rem .1rem .2rem rgba(0, 0, 0, 1);
}

/* Fixed Background Img */
.fixed-background {
  padding-top: 200px;
  padding-bottom: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
  background-image: url(../imgs/voleysalon-1.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Footer */
footer {
  background-color: #383838;
  padding: 1rem 2rem 3rem;
}
footer img {
  height: 15rem;
  margin: 1rem;
}
footer p, footer a, .socket a {
  color: var(--blanco);
  text-decoration: none;
}

ul.social {
  list-style-type: none;
  display: flex;
  max-width: 16rem;
  margin: 0 auto;
  padding: 0;
}
ul.social li {
  margin: 0 auto;
}
footer .fa-brands {
  font-size: 2.3rem;
}
footer .fa-brands:hover {
  color: var(--azul);
}

.socket {
  background-color: var(--azul);
  border-top: .1rem solid var(--blanco);
}
