﻿:root {
    --text-01: #45413E;
    --light-01: #F9F9F9;
    --light-02: #FFFFFF;
    --brand-01: #DB7F67;
    --brand-02: #F4CFC6;
    --card-hover: 0px 4px 24px rgba(0, 0, 0, 0.15);
    --card-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    --hover-timing: all 0.2s ease;
    --nav-card-size: 240px;
    -webkit-font-smoothing: antialiased;
    -font-smoothing: antialiased;
    scroll-behavior: smooth;
    /* Modern Navigation Variables */
    --nav-primary: #d8cec0;
    --nav-primary-dark: #b8b0a1;
    --nav-text-dark: #45413E;
    --nav-text-light: #ffffff;
    --nav-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --nav-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --nav-shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
    --nav-transition-fast: 0.2s ease;
    --nav-transition-medium: 0.3s ease;
    --nav-border-radius: 8px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* MODERN NAVIGATION STYLES - START */
/* Reset existing nav styles and apply modern design */
nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--nav-primary) 0%, #e5ddd0 100%) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--nav-shadow-medium) !important;
    z-index: 1000;
    padding: 0 2rem !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: transform var(--nav-transition-medium), box-shadow var(--nav-transition-medium) !important;
    font-family: 'Montserrat', sans-serif !important;
}

    nav:hover {
        box-shadow: var(--nav-shadow-heavy) !important;
    }

    /* Modern Brand/Title */
    nav .navbar-title {
        font-family: 'Montserrat', sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: var(--nav-text-dark) !important;
        text-decoration: none !important;
        position: relative;
        overflow: hidden;
        padding: 0.5rem 0;
    }

        nav .navbar-title::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--nav-text-dark), transparent);
            transition: var(--nav-transition-medium);
        }

        nav .navbar-title:hover::before {
            left: 100%;
        }

    /* Modern Navigation Menu */
    nav ul.sf-menu {
        display: flex !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center;
        gap: 0.5rem;
    }

        nav ul.sf-menu > li {
            position: relative;
            margin-left: 0 !important;
        }

            nav ul.sf-menu > li > a {
                display: block !important;
                padding: 0.75rem 1.25rem !important;
                color: var(--nav-text-dark) !important;
                text-decoration: none !important;
                font-weight: 500 !important;
                font-size: 0.95rem !important;
                border-radius: var(--nav-border-radius);
                transition: var(--nav-transition-fast) !important;
                position: relative;
                overflow: hidden;
                background-color: transparent !important;
            }

                /* Sliding background effect */
                nav ul.sf-menu > li > a::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
                    transition: var(--nav-transition-medium);
                    z-index: -1;
                }

                nav ul.sf-menu > li > a:hover::before {
                    left: 0;
                }

                nav ul.sf-menu > li > a:hover {
                    color: var(--nav-text-dark) !important;
                    transform: translateY(-2px);
                    box-shadow: var(--nav-shadow-light);
                    background-color: transparent !important;
                    text-decoration: none !important;
                }

            /* Active state styling */
            nav ul.sf-menu > li.active > a {
                background: rgba(255, 255, 255, 0.3) !important;
                color: var(--nav-text-dark) !important;
                font-weight: 600 !important;
                animation: pulse 2s infinite;
            }

/* Modern Dropdown Styles */
.dropdown {
    position: relative !important;
    display: inline-block !important;
}

.dropdown-content {
    position: absolute !important;
    top: calc(100% + 0.5rem) !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--nav-border-radius) !important;
    box-shadow: var(--nav-shadow-heavy) !important;
    min-width: 200px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all var(--nav-transition-medium) !important;
    z-index: 1001 !important;
    overflow: hidden;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    animation: fadeInDown 0.3s ease-out;
}

.dropdown:hover .dropdown-content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    display: block !important;
}

