@import url('https://fonts.googleapis.com/css2?family=Anton&family=Baskervville:ital,wght@0,400..700;1,400..700&family=Bebas+Neue&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=League+Spartan:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FAFAF7;
}

.welcome-section,
.facilities-section,
.functions-section,
.google-section {
    padding: 100px 0;
}

:root {

    /* Brand Colours */
    --accent: #156012;
    --accent-light: #2F9E44;
    --accent-dark: #0A4D1C;

    /* Backgrounds */
    --bg: #FAFAF7;
    --card: #FFFFFF;
    --section: #EEF5EC;
    --green-bg: #EAF7E5;

    /* Text */
    --text: #222222;
    --text-light: #666666;
    --white: #FFFFFF;

    /* Borders */
    --border: #D9E6D6;

    /* Status / Highlights */
    --gold: #D9B84F;
    --shadow: rgba(0, 0, 0, 0.1);

    /* Fonts */
    --heading-font: "Bebas Neue", sans-serif;
    --body-font: "Inter", sans-serif;
    --navbar-font: "Inter", sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Container Width */
    --container: 1200px;

    /* Transitions */
    --transition: 0.3s ease-in-out;
}

/* Hamburger Menu */

.site-header-class {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--white);
    height: 100px;
}

.site-nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    padding: 10px 25px;
    align-items: center;
}

.nav-links a {
    list-style: none;
    text-decoration: none;
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 1.2rem;
    font-family: var(--navbar-font);
    transition: 0.3s ease-in-out;
}

.nav-links a:hover {
    color: var(--gold);
}

.button.button-primary.nav-cta {
    background: var(--accent);
    color: var(--white);
    border: 3px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.8rem;
    font-family: var(--navbar-font);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.button.button-primary.nav-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 96, 18, 0.15);
}

.toggle-h2,
.menu-toggle {
    display: none;
}

.logo img {
    height: 100px;
    padding: 5px;
}



/* Mobile Responsiveness */

@media (max-width: 768px) {
    .site-nav.container {
        padding: 0 1rem;
    }

    .logo img {
        height: 85px;
    }

    .menu-toggle {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: var(--bg);
        border: 1.5px solid var(--accent-dark);
        border-radius: 14px;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
        z-index: 10000;
    }

    .menu-toggle span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: var(--accent-dark);
        border-radius: 10px;
        transition: 0.3s ease-in-out;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
        content: "";
        position: absolute;
        left: 0;
        width: 20px;
        height: 2px;
        background: var(--accent-dark);
        border-radius: 10px;
        transition: 0.3s ease-in-out;
    }

    .menu-toggle span::before {
        transform: translateY(-7px);
    }

    .menu-toggle span::after {
        transform: translateY(7px);
    }

    .menu-toggle.active span {
        background: transparent;
    }

    .menu-toggle.active span::before {
        transform: rotate(45deg);
    }

    .menu-toggle.active span::after {
        transform: rotate(-45deg);
    }

    .menu-toggle:hover {
        background: #d3a955;
    }

    .nav-links a {
        font-family: var(--navbar-font);
        text-decoration: none;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        color: var(--white);
        transition: 0.5s ease-in-out;
        cursor: pointer;
        transform: translateY(-40px);
    }

    .nav-links a:hover {
        color: var(--logo-yellow);
    }

    .button.button-primary.nav-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 220px;
        padding: 1rem;
        background: var(--logo-yellow);
        color: var(--accent-dark);
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--transition);
    }

    .button.button-primary.nav-cta:hover {
        background: var(--white);
        color: var(--accent-dark);
        transform: translateY(-2px);
    }
}

/* Hero Section */

.hero-section {
    height: 100vh;
    clip-path: polygon(0 0,
            100% 0,
            100% 100%,
            0 96%);
    overflow: hidden;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .35)),
        url("./assets/background-five.webp") center/cover no-repeat;
    z-index: -1;
    animation: heroZoom 15s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.0);
    }
}

