@import url('https://fonts.googleapis.com/css?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css?family=Patua+One&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

/* body {
    background: url("../images/bg.png") repeat;
    background-size: contain;
} */

.interior-body-content {
    padding: 20px 0;
}

.interior-body-content a {
    color: #e3944c;
}

.interior-body-content img {
    margin: 10px 0;
}

h2 {
    margin: 0;
}

.clear {
    clear: both;
}

.interior-image {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0,0,0,0.5)),
        url('../images/02-Ocean-View-SBBC.jpg') no-repeat center;
    background-size: cover;
    padding: 150px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#main-content__container {
    padding: 50px 70px;
}

.interior-image h2 {
    margin: 0;
    color: #fff;
}

.btn-container {
    margin: 50px 0;
}

.btn-container a {
    text-decoration: none;
    color: white;
    background-color: black;
    padding: 10px 30px;
}

#section__container {
    padding: 70px 20px;
}

img {
    max-width: 100%;
}

p {
    font-size: 1rem;
    line-height: 2;
}

* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* NAV */

.header-bar {
    background-color: #000000;
    padding: 10px;
}

.header-bar a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

@media screen and (min-width: 1087px) {
    .header-bar a {
        display: none;
    }

    div.header-bar {
        height: 10px;
    }
}

header {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    position: absolute;
    left: 0;
    right: 0;
}

.header-cta strong {
    background-color: #e3944c;
    padding: 20px 40px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 2px 1px 13px black;
}

a.logo,
.header-cta {
    flex: 25%;
    color: #fff;
    text-decoration: none;
}

nav {
    flex: 50%;
    color: #fff;
    text-transform: uppercase;
}

nav ul li {
    display: inline-block;
    padding: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.img-slide {
    width: 90%;
    margin-top: -8%;
    z-index: 5;
    margin-left: 10%;
}

@media screen and (min-width: 768px) {
    .nav-mobile {
        display: none;
    }
}

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

    .nav-mobile {
        position: relative;
        z-index: 1000;
        cursor: pointer;
        text-align: right;
        margin: 0 30px;
    }

    .header-cta strong {
        display: none;
    }

    nav{
        transition: all .2s ease-in-out;
        width: 0%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        overflow: hidden;
        height: 100vh;
    }

    .open{
        background-color: black;
        width: 70%;
        transition: all .3s ease-in-out;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        display: block;
        height: 100vh;
    }

    .open ul {
        margin-top: 150px;
    }

    .open li {
        display: block;
        margin: 25px 0;
    }

    nav li {
        display: block;
        margin: 20px 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

    nav ul {
        margin-top: 50px;
    }
}

/* HERO */

#hero__container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0, 0.3), rgba(0,0,0, 0)), 
        url("../images/homeview.jpg") no-repeat center;
        background-size: cover;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    color: #fff;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.hero-content p {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1.2px;
}

@media screen and (max-width: 768px){
    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-content p {
        font-size: 16px;
    }
}


/* INTRO */

.intro-content {
    text-align: center;
}


@media screen and (min-width: 768px) {
    .intro-content {
        width: 500px;
        margin: 0 auto;
    }
}


/* CAROUSEL */

.carousel-inner {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        url('../images/02-Ocean-View-SBBC.jpg') no-repeat center;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .carousel-inner {
        background-attachment: fixed;
    }
}

.carousel-flex {
    display: flex;
}

.carousel-one,
.carousel-two,
.carousel-three {
    flex: 1;
    margin: 10px;
    height: auto;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    text-decoration: none;
    color: black;
    transition: background .2s ease-in-out;
}

.carousel-one p,
.carousel-two p,
.carousel-three li{
    color: #505050;
}

.carousel-one:hover {
    background-color: rgba(227, 148, 76, 0.7);
    transition: background .2s ease-in-out;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    -moz-transition: background .2s ease-in-out;
    -ms-transition: background .2s ease-in-out;
}

.carousel-two:hover {
    background-color: rgba(227, 148, 76, 0.7);
    transition: background .2s ease-in-out;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    -moz-transition: background .2s ease-in-out;
    -ms-transition: background .2s ease-in-out;
}