.dropdown-content li {
    list-style: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 !important;
}

    .dropdown-content li:last-child {
        border-bottom: none;
    }

    .dropdown-content li a {
        display: block !important;
        padding: 0.75rem 1rem !important;
        color: var(--nav-text-dark) !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
        font-weight: 400 !important;
        transition: all var(--nav-transition-fast) !important;
        position: relative;
        background-color: transparent !important;
    }

        .dropdown-content li a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--nav-primary), var(--nav-primary-dark));
            transition: var(--nav-transition-fast);
            z-index: -1;
        }

        .dropdown-content li a:hover::before {
            width: 100%;
        }

        .dropdown-content li a:hover {
            color: var(--nav-text-light) !important;
            transform: translateX(5px);
            background-color: transparent !important;
            text-decoration: none !important;
            padding-left: 1.25rem !important;
        }

/* Dropdown Arrow Animation */
.dropdown > a.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: var(--nav-transition-fast);
}

.dropdown:hover > a.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Active state for dropdown parent */
.dropdown:hover > a.dropdown-toggle {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--nav-text-dark) !important;
}

/* Enhanced dropdown item styling with icons */
.dropdown-content li a i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
    opacity: 0.7;
    transition: var(--nav-transition-fast);
}

.dropdown-content li a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Special styling for logout item */
.dropdown-content li.logout-item {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

    .dropdown-content li.logout-item a {
        color: #dc3545 !important;
        font-weight: 500;
    }

        .dropdown-content li.logout-item a:hover {
            background: linear-gradient(135deg, #dc3545, #c82333) !important;
            color: white !important;
        }

        .dropdown-content li.logout-item a::before {
            background: linear-gradient(135deg, #dc3545, #c82333) !important;
        }

/* Pulse animation for active items */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 206, 192, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(216, 206, 192, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(216, 206, 192, 0);
    }
}

/* Loading animation for dropdown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Glowing effect on main nav hover */
nav ul.sf-menu > li > a:hover {
    box-shadow: 0 0 20px rgba(216, 206, 192, 0.3);
}

/* Add top padding to body to account for fixed nav */
body {
    padding-top: 80px;
}

/* Main content container adjustment */
.main-content {
    bottom: 2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem !important;
        height: 60px !important;
    }

        nav .navbar-title {
            font-size: 1.2rem !important;
        }

        nav ul.sf-menu {
            gap: 0.25rem;
        }

            nav ul.sf-menu > li > a {
                padding: 0.5rem 0.75rem !important;
                font-size: 0.85rem !important;
            }

    .dropdown-content {
        right: -1rem !important;
        min-width: 180px !important;
    }

    body {
        padding-top: 70px;
    }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        height: auto !important;
        padding: 0.5rem 1rem !important;
    }

        nav .navbar-title {
            margin-bottom: 0.5rem;
        }

        nav ul.sf-menu {
            flex-wrap: wrap;
            justify-content: center;
        }

    body {
        padding-top: 120px;
    }
}
/* MODERN NAVIGATION STYLES - END */

/* GENERAL STYLES - START */
p, a, li, span {
    font-weight: 400;
}

.skew {
    transform: skew(-20deg);
}

.un-skew {
    transform: skew(20deg);
}

.nav-link,
.logo {
    padding: 0 1em;
}

span.gradient {
    background: linear-gradient(45deg, #5e3719,#b2a496);
    padding: 0 1em;
    right: 1em;
    margin-right: auto;
}

    span.gradient:hover {
        animation-name: logo-hover;
        animation-duration: 0.3s;
        animation-fill-mode: forwards;
        animation-timing-function: cubic-bezier(0.17, 0.57, 0.31, 0.85);
    }

h1.logo {
    font-family: 'helvetica_neueregular';
    font-weight: 200;
    font-size: 1.75em;
    line-height: 2em;
    color: #FFF;
}

    h1.logo a, a:active, a:hover, a:visited {
        text-decoration: none;
        color: #fff;
    }

.nav-link {
    text-transform: uppercase;
    text-align: center;
    border-top: 0.5px solid #ddd;
}

a:link, a:visited, a:active {
    text-decoration: none;
    color: #f857a8;
}

a:hover {
    text-decoration: underline;
}

.right {
    display: flex;
    flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.btn-nav {
    color: #f857a8;
    padding-left: 2em;
    padding-right: 2em;
}

@media (min-width: 800px) {
    #nav-wrapper {
        overflow: hidden;
    }

    #nav {
        overflow: hidden;
        flex-direction: row;
    }

    .nav-link {
        border-top: none;
        background: #FFF;
    }

    .right {
        overflow: hidden;
        flex-direction: row;
        justify-content: flex-end;
        position: relative;
        left: 1.5em;
        height: auto;
    }

    .btn-nav {
        display: none;
    }

    .nav a:link.active, a:visited.active, a:active.active {
        background: #FFF;
        color: black;
    }

    .nav-link-span {
        transform: skew(20deg);
        display: inline-block;
        color: black;
    }

    .u-nav {
        color: black
    }

    .nav-link-span:not(.active) {
        transform: skew(20deg);
        display: inline-block;
        color: white;
    }

    .nav-link {
        transform: skew(-20deg);
        color: #fff;
        text-decoration: none;
    }

        .nav-link:last-child {
            padding-right: 3em;
        }

    a:hover.nav-link:not(.active) {
        background: #D6DDDE;
    }
}

