@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Avenir+LT+W01_35+Light&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    font-size: 62.5%;
}


.section-1 {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 9rem;

    img {
        object-fit: fill;
        width: 100%;
        height: auto;
    }

    .ticket-container {
        width: 100%;
        background: #fff4ec;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-block: 3rem;

        .ticket-button {
            border: none;
            background-color: var(--text-color);
            border-radius: 50rem;
            text-transform: uppercase;
            padding: 1.7rem 5rem;
            font-family: 'arial';
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 1.9rem;
            font-weight: 600;

        }
    }
}

.section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding-block: 6rem;
    text-align: center;

    h1 {
        font-size: 3.5rem;
        font-weight: 700;
        font-family: "Quicksand", sans-serif;
    }

    h2 {
        max-width: 53%;
        font-size: 1.8rem;
        font-weight: 700;
        font-family: "Quicksand", sans-serif;
        line-height: 3rem;
    }
}

.section-3 {
    background: #fff4ec;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;

    .card {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        background: none;


        img {
            width: 100%;
            height: 60%;
            object-fit: fill;
        }

        h3 {
            margin: 0;
            padding-inline: 1rem;
            color: var(--text-color);
            font-family: "Quicksand", sans-serif;
            font-size: 2rem;
            font-weight: 700;
        }

        p {
            margin: 0;
            padding-inline: 1rem;
            text-align: justify;
            color: var(--text-color);
            font-family: "Quicksand", sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 2rem;
        }
    }
}

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

    .section-3 .card {
        width: 100%;
    }
}

.section-4 {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;

    video {
        z-index: -1;
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 80vh;
        opacity: 0.7;
    }

    h3 {
        color: var(--secondary-color);
        font-size: 2.8rem;
        font-weight: 700;
        font-family: "Quicksand", sans-serif;
    }
}

@media screen and (max-width: 768px) {
    .section-4 {
        text-align: center;
    }

}

