/* =========================
   TABLET RESPONSIVE STYLES
   Applies to tablets and smaller screens.
   ========================= */

   @media (max-width: 1000px) {

    /* Weather forecast grid */
    .forecast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE RESPONSIVE STYLES
   Applies to phones and small tablets.
   ========================= */

   @media (max-width: 768px) {

    /* =========================
       NAVIGATION
       ========================= */

    .navbar {
        padding: 10px 20px;
        align-items: flex-start;
    }

    .logo img {
        height: 90px;
    }

    .desktop-nav {
        display: none !important;
    }

    .menu-toggle {
        display: block;

        background: none;
        border: none;

        color: white;

        font-size: 36px;

        z-index: 1000;
    }

    /* =========================
       HOMEPAGE
       ========================= */

    .hero,
    .rooms-section,
    .rentals-section,
    .tiki-section {
        min-height: 85vh;
        padding: 0 6% 60px;
    }

    .hero-content {
        padding-bottom: 60px;
    }

    .hero h2,
    .rooms-content h2,
    .rentals-content h2,
    .tiki-content h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero p,
    .rooms-content p,
    .rentals-content p,
    .tiki-content p {
        font-size: 18px;
    }

    /* =========================
       WEATHER
       ========================= */

    .weather-main {
        flex-direction: column;
        text-align: center;
    }

    .weather-main h3 {
        font-size: 52px;
    }

    /* =========================
       MAP
       ========================= */

    .map-section h2 {
        font-size: 30px;
    }

    /* =========================
       CONTACT
       ========================= */

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    /* =========================
       LIVE MUSIC
       ========================= */

    .music-header h1 {
        font-size: 40px;
    }

    .music-header p {
        font-size: 18px;
    }

    .upcoming-music h2 {
        font-size: 30px;
    }

    .music-card {
        width: 100%;
    }

    /* =========================
       MENU PAGE
       ========================= */

    .desktop-menu-image {
        display: none;
    }

    .mobile-menu-html {
        display: grid;

        padding: 60px 6%;

        gap: 25px;
    }

    .menu-header h1 {
        font-size: 38px;
    }

    .menu-header p {
        font-size: 18px;
    }

    .menu-category p {
        font-size: 16px;
    }

    /* =========================
       MARINE PAGE
       ========================= */

    .marine-page-header {
        padding: 70px 6% 45px;
    }

    .marine-page-header h1 {
        font-size: 38px;
    }

    .marine-page-header p {
        font-size: 18px;
    }

    .marine-page-tags {
        gap: 8px;
    }

    .marine-page-tags span {
        font-size: 13px;
    }

    .marine-background {
        padding: 60px 6%;
        background-attachment: scroll;
    }

    .marine-card {
        padding: 25px;
    }

    .marine-card h2 {
        font-size: 28px;
    }

    .marine-card p {
        font-size: 16px;
    }

    .tide-status-main {
        grid-template-columns: 1fr;
    }

    .sun-times {
        padding: 16px;
    }

    .sun-times-header {
        align-items: flex-start;
    }

    .sun-times-grid {
        grid-template-columns: 1fr;
    }


    /* =========================
       TODAY'S RIVER CONDITIONS
       ========================= */

    .marine-summary-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .marine-score {
        width: 72px;
        height: 72px;

        font-size: 20px;
    }

    .marine-condition-list {
        flex-direction: column;
    }

    /* =========================
       MARINE 7-DAY FORECAST
       ========================= */

    .marine-day-periods {
        grid-template-columns: 1fr;
    }

}

/* =========================
   SMALL PHONE RESPONSIVE STYLES
   ========================= */

@media (max-width: 600px) {

    /* Weather forecast grid */
    .forecast-grid {
        grid-template-columns: 1fr;
    }

    /* Marine radar */
    .radar-card iframe {
        height: 350px;
    }

}