@keyframes logo-hover {
    20% {
        padding-right: 0em;
    }

    100% {
        padding-right: 5em;
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
/* GENERAL STYLES - END */

/* CARD STYLES - START */
.card-large,
.card-med {
    color: black;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--hover-timing);
    cursor: pointer;
}

.card-large {
    box-shadow: var(--card-shadow);
    border-radius: 12px;
    overflow: hidden;
}

    .card-large:hover {
        box-shadow: var(--card-hover);
        transform: scale(1.01);
    }

.card-med:hover .card-image {
    transform: scale(1.01);
}

.card-image {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hover-timing);
}

.card-large > .card-image {
    aspect-ratio: 3/2;
}

.card-image > img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
}

.card-large a {
    text-decoration: none;
    font-weight: 600;
}

.card-large > .card-image > a {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    font-size: 24px;
    line-height: 1.2;
}

.card-large > ul {
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
    flex: 1;
    color: black;
    padding: 0 40px 40px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
}

    .card-large > ul > li a {
        color: black;
        line-height: 32px;
        font-size: 14px;
    }

.card-large#sup-dog,
.card-med#sup-dog > .card-image {
    background: linear-gradient(45deg, #E5E4E2 100%, #E3DAC9 0%);
}

.card-large#sup-cat,
.card-med#sup-cat > .card-image {
    background-color: #FFFACD;
}

.card-large#sup-bird,
.card-med#sup-bird > .card-image {
    background-color: #F3E5AB;
}

.card-large#sup-fish,
.card-med#sup-fish > .card-image {
    background-color: #F5F5F5;
}

.card-large.card-dark a,
.card-large.card-dark > ul {
    background-color: #FFF;
}

.card-large.card-light a,
.card-large.card-light > ul {
    color: black;
    font-size: 16px;
}

