body {
    font-family: 'Black Ops One', cursive;
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    overflow-x:hidden;
    overflow-y:hidden;
}

main {
    scroll-behavior: smooth;
    background-color: #ffff;
    height: calc(100vh + 5px);
    width: 100%;
    margin: 0;
    overflow-y: auto;
}

.hero-img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/hero.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.hero-text h1 {
    font-size: 60px;
}

.hero-text button {
    background: none;
    border: solid;
    border-radius: 15px;
    color: #ffff;
    padding: 10px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.3)
}

.hero-text button:hover {
    color: rgb(71, 99, 73);
    cursor: pointer;
    text-decoration: underline rgb(71, 99, 73);
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.reserved {
    text-decoration: line-through;
}

.section-offer, .section-gallery, .section-localization, .section-contact, .section-faq {
    background-color: rgba(0, 0, 0, 0.9);
    padding-bottom: 5vw;
    color: #ffff;
}

/*OFFER SECTION*/

.grid-container {
    padding-left: 10vh;
    padding-right: 10vh;
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    grid-template-rows: 1fr 1fr 1fr; 
    gap: 0px 0px; 
    grid-template-areas: 
        "icon1 description1 description1"
        "icon2 description2 description2"
        "icon3 description3 description3"
        "icon4 description4 description4"
        "icon5 description5 description5"; 
}

.icon1 {
    grid-area: icon1; 
}

.icon2 {
    grid-area: icon2; 
}

.icon3 {
    grid-area: icon3; 
}

.icon4 {
    grid-area: icon4; 
}

.icon5 {
    grid-area: icon5; 
}

.icon1, .icon2, .icon3, .icon4, .icon5 { 
    justify-self: end;
    align-self:center;
    padding-right: 30px;
    padding-bottom: 30px;
    margin-top: 50px;
}

.icon1 img, .icon2 img, .icon3 img, .icon4 img, .icon5 img{
    width: 8vw;
    height: 8vw;
}

.description1 { 
    grid-area: description1;
    align-self: center;   
}

.description2 { 
    grid-area: description2;
    align-self: center;   
}

.description3 { 
    grid-area: description3;
    align-self: center;   
}

.description4 { 
    grid-area: description4;
    align-self: center;   
}

.description5 { 
    grid-area: description5;
    align-self: center;   
}

.description1 p, .description2 p, .description3 p, .description4 p, .description5 p {
    width: 30vw;
}

.section-img-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/section-space-1.jpg);
}

.section-img-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/section-space-2.jpg);
}

.section-img-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/section-space-3.jpg);
}

.section-img-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/section-space-4.jpg);
}

.section-img-5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/section-space-5.jpg);
}

.section-img-1, .section-img-2, .section-img-3, .section-img-4, .section-img-5 {
    height: 15vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.section-dates {
    background-color: rgba(0, 0, 0, 0.9);
    padding-bottom: 40px;
} 

.section-title {
    text-align: center;
    font-size: 45px;
    margin-top: 0;
    padding-top: 30px;
    color: #ffff;
    text-decoration: underline rgb(71, 99, 73);
}

/*DATES&TERMS SECTION*/

.dates-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.dates-card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.03);
    transition: 0.3s;
    margin: 2vw;
    padding-top: 2vw;
    background-color: rgba(57, 74, 58, 1);
    background-image: linear-gradient(rgba(57, 74, 58, 1), rgba(255, 255, 255, 0.2));
    height: auto;
    width: 20vw;
  }
  

.dates-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    transform: scale(1.2);
  }
  
.dates-container {
    padding: 2px 16px;
    color: #ffff;
    text-align: center;
  }

.dates-card h3 {
    font-size: 40px;
    text-align: center;
    margin: 10px 15px 10px 15px;
    color: #ffff;
}

.dates-card h4 {
    background-color: rgb(25, 25, 25, 1);
    padding: 5px 0 5px 0;
    width: 100%;
    margin: 0;
    color: #ffff;
    text-align: center;

}

.dates-container li, ul {
    font-size: 30px;
    list-style: none;
    padding: 0;
}

#additional-info {
    font-size: 12px;
    margin-top: 50px;
  }

/*GALLERY SECTION*/
.gallery-wrapper {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin: 72px 5% 0 5%;
  }

