body {
    margin: 0;
    padding: 0;
}

#hero-section {
    position: relative;
    height: calc(50vw + 50px);
    translate: 0 calc(-12vw + 100px);
}

.hero-image img {
    width: 100vw;
    border-bottom-left-radius: 20vw 10vw;
    border-bottom-right-radius: 20vw 10vw;
    box-shadow: 0 0 10vw black;
}

@keyframes fadeInUp{
    0% {
        opacity: 0;
        translate: -10%;
    }
    100% {
        opacity: 1;
        translate: 0%;
    }
}

.title-text {
    z-index: 9;
    animation: fadeInUp 1s ease-in-out;
    padding: 15vw 0 0 4vw;
    width: 96vw;
    font-family: "Limelight", sans-serif;
    position: absolute;
    color: black;
    text-shadow: 0 0 10px white;
}

.title-text h1 {
    font-size: 5.3vw;
}

.title-text p{
    font-size: 3vw;
}

nav {
    position: fixed;
    z-index: 10;
    top: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

nav a {
    text-align: center;
    font-family: "Limelight", sans-serif;
    font-weight: lighter;
    font-size: 3vw;
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 20px 0 20px 0;
}

.package {
    list-style: none;
}

.about-section, .packages-section{
    margin: 1vw 5vw 5vw 5vw;
    padding: 2vw;
    border-radius: 5vw;
    box-shadow: 0 0 20px black;
}


.package-column{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.package-image {
    width: 100%;
    border-radius: 0 5vw 5vw 0;
}

.packages-section img{
    width: 100%;
    border-radius: 0 5vw 5vw 0;
}

.about-section h2, .packages-section h2 {
    text-align: center;
    margin: 0;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.about-text{
    font-size: 2rem;
    margin: 40px;

}
.packages-section ul {
    font-size: 1.5rem;
}

#hero-section{
    overflow: visible;
}

.video-section {
    background-color: white;
    margin: 0;
}

.package-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);    
}

.package h3{
    font-size: 2rem;
    margin: 20px;
}

.packages-section h3{
    font-family: "Limelight", sans-serif;
    text-align: center;
    font-size: 3rem;
}

.video-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    margin: 20px 0 50px 0;
}

@media (max-width: 1080px) or (orientation: portrait){
    .video-section, .package-column {
        grid-template-columns: 1fr;
        #center-video {
            translate: 0 -10vw;
        }
    }

    #video-section{
        margin-top: 100px !important;
        margin-bottom: 100px !important;
        height: fit-content !important;
    }
    
    #packages-image {
        border-radius: 5vw;
    }

}

.video-section h2 {
    font-size: 3.5rem;
    text-align: center;
    margin: 0 0 40px 0;
}

.video-section video {
    background-color: black;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 20px 20px 40px black;
    
}

#video-section{
    display: block;
    margin: auto;
    height:15vw;
}

.video-section :not(#center-video) {
    translate: 0 -10vw;
}

.contact-link{
    font-family: "Limelight", sans-serif;
    left: 12.5vw;
    text-align: center;
    display: block;
    position: relative;
    width: 75vw;
    font-size: 3rem;
    border-radius: 5vw;
    background-color: #eec038;
    height: 100%;
    padding: 50px 0 50px 0;
    color: black;
    margin-bottom: 50px;
}