@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');


/* GENERAL ----------------------------------------- */

:root {
  --brand: #00BBCC;
  --dark: #092032;
  --body: #516171;
  --text-secnodary: #032014;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);

}

html {

  scroll-padding-top: 80px;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--body);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--dark);
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img {
  width: 100%;
}

a {
  color: var(--dark);
  transition: all 0.4s ease;
  font-weight: 500;
}

a:hover {
  color: var(--brand);
}

section {
  padding-top: 80px;
  padding-bottom: 80px;

}

section #home {
  padding-top: 0px;
  padding-bottom: 80px;

}

.text-brand {
  color: var(--brand) !important;
}


.btn {
  padding: 8px 26px;
}

.btn-brand {
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 900;
  font-size: 1rem;
  border-width: 1px;
}

.btn-brand:hover {
  border-color: var(--brand);
  background-color: var(--brand);
  color: #fff;
}


/* NAVBAR ----------------------------------------- */

.navbar {
  background: #000;
  transition: all .6s;
  backface-visibility: hidden;
  height: 88px;
}

.navbar-brand {
  font-size: 1.8em;
}

.offcanvas-body {

  padding: 1rem;
}

.nav-link {
  font-size: 1.5em;
  letter-spacing: 2px;
  color: var(--dark);
}

.nav-link:hover {
  color: var(--brand);
}

.nav-link.active {
  color: #fff;
}

.nav-item:not(:last-child) {
  border-bottom: 1px solid gray;
  padding: 0.2em 2em;
}

@media screen and (max-width: 768px) {
  .nav-item:not(:last-child) {
    padding: 0.5em 2em;
  }
}

.navbar-collapse.show {
  transition: all 0.6s;
}


.offcanvas,
.offcanvas-xxl,
.offcanvas-xl,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 3rem;
  --bs-offcanvas-padding-y: 2rem;
  --bs-offcanvas-color: gray;
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 6px;
  --bs-offcanvas-border-color: var(--brand);
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);

}


.airbnb {
  align-items: center;
  color: #fff;
  background-color: #fd5c63;
  border: 1px solid #fd5c63;
  
}

.airbnb:hover {
  align-items: center;
  color: #fd5c63;
  background-color: #fff;
  border-color:#fd5c63;
  border: 1px solid #fd5c63;

  
}


/* FEATURE ----------------------------------------- */

#rooms, #appliances{

  background-color: var(--brand);

}

#features{

  background-color: #fff;

}

#features h1, h2{
  
  color: var(--text-secondary);
  text-transform: uppercase;

}

#features .text{
  
  color: var(--text-secondary);
  font-weight: 500;

}



@media screen and (max-width: 480px) {


  #rooms .card-body, #appliances .card-body, #features .card-body, #appliances .card-body {

    padding: 10px;
    
    }

    #room .card-title, #appliances .card-title, #features .card-title, #appliances .card-title {

    font-size: 0.85rem;
    text-align: center;
    
    }
}




/* FOOTER ----------------------------------------- */

.site-footer {
  padding-top: 2em;
  background: var(--brand);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 2em 0;
  }
}

.site-footer p {
  color: #737373;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5 {
  color: #fff;
}

.site-footer a {
  color: black;
}

.site-footer a:hover {
  color: white;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer .footer-heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}

.site-footer .footer-heading:before {
  content: "";
  background: #fff;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0;
}

/* ### ----------------------------------------- */

.carousel-caption {
  position: absolute;
  right: 10%;
  bottom: 1rem;
  left: 10%;
  top: 40%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #fff;
}

.carousel-caption h5 {

  text-align: start;
  vertical-align: middle;
  background-color: var(--brand);

}


.carousel-caption p {

  text-align: start;
  vertical-align: middle;

}

.display-3 {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 480px) {

  .carousel-caption {
    position: absolute;
    right: 10%;
    bottom: 1.25rem;
    left: 10%;
    top: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
  }

  .carousel-caption h5 {

    text-align: start;
    font-size: 1.2rem;
    vertical-align: middle;
    background-color: var(--brand);

  }

  .carousel-caption p {

    font-weight: 800;
    font-size: 1rem;
    text-align: start;
    vertical-align: middle;
  
  }

  .display-3 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
  }

}