.hero-container {
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section {
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(1200px, 90%);
    margin: 0 auto;
    height: 100%;
}

.div-left,
.div-right {
    flex: 1;
}

.div-right {
    display: flex;
    justify-content: center;
}

.div-right img {
    height: 300px;
}


.div-left h1 {
    text-align: center;
    color: var(--white);
    font-size: 3.6rem;
    font-family: "League Spartan", sans-serif;
    font-weight: 800;
    padding-top: 50px;
}

.div-left p {
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    padding: 25px;
}

.hero-cta,
.facilities-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.hero-cta {
    padding-bottom: 50px;
}

.primary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: "League Spartan", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.primary-button:hover {
    background: transparent;
    color: var(--gold);
}

.hero-cta:hover {
    background: transparent;
    border-color: var(--gold);
}

.hero-cta:hover .primary-button {
    color: var(--gold);
}

/* Welcome Section */

.welcome-section {
    min-height: 50vh;
    background: #FAFAF7;
}

.welcome-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.lawn-bowl {
    height: 35px;
    width: auto;
}

.welcome-h2 {
    font-family: "League Spartan", sans-serif;
    font-size: 3.2rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.welcome-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: min(1200px, 90%);
    margin: 0 auto;
}

.welcome-left,
.welcome-middle,
.welcome-right {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(21, 96, 18, 0.12);
}

.welcome-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.welcome-para {
    line-height: 1.6;
    padding: 1.5rem;
    font-family: var(--body-font);
    color: var(--text);
}

/* Facilities Section */

.facilities-section {
    min-height: 100vh;
    background-color: #EAF7E5;
}

.facilities-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    line-height: 25px;
    max-width: 60%;
    text-align: center;
    width: min(800px, 90%);
    margin: 0 auto;
    text-align: center;
}

.facilities-para {
    line-height: 1.6;
    font-family: var(--body-font);
    color: var(--text);
}

.facilities-container a {
    margin-top: 35px;
}

.facilities-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 50px;
}

.facility-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.facility-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.facility-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Functions Section */

.functions-section {
    min-height: 80vh;
}

.functions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 60%;
    text-align: center;
    margin: 0 auto;
}

.functions-container p {
    line-height: 1.6;
    font-family: var(--body-font);
}

.functions-container a {
    margin-top: 35px;
}

.functions-container img {
    margin-top: 50px;
    height: 600px;
    padding: 10px;
    border-radius: 25px;
    border: 5px solid #156012;
    outline: 5px solid #B22222;
    outline-offset: 6px;
}

/* Functions Review Section */

.function-reviews {
    margin-top: 50px;
    padding: 50px;
     background: linear-gradient(
        to bottom,
        #eeeeee 0%,
        #f7f7f7 50%,
        #FAFAF7 100%
    );
}

.review-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}


/* Review Card */

.review-card {
    width: 100%;
    max-width: 800px;
    margin: 0;
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-cards {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
}

.review-card {
    width: 100%;
    display: none;
}

.review-card.active {
    display: block;
}

.review-card.slide-out-left {
    display: block;

    position: absolute;
    top: 0;
    left: 0;

    animation: slideOutLeft 0.6s ease forwards;
}

.review-card.slide-in-right {
    display: block;

    animation: slideInRight 0.6s ease forwards;
}


/* Animations */

@keyframes slideOutLeft {

    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-100%);
    }

}

@keyframes slideInRight {

    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* Stars */

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.4rem;
}


/* Review Text */

.review-text {
    max-width: 650px;
    margin: 0 auto 2rem;
    font-family: var(--body-font);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
}


/* Review Details */

.review-details {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.3rem;
}