.section-5 {
    background: #fff4ec;
    padding: 5rem 18rem;

    h1 {
        color: var(--text-color);
        font-size: 3.5rem;
        font-weight: 700;
        font-family: "Quicksand", sans-serif;
    }

    p {
        max-width: 80%;
        color: var(--text-color);
        font-size: 1.5rem;
        font-weight: 700;
        font-family: "Quicksand", sans-serif;
        line-height: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .section-5 {
        padding: 2rem 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-5 p {
        text-align: justify;
    }

}

.section-6 {
    background: #fff4ec;

    .card-container {
        box-sizing: border-box;
        width: 94%;
        background: var(--primary-color);
        margin: 0 auto;
        padding: 5rem;
        padding-bottom: 10rem;
        display: flex;
        gap: 3rem;
        justify-content: center;
        position: relative;
        margin-bottom: 7rem;

        .card {
            width: 27%;
            position: relative;

            img {
                width: 100%;
                height: 35rem;
            }

            .content {
                position: absolute;
                box-sizing: border-box;
                border-radius: 1rem;
                display: flex;
                align-items: center;
                background: #fff4ec;
                height: 11rem;
                width: 95%;
                padding: 1.4rem;
                bottom: -16%;
                right: -5%;

                h3 {

                    margin: 0;
                    text-transform: uppercase;
                    color: var(--text-color);
                    font-size: 2.5rem;
                    font-weight: 700;
                    font-family: "Quicksand", sans-serif;
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .section-6 .card-container {
        flex-direction: column;
        gap: 8rem;
    }

    .section-6 .card-container .card {
        width: 100%;
    }
}

.section-7 {
    box-sizing: border-box;
    background: var(--primary-color);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;

    h2 {
        margin: 0;
        text-align: center;
        color: var(--secondary-color);
        font-size: 3rem;
        font-weight: 700;
        font-family: "Quicksand", sans-serif;
    }

    .card-container {
        display: flex;
        justify-content: space-between;
        align-items: stretch;

        .card {
            width: 28%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 4rem;

            svg {
                path {
                    fill: red;
                }

                width: 6rem;
                height: 6rem;
            }

            .text {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1rem;

                h3 {
                    margin: 0;
                    text-align: center;
                    color: var(--secondary-color);
                    font-size: 2rem;
                    font-weight: 700;
                    font-family: "Quicksand", sans-serif;
                }

                p {
                    text-align: center;
                    color: var(--secondary-color);
                    font-size: 1.5rem;
                    font-weight: 700;
                    font-family: "Quicksand", sans-serif;
                    line-height: 3rem;
                }
            }

        }
    }
}

@media screen and (max-width: 768px) {
    .section-7 .card-container {
        flex-direction: column;
        gap: 8rem;
    }

    .section-7 .card-container .card {
        width: 100%;
    }
}

.section-8 {
    background-color: rgb(38, 124, 193);
    padding: 6rem 16rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;

    h2 {
        margin: 0;
        color: var(--secondary-color);
        font-size: 6rem;
        font-weight: 600;
        font-family: "Quicksand", sans-serif;
    }

    .content {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .left-content {
            display: flex;
            flex-direction: column;
            gap: 5rem;

            .line {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 4.5rem;

                svg {
                    path {
                        fill: var(--secondary-color);
                    }

                    width: 2.5rem;
                    height: 2.5rem;
                }

                h3 {
                    margin: 0;
                    text-align: center;
                    color: var(--secondary-color);
                    font-size: 1.6rem;
                    font-weight: 500;
                    font-family: "Quicksand", sans-serif;
                }

                .social {
                    display: flex;
                    align-items: center;
                    gap: 1rem;

                    a {
                        display: flex;
                        align-items: center;

                        img {
                            width: 2.5rem;
                            height: 2.5rem;
                        }

                    }

                }
            }
        }

        .right-content {
            box-sizing: border-box;
            font-family: "Quicksand", sans-serif;

            p {
                margin: 0;
                margin-top: 1rem;
                font-size: 1.3rem;
                color:white;
            }
            
            a{
                text-decoration: none;
                color:white;
            }

            form {
                box-sizing: border-box;
                width: 45rem;
                display: flex;
                flex-direction: column;
                gap: 0.7rem;
            }

            .name {
                box-sizing: border-box;
                display: flex;
                gap: 1rem;
            }

            form .name p {
                box-sizing: border-box;
                width: 49%;
                ;
            }

            form .name p span input[type="text"] {
                box-sizing: border-box;
                width: 100%;
            }

            form p span input[type="email"] {
                box-sizing: border-box;
                width: 100%;
            }

            form label {
                box-sizing: border-box;
                display: block;
                color: var(--secondary-color);
                font-size: 1.4rem;
            }

            form input[type="text"],
            form input[type="email"],
            form textarea {
                outline: none;
                box-sizing: border-box;
                flex: 1;
                padding: 1rem;
                border: 0.2rem solid rgba(255, 255, 255, 0.801);
                background-color: transparent;
                color: var(--secondary-color);
                font-size: 1.4rem;
            }

            form input[type="text"]:focus,
            form input[type="email"]:focus,
            form textarea:focus {
                border: 0.2rem solid var(--secondary-color);
            }

            form input[type="text"]:hover,
            form input[type="email"]:hover,
            form textarea:hover {
                border: 0.2rem solid var(--secondary-color);
            }

            .name input[type="text"] {
                box-sizing: border-box;
                width: 100%;
            }

            form input::placeholder,
            form textarea::placeholder {
                box-sizing: border-box;
                color: rgba(255, 255, 255, 0.7);
            }

            form textarea {
                box-sizing: border-box;
                height: 7rem;
                resize: none;
                width: 100%;
            }

            .button {
                display: flex;
                flex-direction: row;
                justify-content: end;

                span {
                    display: none;
                }
            }

            form input[type="submit"] {
                background-color: black;
                color: rgb(38, 124, 193);
                border: none;
                padding: 1.2rem 5rem;
                cursor: pointer;
                font-size: 1.2rem;
                align-self: flex-start;
                transition: all 0.3s;
                border: solid 0.1rem rgb(38, 124, 193);
            }

            form input[type="submit"]:hover {
                background-color: rgb(38, 124, 193);
                color: black;
                border: solid 0.1rem black;
            }

        }
    }
}

@media screen and (max-width: 768px) {
    .section-8 {
        padding: 2rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .section-8 {
        .content {
            width: 100%;
            flex-direction: column;
            justify-content: baseline;
            gap: 5rem;

            .right-content {
                width: 90%;

                form {
                    width: 100%;

                    .name {
                        flex-direction: column;

                        p {
                            width: 100%;
                        }
                    }

                    .button {
                        width: 100%;

                        p {
                            width: 100%;

                            input[type="submit"] {
                                width: 100%;
                            }
                        }
                    }
                }
            }
        }
    }

    .section-8 .line {
        flex-direction: column;
        gap: 1rem !important;
    }
}

.section-9 {
    background-color: rgb(38, 124, 193);
    box-sizing: border-box;
    padding: 5rem 10rem;

    iframe {
        width: 100%;
        height: 70vh;
    }
}

@media screen and (max-width: 768px) {
    .section-9 {
        padding: 1rem 1rem;

        iframe {
            height: 50vh;
        }
    }

}