body,
html {
    margin: 0;
    padding: 0;
}

.hero-banner {
    background: url('../images/westride_run.png') no-repeat center center/cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-section {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f8f9fa; /* Optional subtle background */
  overflow: hidden;
}



.middle-nav {
    position: sticky;
    top: 0;
    z-index: 1040; /* higher than navbar to ensure it stays on top */
    background-color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.card {
    border-radius: 12px;
    /* opacity: 0.9; */
}


.hero-banner h1 {
    font-size: 3rem;
    font-weight: 600;
}

.btn-gradient {
    background: linear-gradient(90deg, #d152fd, #1bffc1);
    border: none;
    color: white;
    transition: background 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
}


.hero-banner .btn {
    /* background-color: #00f7ff; */
    color: black;
    border: none;
    /* font-weight: bold; */
}

.middle-nav {
    background-color: #f9f9f9;
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hero-section {
    color: #ffffff;
    position: relative;
    background-color: #d89699;
    overflow: hidden;
}

.background-word {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 20vw;
    opacity: 0.1;
    color: #fff;
    font-weight: 900;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

/* 
.gradient-text {
    background: linear-gradient(90deg, #837f84, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
} */

.hollow-text {
    color: transparent;
    -webkit-text-stroke: 1px #fff; /* Adjust thickness and color */
    font-weight: bold;
}



.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

.btn-outline-black {
    background-color: white;
    /* or transparent if you want */
    border: 2px solid black;
    color: black;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-black:hover {
    background-color: black;
    color: white;
}

.btn-outline-black img {
    filter: none;
    /* ensures the image stays visible */
}

.footer-link {
    color: #bbb;
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-icon {
    filter: none;
    /* removes the white-invert filter */
    transition: opacity 0.3s ease;
}

.footer-icon:hover {
    opacity: 0.7;
}



.footer-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.footer-icon:hover {
    transform: scale(1.2);
    opacity: 0.7;
}

/* Optional: style for Font Awesome icons */
.fa-brands {
    font-size: 24px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.fa-brands:hover {
    transform: scale(1.2);
    opacity: 0.7;
}

.carousel-item h3 {
  font-size: 1.8rem;
  color: #111;
}

.carousel-item p {
  font-size: 1.1rem;
  color: #555;
}

  .activity-card {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.activity-card:hover {
  transform: scale(1.05);
}




@media (max-width: 768px) {
    .background-word {
        font-size: 50vw;
        top: 30%;
    }
}


/* Responsive typography */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-banner h1 {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-banner {
        background-attachment: fixed;
    }
}

@media (max-width: 576px) {
    footer .row>div {
        text-align: center;
    }

    footer .d-flex {
        justify-content: center !important;
    }

    footer .d-flex.flex-column.flex-md-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    footer .footer-link {
        display: inline-block;
        margin-bottom: 0.5rem;
    }
}