.carousel-three:hover {
    background-color: rgba(227, 148, 76, 0.7);
    transition: background .2s ease-in-out;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    -moz-transition: background .2s ease-in-out;
    -ms-transition: background .2s ease-in-out;
}

.carousel-one p,
.carousel-two p,
.carousel-three li {
    font-size: 16px;
    margin: 5px 0;
}

/* ABOUT */

.about-flex {
    display: flex;
}

.about-content,
.about-img {
    flex: 50%;
}

.about-img {
    text-align: center;
}

.about-img img {
    box-shadow: 17px 16px #ebdccc;
}

/* FOOTER */

footer {
    background: linear-gradient(rgba(255, 255, 255),rgba(255, 255, 255, 0.2)),
        url("../images/homeview.jpg") no-repeat center;
    background-size: cover;
}

.footer-inner a {
    text-decoration: none;
    color: #000000;
    transition: color .2s ease-in-out;
}

.footer-inner p {
    font-size: 21px;
}

footer a:hover {
    color: #e3944c;
    transition: color .2s ease-in-out;
}
@media screen and (min-width: 768px){
    .footer-bottom {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .footer-inner p {
        font-size: 18px;
    }
}

.footer-bottom p {
    font-size: 14px;
}

.designer,
.center-footer {
    flex: 1;
    text-align: center;
    font-weight: 800;
}


/* ABOUT PAGE */

.about-main-img {
    background: url('../images/zoi-palla-h43_iDwGLJA-unsplash.jpg') no-repeat center;
    background-size: cover;
    width: 100%;
    height: 40vh;
    margin: 50px 0;
}

@media screen and (max-width: 768px){
    .about-flex {
        flex-direction: column;
    }

    .carousel-one,
    .carousel-two,
    .carousel-three,
    .carousel-four {
        display: block;
        height: 20rem;
    }

    .carousel-flex {
        display: block;
    }
}

/* Testimonial Page*/


.testimonial-list-container {
    padding: 10px 20px;
}

.testimonial-list-container p {
    font-size: 1em;
}

.testimonial-list-container:nth-child(odd) {
    background-color: #f6f6f6;
}

/* PHOTOS PAGE */

.main-photo-container {
    text-align: center;
}

.photo-container img {
    box-shadow: 0px 4px 6px 0px #7a7a7a;;
}

/* LIGHTBOX */
.modal {
    position: fixed;
    z-index: 1;
    padding: 10px 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 1);
    display: none;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    padding: 0;
    max-width: 1200px;
}

.slide {
    display: none;
}

.image-slide {
    width: 100%;
}

.modal-preview {
    width: 100%;
}

.dots {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

img.preview, img.modal-preview {
    cursor: pointer;
  }
  
  img.active,
  .preview:hover,
  .modal-preview:hover {
    opacity: 1;
  }

  .photo-container img:hover {
      cursor: pointer;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  } 
  
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .previous,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: black;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .previous:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
@media screen and (min-width: 768px){
  .photo-container {
    display: inline-block;
    width: 45%;
    margin: 10px;
}
}

@media screen and (max-width:768px){
    .modal-content {
        top: 25%;
    }
}


@media screen and (max-width: 768px){
    .photo-container {
        margin: 10px;
    }
}

/* Small (sm) */
@media (min-width: 640px) {
    #section__container {
        max-width: 640px;
        margin: 0 auto;
        padding: 25px 20px;
    }

    
}

/* Medium (md) */
@media (min-width: 768px)  {
    #section__container {
        max-width: 768px;
        margin: 0 auto;
        padding: 25px 20px;
    }

    .about-content-inner {
        width: 500px;
    }
}


/* Large (lg) */
@media (min-width: 1024px)  {
    #section__container {
        max-width: 1024px;
        margin: 0 auto;
        padding: 25px 20px;
    }
}


/* Extra Large (xl) */
@media (min-width: 1280px)  {
    #section__container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 25px 20px;
    }
}