.card-med {
    width: var(--nav-card-size);
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

    .card-med > a {
        display: flex;
        flex-direction: column;
        grid-gap: 4px;
        padding: 12px 16px 0px;
    }

        .card-med > a > span {
            width: 100%;
        }

            .card-med > a > span:nth-of-type(1) {
                width: 100%;
                font-size: 24px;
                font-weight: 600;
                line-height: 1.2;
            }

            .card-med > a > span:nth-of-type(2) {
                font-size: 16px;
                font-weight: 500;
                line-height: 24px;
                display: flex;
                flex-direction: row;
                align-items: center;
                grid-gap: 6px;
            }

                .card-med > a > span:nth-of-type(2) > span {
                    font-size: 18px;
                }

#serv-groom > .card-image {
    background: linear-gradient(45deg, #F5F5DC 100%, #A7D4D8 80%);
}

#serv-board > .card-image {
    background: linear-gradient(45deg, #F0F8FF 100%, #EFDECD 100%);
}

.card-med:hover .card-image {
    box-shadow: var(--card-hover);
}

.card-med > .card-image {
    box-shadow: var(--card-shadow);
}

    .card-med > .card-image > img {
        width: 80%;
        height: 80%;
    }

.card-wide {
    text-align: center;
    flex-direction: row;
    padding: 0;
}

    .card-wide .card-image {
        width: 50%;
        border-radius: 0;
    }

.card-image img {
    width: 80%;
    height: 80%;
}

.card-wide > ul {
    padding: 40px;
}

    .card-wide > ul > li {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        grid-gap: 24px;
        margin-bottom: 16px;
    }

.card-wide .subtitle {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 24px;
}

.card-wide > ul > li span {
    font-size: 8px;
}

.card-large > ul > li:last-of-type {
    margin-bottom: 40px;
}

.card-large button {
    margin-top: auto;
}
/* CARD STYLES - END */

/* BUTTON STYLES - START */
.orange {
    background-color: #E5E4E2;
    box-shadow: 0px 5px 0px 0px #848482;
}

    .orange:hover {
        background-color: #E5E4E2;
    }

.btn {
    border: none;
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 22px;
    text-decoration: none;
    margin: 20px;
    color: black;
    position: relative;
    display: inline-block;
}

    .btn:active {
        transform: translate(0px, 5px);
        -webkit-transform: translate(0px, 5px);
        box-shadow: 0px 1px 0px 0px;
    }

.styled-button {
    background-color: #635147;
    padding-bottom: 20px;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 2px 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition-duration: 0.4s;
}

    .styled-button:hover {
        background-color: #E3DAC9;
    }

.button-6 {
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    min-height: 3rem;
    min-width: 8rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

    .button-6:hover,
    .button-6:focus {
        border-color: rgba(0, 0, 0, 0.15);
        box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
        color: rgba(0, 0, 0, 0.65);
    }

    .button-6:hover {
        transform: translateY(-1px);
    }

    .button-6:active {
        background-color: #F0F0F1;
        border-color: rgba(0, 0, 0, 0.15);
        box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
        color: rgba(0, 0, 0, 0.65);
        transform: translateY(0);
    }

.button-74 {
    background-color: #fbeee0;
    border: 2px solid #422800;
    border-radius: 30px;
    box-shadow: #422800 4px 4px 0 0;
    color: #422800;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    padding: 0 18px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

    .button-74:hover {
        background-color: #fff;
    }

    .button-74:active {
        box-shadow: #422800 2px 2px 0 0;
        transform: translate(2px, 2px);
    }

@media (min-width: 768px) {
    .button-74 {
        min-width: 120px;
        padding: 0 25px;
    }
}
/* BUTTON STYLES - END */

/* CALENDAR STYLES - START */
.calendar {
    font-family: 'Trebuchet MS', Tahoma, Verdana, Arial, sans-serif;
    font-size: 10pt;
    background-color: #EEE;
    color: #333;
    border: 1px solid #DDD;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0.2em;
    width: 14em;
}

    .calendar a {
        outline: none;
    }

    .calendar .months {
        background-color: #D7B26D;
        border: 1px solid #EEE2B5;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        color: #FFF;
        padding: 0.2em;
        text-align: center;
    }

    .calendar .prev-month,
    .calendar .next-month {
        padding: 0;
    }

    .calendar .prev-month {
        float: left;
    }

    .calendar .next-month {
        float: right;
    }

    .calendar .current-month {
        margin: 0 auto;
    }

    .calendar .months a {
        color: #FFF;
        text-decoration: none;
        padding: 0 0.4em;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
    }

        .calendar .months a:hover {
            background-color: #FFF6E3;
        }

    .calendar table {
        border-collapse: collapse;
        padding: 0;
        font-size: 0.8em;
        width: 100%;
    }

    .calendar th {
        text-align: center;
    }

    .calendar td {
        text-align: right;
        padding: 1px;
        width: 14.3%;
    }

        .calendar td a {
            display: block;
            color: #000000;
            background-color: #F6F6F6;
            border: 1px solid #CCC;
            text-decoration: none;
            padding: 0.2em;
        }

            .calendar td a:hover {
                color: #006393;
                background-color: #FFF6E3;
                border: 1px solid #D4BDAC;
            }

        .calendar td.today a {
            background-color: #FFF0A5;
            border: 1px solid #FED22F;
            color: #363636;
        }
/* CALENDAR STYLES - END */

/* SECTION AND LAYOUT STYLES - START */
footer {
    font-family: 'Montserrat', sans-serif;
    background: #FFF;
    position: relative;
    width: 100%;
    padding: 0 var(--pg-margin);
}

section {
    font-family: 'Montserrat', sans-serif;
    background: #FFF;
    position: relative;
    width: 100%;
    padding: 0 var(--pg-margin);
}

.btn-group {
    display: flex;
    flex-direction: row;
    grid-gap: 16px;
}

section.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    width: auto;
}

section.hero {
    background: #d8cec0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 30px;
}

.video-container {
    flex: 1;
}

.form-container {
    flex: 1;
}

section.hero h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-right: 20px;
}

section:not(.hero) {
    padding: calc(var(--pg-margin)/2) var(--pg-margin);
}

section h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: var(--text-01);
    margin-bottom: 32px;
}

