@font-face {
    font-family: 'Oswald';
    src: url('assets/Oswald.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

body {
    scroll-behavior: smooth;
    margin: 0;
    user-select: none;
    -webkit-user-drag: none;
    font-family: 'Oswald', sans-serif;
}

/* ------------------------------------------------- */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 0 1rem;
    height: auto;
    min-height: 4em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: var(--topbar-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    gap: 1rem;
    box-sizing: border-box;
}

.topbar a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: lighter;
    text-transform: none;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    position: relative;
    transition: all 0.1s ease-in-out;
    white-space: nowrap;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 3rem;
    width: auto;
}

/* Responsive wrapping logic */
@media (max-width: 700px) {

    .topbar a,
    .topbar .mode-toggle,
    .topbar .eye-container {
        flex: 0 0 auto;
    }

    .topbar .logo-link {
        order: 0;
    }
}


/* ------------------------------------------------- */

.button:hover,
.merch-button:hover {
    color: #48d97e;
    transform: scale(1.5);
    padding: 0.5em;
    text-shadow: 0 0 5px #48d97e, 0 0 5px #48d97e;
}

.button::after,
.merch-button::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 5%;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.15s ease-in-out;
}

.button:hover::after,
.merch-button:hover::after {
    width: 75%;
    left: 50%;
}

/* ------------------------------------------------- */

.logo-link {
    padding-left: 1em;
}

.logo {
    overflow: visible;
    height: 50px;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.4);
    filter: drop-shadow(0 0 5px var(--accent-color));
}

/* ------------------------------------------------- */

.quotebutton {
    background: #48d97e;
    white-space: nowrap;
    color: white !important;
    border-radius: 6%;
    font-size: 0.75em;
    padding: 0.5em;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.quotebutton:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px #48d97e;
    color: #ffffff;
    padding: 0.5em;
}

/* ------------------------------------------------- */

.marquee-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    width: fit-content;
    animation: scroll-left 80s linear infinite;
    gap: 5rem;
}

.marquee-track img {
    height: 75px;
    width: auto;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ------------------------------------------------- */

.gallery-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--footer-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
}

.gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gallery-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.floating-img {
    position: absolute;
    will-change: transform, opacity;
    pointer-events: none;
}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

.gallery-title {
    font-size: 1.75rem;
    color: var(--text-color);
    text-align: center;
    font-family: 'Oswald', 'Oswald-Bold', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.cursor {
    display: inline-block;
    margin-left: 0em;
    color: var(--text-color);
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}

/* ------------------------------------------------- */

html,
body {
    overflow-x: clip;
    scrollbar-width: none;
}

/* ------------------------------------------------- */

.scroll-transition-section {
    position: relative;
    height: 00vh;
    overflow: hidden;
    border-width: 0px;
    background: var(--bg-color);
}


.logo-transition-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
}

.logo-transition-wrapper.visible {
    opacity: 1;
}

.logo-transition-wrapper img {
    width: 150px;
    height: auto;
    transform: scale(1);
    /*transition: transform 0.4s ease-out;*/
    will-change: transform;
    z-index: 6;
    transform-origin: center 90%;
}

.logo-transition-wrapper.zoomed img {
    transform: scale(40);
}

.contact-reveal {
    position: relative;
    opacity: 0;
    pointer-events: none;
    /* transition: opacity 0.3s ease; */
    z-index: 1;
}

