        @import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
        
        body {
            margin: 0;
            padding: 0;
            background-color: #bfafa0;
        }
        header {
            text-align: center;
            color: white;
        }
        /* Hamburger menu styles */
        .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #6b4c3b;
  padding: 1em 0.5em 0.5em 0.5em;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin: 1em auto 1em auto;
  max-width: 1200px;
  min-height: 70px;
  position: relative;
}

.menu-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
}

.menu-logo img {
  height: 128px;
  width: auto;
  display: block;
    /* No border, background, or padding */
}

.menu-links {
   display: flex;
  flex-wrap: wrap;         /* Allow wrapping */
  justify-content: center;
  width: 100%;
  gap: 0.3em;
  white-space: normal; 
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.4em 0.7em;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95em;
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-links a:hover,
.menu-links a:focus {
  background: #8d6e5c;
  color: #fff;
  border-bottom: 2px solid #fff;
}

.menu-icon {
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #3a2416;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin: 0.5em auto 0 auto;
}

.menu-icon span {
  width: 28px;
  height: 4px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .menu-links {
    gap: 0.5em;
  }
}

@media (max-width: 700px) {
  .menu {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 1em;
  }
  .menu-logo {
    position: static;
    margin-bottom: 0;
    order: 1;
  }
  .menu-icon {
    display: flex;
    order: 2;
    margin: 0;
  }
  .menu-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
    width: 100vw;
    background: #6b4c3b;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding-bottom: 1em;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 100;
  }
  .menu.active .menu-links {
    display: flex;
  }
  .menu-links a {
    font-size: 1em;
    width: 100%;
    text-align: center;
    padding: 0.8em 0;
    border-bottom: 1px solid #8d6e5c;
    border-radius: 0;
  }
  .menu-links a:last-child {
    border-bottom: none;
  }
        }

        .hero-section {
            width: 100%;
            height: 400px; /* Top half of the viewport */
            background: url(walkingcoverphoto.jpg) center center/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-text {
            position: absolute;
            top: 75%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            padding: 0;              /* remove boxed background */
            border-radius: 0;
            color: #fff;
        }
        .hero-text h1 {
            font-family: 'Allura';
            font-weight: 400;
            font-size: clamp(4rem, 10vw, 12rem); /* responsive large text */
            line-height: 1;
            margin: 0 0 -0.15em 0;
            white-space: nowrap;
            color: #fff;                           /* fill color */
            text-shadow:
              4px 4px 16px rgba(0,0,0,1),   /* soft dark shadow */
              0 0 8px #444444;  
        }
        .hero-text p {
            font-family: 'Allura';
            font-size: clamp(2rem, 4vw, 4rem);
            margin: 0;
            color: #fff;
            color: #fff;                           /* fill color */
            text-shadow:
              4px 4px 16px rgba(0,0,0,1),   /* soft dark shadow */
              0 0 8px #444444; 
        }