#cardinfo {
    margin-left: 20px;
    text-align: center;
    font-size: 25px;
    padding: 10px 90px;
}

p {
    padding: 5px;
    color: white;
    font-size: 28px;
}

.clickable-text {
    cursor: pointer;
    font-size: 10px;
    color: black;
}

.title {
    color: black;
}

hr.rounded {
    border-top: 1px solid #fff;
    border-radius: 5px;
    padding-top: 5px;
}

#locate > div {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--hover-timing);
    cursor: pointer;
}

    #locate > div:hover {
        box-shadow: var(--card-hover);
    }

#locate h2 {
    margin-top: 0;
}

#locate p {
    line-height: 1.5;
    margin-bottom: 40px;
    width: 50%;
    text-align: center;
}

footer p {
    font-size: 16px;
    color: black;
}

.input-textbox {
    width: 20%;
    height: 20px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.clickable-text {
    cursor: pointer;
    color: black;
    text-decoration: underline;
    font-size: 14px;
}
/* SECTION AND LAYOUT STYLES - END */

/* RESPONSIVE STYLES - START */
@media only screen and (max-width: 600px) {
    :root {
        --pg-margin: 16px;
    }

    section.hero {
        aspect-ratio: 1/1;
        padding-top: 64px;
    }

        section.hero h1 {
            --hero-text: 40px;
            width: 80%;
        }

    section.hero {
        background-size: 85%;
        background-position: 360% 60%;
    }

    .btn-group {
        flex-direction: column;
    }

    .shop-pets,
    .services {
        color: black;
        display: flex;
        flex-direction: column;
        grid-gap: 24px;
        width: 100%;
    }

        .services > li {
            display: flex;
            flex-direction: column;
        }

            .services > li > .card-image {
                width: 100%;
            }

    section:not(.hero) {
        padding: var(--pg-margin);
    }

    #locate p {
        width: 80%;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (min-width: 600px) {
    :root {
        --pg-margin: 24px;
    }

    section.hero h1 {
        --hero-text: 40px;
        width: 60%;
    }

    section.hero {
        aspect-ratio: 3/2;
        background-size: 50%;
        background-position: 90% 70%;
        padding-top: 64px;
    }

    .btn-group {
        display: flex;
        flex-direction: column;
    }

    .shop-pets {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-row: auto auto;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }

    .services {
        display: flex;
        flex-direction: column;
        grid-gap: 24px;
    }

    section:not(.hero) {
        padding: var(--pg-margin);
    }

    #locate p {
        width: 60%;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (min-width: 1200px) {
    :root {
        --pg-margin: 48px;
    }

    section.hero h1 {
        --hero-text: 48px;
    }

    section.hero {
        aspect-ratio: 2/1;
    }

    .btn-group {
        flex-direction: row;
    }

    .shop-pets,
    .services {
        display: flex;
        flex-direction: row;
        grid-gap: 24px;
    }

    ul.subnav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-row: auto auto;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        padding: 48px;
    }

    #locate p {
        width: 40%;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (min-width: 1800px) {
    :root {
        --pg-margin: 80px;
    }

    section.hero h1 {
        --hero-text: 56px;
    }

    section.hero {
        aspect-ratio: 3/1;
        background-size: 30%;
        background-position: 90% 60%;
    }

    .shop-pets,
    .services {
        display: flex;
        flex-direction: row;
        grid-gap: 24px;
    }

    ul.subnav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-row: auto auto;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
        padding: 48px;
    }

    #locate p {
        width: 40%;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
/* RESPONSIVE STYLES - END */