.review-details h3 {
    margin: 0;
    font-family: "League Spartan", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.review-function {
    margin: 0;
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.review-date {
    margin: 0;
    font-family: var(--body-font);
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-card {
    display: none;
}

.review-card.active {
    display: block;
}


/* Arrows */

.review-arrow {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;
    flex-shrink: 0;

    padding: 0;

    background: var(--accent);
    color: var(--white);

    border: none;
    border-radius: 50%;

    cursor: pointer;

    position: relative;
    z-index: 10;

    transition: var(--transition);
}

.review-arrow i {
    display: block;

    color: var(--white);

    font-size: 1.1rem;
    line-height: 1;

    pointer-events: none;
}


/* Mobile */

@media (max-width: 768px) {

@media (max-width: 768px) {

    .function-reviews {
        margin-top: 30px;
        padding: 50px 20px;
    }

    .review-slider {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100%;
    }

    .review-cards {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
    }

    .review-card {
        width: 100%;
        padding: 2rem 1.25rem;
    }

 .review-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    margin-right: 30px;
}

.review-next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-left: 30px;
}

    .review-stars {
        font-size: 1.25rem;
    }

    .review-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .review-details h3 {
        font-size: 1.2rem;
    }

    .review-arrow {
        width: 45px;
        height: 45px;
    }
}
}

/* Google Section */

.google-section {
    min-height: 100vh;
    background:
        linear-gradient(rgba(21, 96, 18, 0.85),
            rgba(21, 96, 18, 0.85)),
        url("./assets/contact-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 100px;
    padding: 100px 0;
    clip-path: polygon(0 0,
            100% 4%,
            100% 100%,
            0 100%);
}

.contact-para {
    color: var(--white);
    font-family: var(--body-font);
    font-size: 1.2rem;
    text-align: center;
    padding-bottom: 25px;
}

.functions-header .welcome-h2 {
    color: var(--white);
}

.maps-grid {
    width: min(1200px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: center;
}

.maps-container {
    width: 100%;
    height: 100%;
}

.maps-container iframe {
    width: 100%;
    height: 600px;
    border: 0;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.primary-button .submit {
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--gold);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-paragraph {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    flex-direction: column;
}

.phone-numbers {
    padding-bottom: 25px;
    font-size: 2.4rem;
    color: var(--gold);
}

.contact-p {
    color: var(--white);
    font-family: var(--body-font);
    line-height: 1.6;
}

/* Footer Section */

.footer-section {
    background: var(--white);
    border-top: solid 1px var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(1200px, 90%);
    margin: 0 auto;
    justify-items: center;
    align-items: center;
    text-align: center;
}

.footer-left img {
    padding: 25px;
    height: 150px;
}

.footer-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: none;
    text-decoration: none;
    color: var(--accent);
    font-weight: 800;
    line-height: 25px;
}

.footer-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--black);
    font-weight: 800;
}

.business-info i {
    color: var(--accent);
    padding-right: 10px;
}


/* Button */

.contact-form .primary-button {
    align-self: flex-start;
    margin-top: 10px;
}

/* Tablet Responsiveness - 900px */

@media (max-width: 900px) {

    /* Hero */

    .hero-content {
        width: 92%;
        gap: 2rem;
    }

    .div-left h1 {
        padding-top: 0;
        font-size: 2.8rem;
        line-height: 1;
    }

    .div-left p {
        padding: 20px;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .div-right {
        align-items: center;
    }

    .div-right img {
        width: min(320px, 40vw);
        height: auto;
        display: block;
    }

    .hero-cta {
        padding-bottom: 0;
    }

    /* Welcome */

    .welcome-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Facilities */

    .facilities-container {
        max-width: 80%;
    }

    .facilities-images {
        grid-template-columns: 1fr;
        padding: 60px 5%;
    }

    .facility-large {
        width: 100%;
        height: 450px;
    }

    .facility-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .facility-right img {
        height: 300px;
    }

    /* Functions */

    .functions-container {
        max-width: 80%;
    }

    .functions-container img {
        width: 100%;
        max-width: 700px;
        height: auto;
    }

    /* Contact */

    .maps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .maps-container iframe {
        height: 450px;
    }

    .contact-form form {
        max-width: 650px;
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 3rem 0;
    }

    .business-info {
        align-items: center;
        text-align: center;
    }
}

/* Mobile Responsiveness - 768px  */

@media (max-width: 768px) {

    /* Header */

    .site-header-class {
        height: 90px;
    }

    .site-nav.container {
        padding: 0 1rem;
    }

    .logo img {
        height: 80px;
        width: auto;
    }

    .menu-toggle {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: var(--bg);
        border: 1.5px solid var(--accent-dark);
        border-radius: 14px;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
        z-index: 10000;
    }

    .menu-toggle span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: var(--accent-dark);
        border-radius: 10px;
        transition: 0.3s ease-in-out;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
        content: "";
        position: absolute;
        left: 0;
        width: 20px;
        height: 2px;
        background: var(--accent-dark);
        border-radius: 10px;
        transition: 0.3s ease-in-out;
    }

    .menu-toggle span::before {
        transform: translateY(-7px);
    }

    .menu-toggle span::after {
        transform: translateY(7px);
    }

    .menu-toggle.active span {
        background: transparent;
    }

    .menu-toggle.active span::before {
        transform: rotate(45deg);
    }

    .menu-toggle.active span::after {
        transform: rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: 0;
        width: 100%;
        height: calc(100dvh - 90px);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;

        padding: 2rem 1rem;
        background: rgba(21, 96, 18, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);

        transition:
            transform 0.4s ease,
            opacity 0.4s ease,
            visibility 0.4s ease;

        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .toggle-h2 {
        display: block;
        margin-bottom: 1rem;
        font-size: 1.4rem;
        font-family: var(--heading-font);
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .nav-links a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: min(240px, 100%);
        padding: 1rem 1.5rem;
        text-align: center;
        text-decoration: none;
        font-family: var(--navbar-font);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 50px;
        transform: none;
    }

    .nav-links a:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--white);
    }

    .button.button-primary.nav-cta {
        width: min(240px, 100%);
        padding: 1rem 1.5rem;
        background: var(--gold);
        color: var(--white);
        border: 2px solid var(--gold);
        border-radius: 50px;
    }

    /* Hero */

    .hero-section {
        height: auto;
        min-height: calc(100svh - 90px);
        clip-path: polygon(0 0,
                100% 0,
                100% 96%,
                0 100%);
    }

    .hero-container {
        min-height: calc(100svh - 90px);
        padding: 2.5rem 1.25rem 5rem;
    }

    .hero-content {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }

    .div-left,
    .div-right {
        width: 100%;
        flex: none;
    }

    .div-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .div-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .div-right img {
        width: min(220px, 58vw);
        height: auto;
        display: block;
    }

    .div-left h1 {
        padding-top: 0;
        font-size: clamp(2.1rem, 10vw, 3rem);
        line-height: 1;
        text-align: center;
    }

    .div-left p {
        padding: 0;
        margin-top: 1rem;
        max-width: 520px;
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

    .hero-cta {
        width: 100%;
        margin-top: 1.5rem;
        padding: 0;
    }

    .hero-cta .primary-button {
        width: min(340px, 100%);
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        text-align: center;
        white-space: normal;
    }

    /* General headings */

    .welcome-h2 {
        font-size: clamp(2rem, 9vw, 2.4rem);
        text-align: center;
    }

    .welcome-header {
        gap: 0.7rem;
        padding: 0 1rem;
    }

    .lawn-bowl {
        height: 28px;
    }

    /* Welcome */

    .welcome-section {
        padding: 70px 0;
    }

    .welcome-container {
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .welcome-container img {
        height: 260px;
    }

    /* Facilities */

    .facilities-section {
        min-height: auto;
        padding: 70px 0;
    }

    .facilities-container {
        max-width: 90%;
    }

    .facilities-images {
        display: block;
        padding: 40px 20px;
    }

    .facilities-images img,
    .facility-large,
    .facility-right img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .facility-right {
        display: block;
    }

    /* Functions */

    .functions-section {
        min-height: auto;
        padding: 70px 0;
    }

    .functions-container {
        max-width: 90%;
    }

    .functions-container img {
        width: 100%;
        height: auto;
        margin-top: 40px;
        padding: 15px;
        border-width: 3px;
        outline-width: 3px;
    }

    /* Contact */

    .google-section {
        min-height: auto;
        margin-top: 50px;
        padding: 80px 0 70px;
    }

    .contact-para {
        width: 90%;
        margin: 0 auto;
        font-size: 1rem;
        line-height: 1.6;
    }

    .maps-grid {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .maps-container iframe {
        height: 350px;
    }

    .contact-form form {
        width: 100%;
        max-width: none;
    }

    .contact-form .primary-button {
        align-self: center;
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .phone-numbers {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .contact-paragraph {
        width: 90%;
        margin: 0 auto;
    }

    /* Footer */

    .footer-grid {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1rem;
        text-align: center;
    }

    .footer-left img {
        width: auto;
        height: 120px;
    }

    .footer-link {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-link a {
        font-size: 1.1rem;
    }

    .business-info {
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .business-info p {
        line-height: 1.6;
    }

    .business-info i {
        padding-right: 8px;
    }
}

/* Advertisement */

.footer-credit {
    background: #0b0b0b;
    padding: 18px 20px;
    text-align: center;
    border-top: 1px solid rgba(242, 106, 33, 0.18);
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;

    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;

    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-credit span {
    color: #f26a21;
}

.footer-credit a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-credit a:hover span {
    color: #ff7a2f;
}

@media (max-width: 768px) {
    .footer-credit a {
        font-size: 1rem;
        letter-spacing: 0.06em;
        line-height: 1.5;
    }
}