* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

.desktop{
    img{
        width: 100%;
        height: auto;
    }
}

.mobile{
    display: none;
    img{
        width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) {
    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}


a {
    color: var(--text-color);
}

:root {
    /* Colors */
    --title-color: #fff;
    --text-color: #fff;
    --text-color2: #554942;
    --background-color: #F7E9E2;
    --gradient-1: #73A0B2;
    --gradient-2: #6C7D8A;
    --gradient-3: #426A7B;
    --footer-color: #4B6271;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.columnleft {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
}

.columnright {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    gap: 1rem;
}

button {
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    color: var(--text-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

select {
    background-color: transparent;
    border: none;
    color: var(--text-color);

    option {
        background-color: #73A0B2;
    }
}

header {
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    width: 100%;

    .web {
        display: flex;
        flex-direction: column;
        justify-content: start;
        padding: 1rem 2rem;
        gap: 1rem;

        .expanded {
            .dropdownmenu {
                cursor: pointer;
            }
        }
    }

    .mobile {
        display: none;
    }
}

footer {
    background-color: var(--footer-color);

    p {
        color: var(--text-color);
    }

    .web {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem 0rem;
        gap: 1rem;

        .divider {
            background-color: var(--text-color);
            height: 1px;
            width: 100%;
        }

        .row {
            align-items: start;

            .column {
                align-self: center;
            }

            nav,
            div {
                flex: 1;
            }
        }

        select {
            align-self: flex-end;
            margin-right: 5rem;
        }
    }

    .mobile {
        display: none;
    }
}

.home {
    .section1 {

        .slider {
            background-color: #000;
            width: 100%;
            height: 80vh;

            a {
                margin: 1rem 2rem;
            }
        }

        .floating {
            background-color: #F6F2EEe6;
            padding: 1rem 2rem;
            border-radius: 10px;
            width: 70%;
            position: relative;
            top: -75px;
            z-index: 1;

            p {
                align-self: flex-start;
            }
        }

        .row {
            background-color: #F6F2EE;

            div {
                width: 60%;
                padding: 10vw 20vw;
            }

            img {
                width: 40%;
            }
        }
    }

    .section2 {
        background: linear-gradient(45deg, #0C1C23, #647882, #0C2C38);
        padding: 10vw 10vh;

        p {
            color: var(--text-color);
            text-align: center;
            max-width: 50vw;
        }

        .slider2 {
            .slideritem {
                height: 50vh;
                width: 20vw;
            }
        }
    }

    .section3 {
        img {
            width: 40%;
        }

        div {
            width: 60%;
            padding: 10vw 20vw;
            text-align: right;
        }
    }

    .section4 {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        height: 80vh;

        p,
        h2 {
            color: var(--text-color);
            text-align: right;
        }

        div {
            width: 30%;
            background: linear-gradient(90deg, #60668466, #21253866);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: end;
        }
    }

}

.services {
    .section1 {
        height: 80vh;

        a {
            margin: 1rem 2rem;
        }
    }

    .section2 {
        padding: 10vw 20vh;
    }

    .section3 {
        .row {
            img {
                width: 50%;
            }

            div {
                width: 50%;
                text-align: center;
                padding: 10vw 20vh;
            }
        }
    }
}

.activities{
    .section1 {
        height: 80vh;

        a {
            margin: 1rem 2rem;
        }
    }

    .section2 {
        padding: 10vw 20vh;
    }

    .section3 {
        .row {
            img {
                width: 50%;
            }

            div {
                width: 50%;
                text-align: center;
                padding: 10vw 20vh;
            }
        }
    }
    .section4{
        img{
            position: relative;
        }
    }
    .section5{
        padding: 10vw 20vh;
    }
}

.wedding{
    
}