@font-face {
    font-family: 'MyMontFont';
    src: url(../fonts/MontserratRoboto/Montserrat/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'CursiveFont';
    src: url(../fonts/FeasiblySingleLine-z8D90.ttf);
}

@font-face {
    font-family: 'BoldFont';
    src: url(../fonts/ArchivoBlack-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    min-height: 100vh;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family:  'MyMontFont', sans-serif;
}

/* Header section = logo, title, and get started button */
.page-top {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 20px 0 20px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.5);
}

.logo-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
}

.logo {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

h1 {
    font-weight: bold;
    color: rgb(64, 84, 64);
}

.menu {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 20px;
}


.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: rgb(64, 84, 64);
    margin: 3px 0;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.menu:hover .bar1, 
.menu:hover .bar2, 
.menu:hover .bar3 {
    background-color: rgb(195, 199, 190);
}

.dropdown-content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgb(64, 84, 64);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 5px 5px 10px 5px;
    z-index: 1000;
}

.content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.menu:hover .content {
    display: block;
}

.content a:hover {
    background-color: saddlebrown;
    border-radius: 10px;
}

.dropdown-content:hover .content {
    display: block;
}

/*Main section of the page = quotes */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Section 1 = img carousel and intro text */
.section1 {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

/* Image carousel styling */
.img-carousel {
    position: relative;
    margin-bottom: 10px;
}

.slides {
    height: 800px;
    overflow: hidden;
}

.slides img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slides::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5%;
    z-index: 2;
    pointer-events: none;
}

.caption {
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    color: white;
    font-family: 'CursiveFont', cursive;
    font-size: 90px;
    font-weight: bold;
    text-shadow: 0 5px 9px rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 1;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.6);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(240, 237, 237, 0.8);
}

.dot-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    text-align: center;
    pointer-events: auto;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgb(134, 148, 134);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Section 2 = what wild routes provides */
.section2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.provide-title {
    margin-bottom: 20px;
    color: rgb(64, 84, 64);
}

.all-icons {
    display: flex;
    flex-direction: row;
}

.icon {
    width: 150px;
    height: 150px;
    margin: 10px;
    text-align: center;
}

.icon-img {
    padding: 20px;
    width: 150px;
}

.extra {
    padding-top: 30px;
}

/* Section 3 = quote form and title */
.section3, .section4 {
    text-align: center;
    margin-bottom: 80px;
}

.quote-title {
    font-size: 25px;
    margin-bottom: 30px;
    color: rgb(64, 84, 64);
}

.open-btn {
    background-color: rgb(215, 154, 11);
    color: white;
    font-family: 'MyMontFont';
    border: none;
    border-radius: 10px;
    width:300px;
    height: 100px;
    padding: 12px 24px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.open-btn:hover {
    background-color: rgb(195, 199, 190);
    
}

.form-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.form-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    height: 80%;
}

.form-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: rgb(64, 84, 64);
    cursor: pointer;
    border-radius: 10px;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    color: rgb(195, 199, 190);
}

/* Section 4 and 5 */
.section4, .section5 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.deals-title, .adventure-title {
    font-family: 'MyMontFont', sans-serif;
    font-size: 50px;
    color: rgb(64, 84, 64);
    margin-bottom: 50px;
}

.deals-blocks, .adventure-blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'MyMontFont';
    color: rgb(64, 84, 64);
}

.underconstruction, .stay-tuned {
    margin-bottom: 10px;
}

/*Section 4 each adventure example block */
.adventure-1 {
    width: 300px;
    height: 400px;
    background-image: url('../images/victoriabc.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin-bottom: 10px;
}

.open-btn-victoria {
    font-size: 20px;
    text-align: right;
    border: none;
    border-radius: 20px;
    width: 300px;
    height: 400px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.open-btn-victoria:hover {
    background-color: rgba(195, 199, 190, 0.5);
}

.form-modal-victoria {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.form-content-victoria {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    height: 80%;
}

.form-content-victoria iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.close-btn-victoria {
    position: absolute;
    top: 23px;
    right: 23px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 40px;
    transition: background-color 0.3s ease;
}

.close-btn-victoria:hover {
    color: rgb(136, 139, 132);
}

.photo-by {
    margin-bottom: 40px;
    font-size: 10px;
}
/* Section 4 and 5 */
.section4, .section5 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

/* Footer section = Let's get started button */
footer {
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-decoration: none;
    border-radius: 20px;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */
.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-instagram {
    background: #55ACEE;
    color: white;
}

.fa-linkedin {
    background: rgb(129, 175, 217);
    color: white; 
}

@media only screen and (min-width: 1500px) {
    .adventure-blocks {
        width: 600px;
        justify-content: center;
    }
}
@media only screen and (max-width: 1000px) {
    .adventure-title {
        text-align: center;
    }

    .adventure-blocks {
        justify-content: center;
    }
}

@media only screen and (max-width: 600px) {
    .page-top {
        flex-direction: column;
        height: 600px;
    }
    
    .logo-title {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .logo {
        margin-bottom: 20px;
    }

    h1 {
        margin-bottom: 5px;
    }

    .section1 {
        margin: 0;
        height: 700px;
    }

    .img-carousel {
        height: 600px;
    }

    .slides img {
        height: 600px;
    }

    .slides.one img {
        object-position: top 30% left 40%;
    }

    .slides.two img {
        object-position: top 30% left 30%;
    }

    .slides.three img {
        object-position: top 10% left 30%;
    }

    .slides.six img {
        object-position: top 30%;
    }

    .caption {
        font-size: 50px;
    }

    .deals-blocks {
        flex-direction: column;
        align-items: center;
    }

    .deals-title, .adventure-title {
        font-size: 20px;
        margin-top: 0;
    }

    .all-icons {
        flex-direction: column;
    }

    .icon {
        margin: 0;
        height: 100px;
    }
    .icon-img {
        width: 100px;
    }
    
    .section4 {
        margin-bottom: 40px;
    }

    .deals-title, .adventure-title {
        margin-bottom: 20px;
    }

    .use-form {
        margin-left: 10px;
        margin-right: 10px;
    }

    .section5 {
        margin-bottom: 10px;
    }
}