* {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    /* color: #fff; */
}

.container {
    max-width: 1920px;
    margin: 0 auto;
}

p .p-white, h2 .h2-white {
    color: #fff;
}

p .p-black, h2 .h2-black {
    color: black;
}


.header {
    background-color: #030303;

    .nav-wrapper {
        width: 100%;
        background-color: #030303;
    }

    .nav-container {
        max-width: 1440px;
        margin: 0 auto;
        height: 150px;
        display: flex;
        align-items: center;
    }

    .nav {
        display: flex;
        align-items: center;
        width: 100%;

        .nav-logo {
            img {
                height: 80px;
                width: auto;
            }
        }

        .nav-list {
            display: flex;
            gap: 2rem;
            margin-left: auto;
            list-style: none;
            padding: 0;

            .nav-item {
                .nav-link {
                    color: #fff;
                    text-decoration: none;
                    font-weight: 100;
                    font-size: 22px;
                    letter-spacing: 2px;

                    &:hover {
                        color: #ccc;
                    }
                }
            }
        }
    }
}

.section {
    max-width: 1440px;
    margin: 0 auto;
}

.welcome-section, .explore-section, .section-gallery {
    background-color: #030303;

    .welcome-section-content, .explore-section-content {
        height: 810px;
        display: flex;
        justify-content: center;
    }

        .welcome-section-content {
        align-items: center;
    }

    .explore-content {
        max-width: 1440px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .welcome-text, .explore-text {
        color: white;
        max-width: 50%;
        
        .welcome-title, .explore-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .welcome-button {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: white;
            color: #030303;
            font-weight: 500;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s ease;

            &:hover {
                background-color: #ccc;
            }
        }
    }

    .explore-text {
            align-self: flex-start;
        }

    .welcome-image-container {
        max-width: 50%;
        display: flex;
        justify-content: flex-end;

        .welcome-image {
            width: 100%;
            height: auto;
            display: block;
        }
    }
}

#Visiting {
    padding-top: 60px;
}

.visiting-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    display: inline-block;
    border-bottom: 4px solid #710707;
    padding-bottom: 10px;
}

.visiting-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 0 auto;
    padding-top: 40px;
}

.card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
}

.card img {
    width: 100%;
    height: 285px;
    object-fit: cover;
    max-height: 285px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 16px 0 8px;
    border-bottom: 2px solid #710707;
    padding-bottom: 6px;
    text-align: left;
}

.card-text {
    font-size: 14px;
    color: #444;
    text-align: left;
}

#Video {
    .video-title-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1440px;
        margin: 75px 0;

        .video-title {
        flex: 1 1 40%;
        
        h2 {
            font-size: 36px;
            display: inline-block;
            padding-bottom: 10px;
            margin: 0;
        }
        }

        .video-text {
        flex: 1 1 55%;
        
        p {
            font-size: 16px;
            margin: 0;
            padding-left: 20px;
        }
        }
    }

    .video-player {
        max-width: 14400px;
        margin-bottom: 40px;

        video {
        width: 100%;
        height: auto;
        border-radius: 8px;
        }
    }

    .video-gallery {
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 20px;

        > div {
        flex: 1;

        video {
            width: 100%;
            height: auto;
            border-radius: 6px;
        }
        }
    }
}

#Gallery {
    padding: 60px 20px;

    .gallery-columns {
        column-count: 3;
        column-gap: 20px;
    }

    .gallery-columns img {
        width: 100%;
        margin-bottom: 20px;
        display: block;
        border-radius: 6px;
        break-inside: avoid;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

#Tickets {
    padding: 60px 20px;

    .tickets-title {
        font-size: 36px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 4px solid #710707;
        display: inline-block;
        padding-bottom: 10px;
    }

    .tickets-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        
        margin: 0 auto;

        .tickets-img {
        flex: 1;
        min-width: 300px;
        height: 400px;
        background-image: url('./assets/img/BuyTickets-img.jpg');
        background-size: cover;
        background-position: center;
        }

        .tickets-buy-form {
        flex: 1;
        display: flex;
        flex-direction: row;
        gap: 20px;

        .ticket-type-container,
        .ticket-amount-form {
            flex: 1;
            padding: 20px;
            border-radius: 6px;
        }

        
        }
    }

    .parallax {
        width: 1920px;
        height: 400px;
        background-image: url('./assets/img/parallax.jpg');
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
}