.contact-reveal.visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-form {
    background: var(--contact-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 90%;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    font-size: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: var(--text-color);
    background: var(--contact-bg);
}


.contact-form button {
    background: #2ecc71;
    color: white;
    font-weight: bold;
    border: none;
    transition: background 3s ease;
    position: relative;
    z-index: 1;
    transform: translate(0, 0);
    will-change: transform;
}

.contact-form button:hover {
    background: #27ae60;
}

.contact-form input[type="file"] {
    font-size: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: var(--contact-bg);
    color: var(--text-color);
}

/* ------------------------------------------------- */


.site-footer {
    background: var(--bg-color);
    color: var(--text-color);
}

.footer-content {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;

}

.footer-logo {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 60px;
}

.footer-logo .tagline {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: #2ecc71;
}

.footer-social img {
    height: 24px;
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

/* ------------------------------------------------- */

.eye-container {
    display: flex;
    gap: 4px;
    margin-left: 10px;
    overflow: hidden;
}

.eye {
    width: 20px;
    height: 28px;
    background: white;
    border: 2px solid black;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: transform 0.1s;
}

.eye.shake {
    animation: eye-shake 0.1s infinite alternate;
}

@keyframes eye-shake {
    0% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(2px);
    }
}

.pupil {
    width: 10px;
    height: 10px;
    background: black;
    border-radius: 50%;
    position: absolute;
    top: 9px;
    left: 5px;
    transition: background 0.2s, top 0.1s, left 0.1s;
}

.pupil.alert {
    background: red;
}


/* ------------------------------------------------- */

.merch-button {
    position: relative;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin: 0 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.2s ease;
}

.merch-button:hover {
    transform: scale(1.1);
}

/*
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: gold;
    border-radius: 50%;
    opacity: 0.8;
    animation: sparkle 1.5s infinite ease-in-out;
    filter: drop-shadow(0 0 2px gold);
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: gold;
    border-radius: 2px;
}

.sparkle::before {
    width: 2px;
    height: 8px;
    left: 2px;
    top: -3px;
}

.sparkle::after {
    width: 8px;
    height: 2px;
    top: 2px;
    left: -3px;
}


@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.6) rotate(45deg);
        opacity: 0.3;
    }
}*/


/* ------------------------------------------------- */

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #2ecc71;
    --topbar-bg: rgba(250, 250, 250, 0.65);
    --contact-bg: #f0f0f0;
    --footer-bg: #f9f9f9;
}

.dark-mode {
    --bg-color: #111111;
    --text-color: #ffffff;
    --topbar-bg: rgba(50, 50, 50, 0.85);
    --contact-bg: #1a1a1a;
    --footer-bg: #222222;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.5s, color 0.5s;
}

.mode-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.mode-toggle .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.moon {
    transform: translateY(-100%);
    opacity: 0;
}

.dark-mode {
    --bg-color: #121212;
    --text-color: #ffffff;
}

.dark-mode .sun {
    transform: translateY(100%);
    opacity: 0;
}

.dark-mode .moon {
    transform: translateY(0%);
    opacity: 1;
}


/* ------------------------------------------------- */

.reviews-section {
    padding: 4rem 2rem;
    background: var(--footer-bg);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.reviews-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: top;
}

