.spot {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 100px 150px;
    background-color: #732b85;
}
.spot h2 {
    text-transform: uppercase;
    font-size: 13pt;
    font-weight: 100;
    font-family: "Raleway-Light", sans-serif;
    color: white;
}
.spot h1 {
    color: white;
    font-size: 40pt;
    margin-bottom: 30px;
}
.spot p {
    color: white;
    font-size: 15pt;
    max-width: 600px;
    line-height: 1.2;
    z-index: 10;
}
.spot p.description {
    font-size: 13pt;
    max-width: 750px;
}
.spot button span {
    z-index: 10;
    position: relative;
}
.spot iframe {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .spot {
        padding: 100px 110px;
    }
    .spot h1 {
        font-size: 36pt;
    }
    .spot p {
        max-width: 540px;
    }
    .spot p.description {
        max-width: 680px;
    }
}

@media (max-width: 992px) {
    .spot {
        padding: 80px 70px;
        gap: 15px;
        min-height: auto;
    }
    .spot h1 {
        font-size: 32pt;
        margin-bottom: 24px;
    }
    .spot p {
        font-size: 13pt;
        max-width: 100%;
    }
    .spot p.description {
        font-size: 12pt;
    }
    .spot iframe {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .spot {
        padding: 70px 48px;
        gap: 18px;
    }
    .spot h1 {
        font-size: 28pt;
        margin-bottom: 20px;
    }
    .spot h2 {
        font-size: 12pt;
    }
    .spot p {
        font-size: 12pt;
        line-height: 1.4;
    }
    .spot p.description {
        font-size: 11pt;
    }
    .spot iframe {
        margin-top: 32px;
    }
}

@media (max-width: 576px) {
    .spot {
        padding: 60px 28px 70px;
        gap: 16px;
    }
    .spot h1 {
        font-size: 24pt;
    }
    .spot h2 {
        font-size: 11pt;
    }
    .spot p {
        font-size: 11pt;
    }
    .spot p.description {
        font-size: 10.5pt;
    }
    .spot iframe {
        margin-top: 28px;
    }
}
