/* =====================================================
   CAMPAIGN PAGE
   ===================================================== */


/* =====================================================
   HERO
   ===================================================== */

.campaign-hero {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    background-image:
        url('../images/hero.jpeg');

    background-size: cover;

    background-position: center;

}


.campaign-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, .55);
}


.campaign-hero .container {

    position: relative;

    z-index: 2;
}


.campaign-hero-content {

    max-width: 700px;

    padding: 80px 0;

    color: #ffffff;
}


.campaign-eyebrow {

    display: block;

    margin-bottom: 18px;

    color: #d3a21d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;
}


.campaign-hero-content h1 {

    margin: 0 0 20px;

    font-family: Georgia, serif;

    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.05;

    font-weight: 700;
}


.campaign-hero-content p {

    max-width: 600px;

    margin-bottom: 30px;

    font-size: 18px;

    line-height: 1.7;
}


/* =====================================================
   PRIMARY BUTTON
   ===================================================== */

.campaign-primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 25px;

    background: #c9971c;

    border: 1px solid #c9971c;

    border-radius: 5px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

}


.campaign-primary-btn:hover {

    background: #b68612;

    border-color: #b68612;

    color: #ffffff;
}


/* =====================================================
   BOOKING SECTION
   ===================================================== */

.campaign-booking-section {

    padding: 80px 0;

    background: #ffffff;
}


.campaign-section-heading {

    margin-bottom: 40px;
}


.campaign-section-heading>span {

    display: block;

    margin-bottom: 8px;

    color: #c9971c;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;
}


.campaign-section-heading h2 {

    margin-bottom: 10px;

    color: #172033;

    font-family: Georgia, serif;

    font-size: 42px;
}


.campaign-section-heading p {

    margin: 0;

    color: #667085;

    font-size: 16px;
}


/* =====================================================
   BOOKING CARD
   ===================================================== */

.campaign-booking-card {

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e3e6eb;

    border-radius: 10px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, .07);
}


.campaign-booking-card label {

    display: block;

    margin-bottom: 7px;

    color: #172033;

    font-size: 13px;

    font-weight: 600;
}


.campaign-booking-card .form-control {

    width: 100%;

    height: 48px;

    padding: 0 13px;

    border: 1px solid #d0d5dd;

    border-radius: 5px;

    background: #ffffff;

    color: #344054;

    font-size: 14px;

    box-sizing: border-box;
}


.campaign-booking-card .form-control:focus {

    border-color: #c9971c;

    outline: none;

    box-shadow:
        0 0 0 2px rgba(201, 151, 28, .12);
}


.campaign-search-btn {

    width: 100%;

    height: 48px;

    border: 1px solid #c9971c;

    border-radius: 5px;

    background: #c9971c;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;
}


.campaign-search-btn:hover {

    background: #b68612;

    border-color: #b68612;
}


/* =====================================================
   ERROR
   ===================================================== */

.campaign-error {

    min-height: 20px;

    margin-top: 15px;

    color: #b42318;

    font-size: 13px;
}


/* =====================================================
   BENEFITS
   ===================================================== */

.campaign-benefits-section {

    padding: 80px 0;

    background: #f8f9fb;
}


.campaign-benefit-card {

    height: 100%;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 9px;

    text-align: center;

    box-sizing: border-box;
}


.campaign-benefit-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    border: 1px solid #e1bd64;

    border-radius: 50%;

    color: #c9971c;

    font-size: 25px;
}


.campaign-benefit-card h3 {

    margin-bottom: 12px;

    color: #172033;

    font-family: Georgia, serif;

    font-size: 23px;
}


.campaign-benefit-card p {

    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   CTA
   ===================================================== */

.campaign-cta {

    padding: 80px 0;

    background: #172033;

    color: #ffffff;
}


.campaign-cta>.container>span {

    display: block;

    margin-bottom: 10px;

    color: #d3a21d;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.campaign-cta h2 {

    margin-bottom: 12px;

    font-family: Georgia, serif;

    font-size: 42px;
}


.campaign-cta p {

    margin-bottom: 28px;

    color: #d0d5dd;

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

    .campaign-hero {

        min-height: 520px;

    }


    .campaign-hero-content {

        padding: 60px 0;

    }


    .campaign-hero-content h1 {

        font-size: 42px;

    }


    .campaign-hero-content p {

        font-size: 16px;

    }


    .campaign-booking-section,
    .campaign-benefits-section,
    .campaign-cta {

        padding: 60px 0;

    }


    .campaign-section-heading h2,
    .campaign-cta h2 {

        font-size: 34px;

    }


    .campaign-booking-card {

        padding: 20px;

    }

}