.tour-hero {
  background: #004b2d;
  color: #f4ecd8;
  text-align: center;
  padding: 95px 20px 35px;
}

.tour-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.1;
}

.tour-hero p {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
}

.tour-video-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;

    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 20px;
}

.tour-video-wrapper {
    border: 6px solid #004b2d;
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
    overflow: hidden;
}

.tour-video-wrapper {
    max-width: 600px;   /* Controls the overall size */
    width: 100%;
    margin: 0 auto;
}

.tour-text h2 {
    font-size: 3rem;
    color: #004b2d;
    margin-bottom: 1.5rem;
}

.tour-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.tour-btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border: 2px solid #c49a2c;
    color: #004b2d;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: .3s;
}

.tour-btn:hover {
    background: #c49a2c;
    color: white;
}

@media (max-width: 900px) {

    .tour-video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-text {
        order: 1;
        text-align: center;
    }

    .tour-video-wrapper {
        order: 2;
        width: 75%;      /* Makes the video smaller */
        max-width: 320px;
        margin: 0 auto;
    }

    .tour-video-wrapper video {
        width: 100%;
        height: auto;
        display: block;
    }
}