/* =========================
   HERO SECTION
   Main full-screen landing section.
   ========================= */

   .hero {

    min-height: 100vh;

    background:
        linear-gradient(rgba(8,18,35,.55), rgba(8,18,35,.55)),
        url("../images/waterfront.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-end;

    padding: 0 4% 90px;

    color: white;

}

.hero-content {

    max-width: 950px;

    padding-bottom: 120px;

}

.hero h2 {

    font-size: 64px;

    line-height: 1.05;

    margin-bottom: 25px;

}

.hero p {

    font-size: 22px;

    max-width: 650px;

}

/* =========================
   ROOMS SECTION
   Waterfront accommodations.
   ========================= */

.rooms-section {

    min-height: 80vh;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("../images/room.jpg");

    background-size: cover;
    background-position: center;

    display: flex;

    align-items: flex-end;
    justify-content: flex-start;

    padding: 0 4% 80px;

    color: white;

}

.rooms-content {

    max-width: 700px;

}

.rooms-content h2 {

    font-size: 52px;

    margin-bottom: 20px;

}

.rooms-content p {

    font-size: 20px;

    line-height: 1.6;

    margin-bottom: 30px;

}

/* =========================
   PONTOON RENTALS SECTION
   ========================= */

.rentals-section {

    min-height: 80vh;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("../images/pontoon.jpg");

    background-size: cover;
    background-position: center;

    display: flex;

    align-items: flex-end;
    justify-content: flex-start;

    padding: 0 4% 80px;

    color: white;

}

.rentals-content {

    max-width: 700px;

}

.rentals-content h2 {

    font-size: 52px;

    margin-bottom: 20px;

}

.rentals-content p {

    font-size: 20px;

    line-height: 1.6;

    margin-bottom: 30px;

}

/* =========================
   TIKI BAR SECTION
   ========================= */

.tiki-section {

    min-height: 80vh;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("../images/tikibar.jpg");

    background-size: cover;
    background-position: center;

    display: flex;

    align-items: flex-end;
    justify-content: flex-start;

    padding: 0 4% 80px;

    color: white;

}

.tiki-content {

    max-width: 700px;

}

.tiki-content h2 {

    font-size: 52px;

    margin-bottom: 20px;

}

.tiki-content p {

    font-size: 20px;

    line-height: 1.6;

    margin-bottom: 30px;

}
/* =========================
   CHART BACKGROUND SECTION
   Shared nautical chart background for
   the live river cam, map, and contact areas.
========================= */

.chart-background-section {
    background-image:
        linear-gradient(rgba(10,8,25,.65), rgba(10,8,25,.65)),
        url("../images/riverchart.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* =========================
   LIVE RIVER CAM
========================= */

.river-cam-section {
    padding: 90px 8%;
    background: transparent;
    text-align: center;
}

.river-cam-content {
    max-width: 1100px;
    margin: auto;
}

.river-cam-content h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 15px;
}

.river-cam-content p {
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.6;
}

.river-cam-frame {
    position: relative;

    margin-top: 35px;
    aspect-ratio: 16 / 9;

    border-radius: var(--radius-large);
    overflow: hidden;

    box-shadow: var(--shadow-card);
    background: #111;
}

.river-cam-frame iframe,
.river-cam-frame video,
.river-cam-frame object,
.river-cam-frame embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

#macraes-river-cam-holder {
    width: 100%;
    height: 100%;
}

.river-cam-fullscreen {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 5;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;

    color: white;
    cursor: pointer;

    font-size: 22px;
    line-height: 1;

    transition:
    background .2s ease,
    transform .2s ease;
}

.river-cam-fullscreen:hover,
.river-cam-fullscreen:focus {
    background: rgba(244, 162, 97, .9);
    color: #111;
    transform: scale(1.05);
}

.river-cam-frame:fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}

.river-cam-frame:fullscreen #macraes-river-cam-holder,
.river-cam-frame:fullscreen video,
.river-cam-frame:fullscreen iframe,
.river-cam-frame:fullscreen object,
.river-cam-frame:fullscreen embed {
    width: 100%;
    height: 100%;
}

.no-scroll {
    overflow: hidden;
}

.river-cam-frame.river-cam-fake-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 9999;

    width: 100vw;
    height: 100dvh;

    margin: 0;
    border-radius: 0;
    aspect-ratio: auto;

    background: #111;
}

.river-cam-frame.river-cam-fake-fullscreen #macraes-river-cam-holder {
    width: 100%;
    height: 100%;
}

.river-cam-frame.river-cam-fake-fullscreen iframe,
.river-cam-frame.river-cam-fake-fullscreen video {
    width: 100% !important;
    height: 100% !important;
}

.river-cam-frame.river-cam-fake-fullscreen .river-cam-fullscreen {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 10000;
}

/* =========================
   INFORMATION BACKGROUND
   Map and contact sections sit on the
   shared chart background wrapper.
========================= */

.info-background {
    background: transparent;
}