.gallery-item {
    position: relative;
    margin: 0;
    flex: 0 0 25%;
    max-width: 25%;
    height: 25vw;
    text-align: center;
    
  }

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    border: solid 2px rgb(71, 99, 73);
  }

.gallery-item img:hover {
      filter: grayscale(0);
  }

.gallery-item:before {
    position: absolute;
    display: none;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5
  }

.gallery-item figcaption {
    position: absolute;
    display: block;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }

video {
    width: 35vw;
    height: auto;
  }

.videos {
    padding-top: 3vw;
}

.gallery-item:hover:before, .gallery-item:hover figcaption {
    display: none;
  }

/* FAQ SECTION */
details {
    font-size: 20px;
    cursor: pointer;
}
details p {
    padding: 0 12vw 2vw 12vw;
    margin: 0;
}

summary {
    margin: 0 5vw 0 5vw;
    padding-bottom: 1vw;
    color: rgb(71, 99, 73);
    font-size: 30px;
}

/*MAP SECTION*/
.map-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/*CONTACT SECTION*/
.contact {
    padding-left: 20%;
}

.contact-item p {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    font-size: 30px;
    margin: 0;
}

.contact-item a {
    color: #ffff;
    font-size: 22px;
    text-decoration: none;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);;

}

.contact-item img {
    width: 15vw;
    padding: 2vw;


}

.map {
    width: 80vw;
}

/*SIDE NAVBAR*/

nav {
    background-color: rgba(0, 0, 0, 0.9);
    border-right: solid 2px rgb(71, 99, 73);
    color: #ffff;
    padding: 5px 5px 0 5px;
    height: 100vh;
    width: auto;
}

.wrapper {
    display: flex;
    flex-direction: row-reverse;
}

.wrapper-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding-left: 15%;
}

.menu-logo {
    width: 250px;
    padding: 15px 10px 15px 10px;
}

.menu {
    padding-left: 20%;
}

.menu-button-top {
    padding-top: 20px;
}

.menu-button, .menu-button-top {
    background: none;
    border: none;
    color: #ffff;
    margin: 0;
    padding-bottom: 20px;
    font-size: 25px;
    font-family: 'Black Ops One', cursive;
}

.menu-button a, .menu-button-top a {
    color: #ffff;
    text-decoration: none;
}

.menu-button:hover, .menu-button-top:hover {
    transform: scale(1.2);
}

.menu-button a:hover, .menu-button-top a:hover {
    color: rgb(71, 99, 73);
    transform: scale(1.2);
    cursor: pointer;
}

.footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgb(0, 0, 0);
}

.footer p {
    text-align: center;
    color: darkgrey;
}

.footer a, .footer a:visited {
    color: darkgrey;
    text-decoration: none;
}

.footer a:hover {
    color: rgb(71, 99, 73);
    text-decoration: none;
}

@media (max-width: 1280px) { 

    .dates-card h3 {
        font-size: 20px;
    }

    .dates-container li {
        font-size: 15px;
        padding: 0;
    }

    .dates-card {
        width: 40vw;
    }

    .navbar{
        display:none;
    }

    video {
        padding-top: 3vw;
        width: 45vw;
    }
}

@media (max-width: 768px) { 
    .dates-card h3 {
        font-size: 18px;
    }
    .dates-container {
        padding: 0;
    }

    #additional-info {
        font-size: 8px;
    }

    .dates-card {
        width: 40vw;
    }

    .navbar{
        display:none;
    }

    video {
        padding-top: 3vw;
        width: 45vw;
    }
}

@media (max-width: 425px) { 
    .navbar{
        display:none;
    }

    .section-title {
        font-size: 30px;
    }

    .grid-container {
        font-size: 10px;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .grid-container p {
        width: 45vw;
    }

    .grid-container img {
        width: 15vw;
        height: 15vw;
    }

    .dates-card h3 {
        font-size: 12px;
    }
    .dates-container {
        padding: 0;
    }

    .dates-card {
        width: 40vw;
    }
    
    .dates-card h4 {
        font-size: 18px;
    }

    .dates-container li {
        font-size: 15px;
    }

    .gallery-item figcaption {
        font-size: 10px;
    }

    .section-contact p {
        font-size: 15px;
    }

    .section-contact a {
        font-size: 12px;
    }

    .footer p {
        font-size: 10px;
    }

    summary {
        font-size: 15px;
    }

    details p {
        font-size: 10px;
    }
}