.reviews-footer {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.reviews-container {
    min-width: 100%;
    overflow: visible;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

.review-card {
    flex: 0 0 250px;
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: scale(1.05);
}

.review-headshot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    pointer-events: none;
}

.review-name {
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-align: left;
}

.review-stars {
    text-align: center;
    margin-top: 1rem;
    color: gold;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* ------------------------------------------------- */

.about-section {
    padding: 0rem 2rem;
    background: var(--bg-color);
    color: var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.about-header {
    font-size: 2.5rem;
}

.about-footer {
    font-size: 2.5rem;
}

.about-bio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    flex-wrap: wrap;
}

.about-headshot {
    pointer-events: none;
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: 50% 45%;
    border-radius: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--accent-color);
}

.about-text {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.orbit-frame {
    width: 140px;
    height: 140px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0, 255, 128, 0.25);
}

.orbit-container {
    position: relative;
    left: 50%;
    top: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
}

.earth {
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 40s linear infinite;
    transform-origin: center;
}

.mower-walker {
    pointer-events: none;
    position: relative;
    transform: translateY(-90%);
    width: 80%;
}

.mower-frame {
    width: 100%;
    height: 100%;
    object-fit:fill
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.blurb {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 4rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    backdrop-filter: blur(5px);
}

.summercompany-large-logo {
    height: 60px;
    flex-shrink: 0;
}

.blurb p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.social-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn{
    overflow: hidden;
    height: 40px;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
    transform: scale(1.4);
    filter: drop-shadow(0 0 5px #48d97e);
}

/* ------------------------------------------------- */

.services-section {
    padding: 4rem 2rem;
    background: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.services-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    grid-template-rows: repeat(3, minmax(240px, 1fr));
    gap: 1rem;
    width: 75%;
    flex-grow: 1;
    justify-content: center;
}

@media (max-width: 768px) {
    .services-section {
        height: auto;
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .service-tile {
        height: auto;
    }
}

.service-tile {
    position: relative;
    aspect-ratio: 2/3;
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 100%;
}

.service-tile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tile-title {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-size: 1.1rem;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.tile-toggle {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;

}

.tile-toggle:hover {
    transform: scale(1.2);
    background: #ffffff;
    color: var(--accent-color);
}

.tile-toggle:hover {
    transform: scale(1.3);
    opacity: 1;
}

.tile-blurb {
    position: absolute;
    inset: 0;
    padding: 1.2rem;
    background: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.3s ease;
    transform: scale(0.98);
}

.service-tile.expanded {
    background-image: none !important;
    background-color: #2f2f2f;
}

.service-tile.expanded .tile-blurb {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.tile-title {
    transition: opacity 0.3s ease;
}

.service-tile.expanded .tile-title {
    opacity: 0;
}

.service-tile.expanded .tile-toggle::after {
    content: '-';
}

/* ------------------------------------------------- */

.merch-section {
    padding: 1rem 2rem;
    background: var(--contact-bg);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
}

.merch-heading {
    font-size: 2.5rem;
}

.merch-footer {
    font-size: 1.5rem;
    text-align: center;
}

.merch-container {
    min-width: 100%;
    overflow: visible;
}

.merch-img {
    width: 95%;
    height: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.merch-img-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.merchtile-title {
    padding: 0.75rem;
    min-width: 100%;
    color: white;
    font-weight: bold;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%);

}

.merch-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

.merch-card {
    position: relative;
    width: 22.5rem;
    height: 30rem;
    border-radius: 1rem;
    background: var(--bg-color);
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%); */
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-card:hover {
    transform: scale(1.05);
}

/* ------------------------------------------------- */

.info-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    background: var(--footer-bg);
    color: var(--accent-color);
    min-height: 100vh;
    overflow: hidden;
    gap: 2rem;
}

.info-heading {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
    line-height: 1.3;
    text-align: right;
}

.info-footer {
    font-size: clamp(1.2rem, 1.3vw + 1rem, 2rem);
    text-align: right;
}

.info-content {
    position: absolute;
    right: 3vw;
    top: 50%;
    transform: translateY(-50%);
    width: 30vw;
    max-width: 400px;
    z-index: 2;
}

.pdf-preview {
    width: clamp(250px, 40vw, 500px);
    height: auto;
    aspect-ratio: 5 / 7;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 1);
    will-change: transform;
    max-width: 90vw;
}

.pdf-preview.bobbing {
    animation: bob 2.5s ease-in-out infinite;
}


@keyframes bob {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.dotted-circle-wrapper {
    position: absolute;
    right: -25vw; /* pushes it 50% offscreen */
    top: 50%;
    transform: translateY(-50%);
    width: 60vw;
    max-width: 68rem;
    aspect-ratio: 1 / 1;
    z-index: 1;
    pointer-events: none;
}


.dotted-circle {
    width: 100%;
    height: 100%;
    border: 3px dashed var(--accent-color);
    border-radius: 50%;
    animation: rotate 120s linear infinite, dashcycle 7.5s steps(1, end) infinite;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes dashcycle {
    0% {
        border-style: dashed;
    }

    /* "-" */
    50% {
        border-style: dotted;
    }

    /* "." */
    100% {
        border-style: dashed;
    }

    /* loop */
}

/* ------------------------------------------------- */

.home-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    scroll-snap-align: start;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center middle;
    z-index: 0;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.home-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 90vw;
}


.home-heading {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.home-subheading {
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 300;
    text-wrap: nowrap;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Same hover effect */
.cta-button:hover {
    transform: scale(1.1);
    text-shadow: 0 0 5px #48d97e, 0 0 5px #48d97e;
}

.cta-button:hover::after {
    width: 80%;
}


/* ------------------------------------------------- */