:root{
  --page-bg: #fed966; /* requested background */
  --text: #1f2937; /* dark slate for contrast */
  --muted: #374151;
  --welcome-bg: #fed966;
  --welcome-text: #374151;
  --card-bg: #374151;
  --card-text: #fed966; /* text color for card content */  
  --btn-bg: #fed966; /* button background color */
  --btn-text: #374151; /* button text color */  
  --accent: #d94660;
  --red-flag-bg: #fee2e2; --red-flag-text: #7f1d1d;
  --orange-flag-bg: #fff7ed; --orange-flag-text: #7c2d12;
  --green-flag-bg: #ecfdf5; --green-flag-text: #064e3b;
}
*{box-sizing:border-box}
html,body,#app{
  max-width: 100%;
  height:100%;
  overflow-x: hidden;
}

iframe{
  width: 100%;
  aspect-ratio: 16 / 9; /* Standard widescreen ratio */
  height: auto;
}

img {
  max-width: 100%;
  height: auto; /* Essential to prevent stretching or squishing */
  display: block; /* Removes unwanted small space at the bottom */
}

.three-images {
  display: flex;
  flex-direction: column; /* Default: stacked (mobile-first) */
  gap: 1rem; /* space between images */
}

.three-images img {
  width: 100%;
  height: auto;
  display: block;
}

/* When there's enough space (e.g. tablets/desktops) */
@media (min-width: 768px) {
  .three-images {
    flex-direction: row; /* side-by-side */
    justify-content: space-between;
  }

  .three-images img {
    width: 32%; /* 3 images across with spacing */
  }
}

.logo-wrapper {
  display: flex;
  justify-content: center; /* This centers the image horizontally */
  align-items: center;     /* Ensures it's centered if the container has extra height */
  width: 100%;             /* Spans the full width of the screen */
  padding: 10px 0;         /* Optional: adds some breathing room top and bottom */
}

.logo-img {
  max-width: 25%;
  height: auto;
  border-radius: 10px;
  /* margin-bottom: 10px; <-- Removed margin because padding on wrapper is cleaner */
}

@media (max-width: 600px) {
  .logo-img {
    max-width: 60%; /* Makes the logo larger and readable on small screens */
  }
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background:var(--page-bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
header{position:sticky;top:0;z-index:40;background:rgba(255,255,255,0.95);backdrop-filter:saturate(120%) blur(4px);border-bottom:1px solid rgba(0,0,0,0.06);display:flex;align-items:center;justify-content:space-between;padding:12px}

header .left{display:flex;align-items:center;gap:12px}

#menuToggle{background:#fff;border:1px solid rgba(0,0,0,0.08);padding:8px;border-radius:6px}

header h1{font-size:14px;margin:0;font-weight:600}

header .right{display:flex;align-items:center;gap:12px}

a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff9c4;
}

a.btn-download {
  /* Essential for anchors to behave like buttons */
  display: inline-block;
  text-decoration: none;
  
  /* Layout & Typography */
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* 3D Surface & Lighting (Top-Left) */
  color: var(--btn-text);
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--btn-bg), white 40%) 0%, 
    var(--btn-bg) 100%
  );
  
  /* The Bevel (Highlights and Lowlights) */
  border-top: 1px solid color-mix(in srgb, var(--btn-bg), white 60%);
  border-left: 1px solid color-mix(in srgb, var(--btn-bg), white 60%);
  border-bottom: 3px solid color-mix(in srgb, var(--btn-bg), black 20%);
  border-right: 2px solid color-mix(in srgb, var(--btn-bg), black 20%);

  /* The Floating Shadow (Offset to bottom-right) */
  box-shadow: 6px 10px 20px color-mix(in srgb, var(--btn-bg), black 40% 30%);
}

a.btn-download:hover {
  /* Reversed Colors */
  background: var(--btn-text);
  color: var(--btn-bg);
  
  /* Adjusting borders and shadow for the dark state */
  border-color: color-mix(in srgb, var(--btn-text), white 10%);
  box-shadow: 8px 15px 30px rgba(0, 0, 0, 0.3);
  
  /* The Throb */
  animation: throb 1.5s infinite ease-in-out;
}

a.btn-download:active {
  /* The "Pressed" effect */
  transform: scale(0.96) translateY(4px);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  animation: none; /* Stop throbbing while clicking */
}

@keyframes throb {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.04) translateY(-4px); } /* Lifts slightly as it grows */
  100% { transform: scale(1) translateY(0); }
}

a.btn-download-reverse {
  display: inline-block;
  text-decoration: none;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* 1. Dark Surface: Use a tighter gradient. 
     Too much white makes dark buttons look "dusty". */
  color: var(--btn-bg);
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--btn-text), white 15%) 0%, 
    var(--btn-text) 100%
  );
  
  /* 2. The Bevel: On dark buttons, "inner glows" look better than solid borders. */
  /* Top-left light: subtle white with low opacity */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  /* Bottom-right depth: almost black */
  border-bottom: 3px solid #1a1a1a;
  border-right: 2px solid #1a1a1a;

  /* 3. The Shadow: Since the button is dark, the shadow needs to be 
     slightly heavier/sharper to be visible against the page. */
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.2),
    inset 1px 1px 0px rgba(255, 255, 255, 0.1); /* Subtle inner rim light */
}

a.btn-download-reverse:hover {
  /* Hover Flip back to Yellow */
  background: var(--btn-bg);
  color: var(--btn-text);
  
  /* When it turns yellow, we switch back to the "Warm" bevel style */
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-bottom: 3px solid color-mix(in srgb, var(--btn-bg), black 20%);
  border-right: 2px solid color-mix(in srgb, var(--btn-bg), black 20%);
  
  /* Glow effect: Use a yellow-tinted shadow on hover */
  box-shadow: 0 15px 30px color-mix(in srgb, var(--btn-bg), transparent 60%);
  
  animation: throb-bg 1.5s infinite ease-in-out;
}

a.btn-download-reverse:active {
  transform: scale(0.96) translateY(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: none;
}

@keyframes throb-bg {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.04) translateY(-4px); } /* Lifts slightly as it grows */
  100% { transform: scale(1) translateY(0); }
}

.layout{display:flex;min-height:calc(100vh - 64px)}

nav.sidebar{width:280px;position:fixed;left:0;top:64px;bottom:0;background:var(--card-bg);border-right:1px solid rgba(0,0,0,0.06);overflow:auto;transform:translateX(-100%);transition:transform .22s ease;padding:16px}

nav.sidebar.open{transform:translateX(0)}

@media(min-width:820px){
  main {
    margin-left: 0 !important;
  }
}

.contentsLabel{font-size:12px;color:var(--muted);text-transform:uppercase;margin-bottom:8px}

#navList{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}

#navList a{display:flex;align-items:center;gap:10px;padding:8px;border-radius:8px;color:var(--text);text-decoration:none}

#navList a:hover{background:rgba(0,0,0,0.03)}

main{flex:1;margin-left:0;padding:20px;min-height:400px}

.content-wrap{max-width:860px;margin:0 auto;display:flex;flex-direction:column;gap:16px}

/* Section Cards */
section.card{background:var(--card-bg);border-radius:10px;padding:18px;box-shadow:0 6px 18px rgba(16,24,40,0.06);border:1px solid rgba(0,0,0,0.04);color:var(--card-text)}

section.card h2{margin:0 0 8px 0;font-size:18px;color:var(--card-text);display:flex;align-items:center;gap:10px}

section.card.with-thumbnail{display:grid;grid-template-columns:140px 1fr;gap:16px}

section.card.with-thumbnail h2{grid-column:1/-1;margin-bottom:8px}

section.card.with-thumbnail > img.card-thumbnail{grid-column:1;grid-row:2;width:100%;height:140px;border-radius:8px;object-fit:cover}

section.card.with-thumbnail > div.card-content{grid-column:2;grid-row:2;display:flex;flex-direction:column;gap:12px}

/* Welcome Section */
.welcome{background:var(--welcome-bg);border-radius:10px;padding:18px;box-shadow:0 6px 18px rgba(16,24,40,0.06);border:1px solid rgba(16,24,40,1);color:var(--welcome-text)}

.welcome h2{margin:0 0 8px 0;font-size:18px;color:var(--welcome-text);display:flex;align-items:center;gap:10px}

/* show image-based flag icons (no shadow). Use pseudo-elements so images scale cleanly.
  Images live in ./images/ (RedFlag.png, YellowFlag.png, GreenFlag.png) */
.flag-pill{display:inline-block;position:relative;width:20px;height:20px;flex:0 0 20px;vertical-align:middle;font-size:0;line-height:0;overflow:hidden;text-indent:-9999px;margin-right:8px}

.flag-pill::before{content:'';position:absolute;inset:0;border-radius:3px;background-repeat:no-repeat;background-position:center;background-size:contain;box-shadow:none !important;filter:none !important}

.flag-red::before{background-image:url('./images/RedFlag.png')}

.flag-orange::before{background-image:url('./images/YellowFlag.png')}

.flag-green::before{background-image:url('./images/GreenFlag.png')}

/* Video Styling */
.video-wrap{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;margin-top:12px}

.video-wrap iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}

.help-btn {
  /* Positioning & Layering */
  position: fixed;
  right: 18px;
  top: 74px;
  z-index: 60;
  
  /* Making it Square */
  width: 120px;
  height: 120px;
  border-radius: 0; /* Forced square corners */
  border: none;
  
  /* Text Styling */
  color: #fff;
  line-height: 1.2;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* Background & Shadow */
  background: linear-gradient(90deg, #e80808, #f69283);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  
  /* Smoothness */
  transition: transform 0.2s ease;
}

/* Keep your throb animation here */
.help-btn:hover {
  animation: throb 0.8s ease-in-out infinite !important;
  cursor: pointer;
}

@keyframes throb {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Dog List Icon */
.custom-img-list {
  list-style: none;
  padding-left: 0;
}

.custom-img-list li {
  position: relative;
  padding-left: 30px; /* Space for the image */
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start; /* Keeps icon at the top if text wraps */
}

.custom-img-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px; /* Adjust this to vertically center with your first line of text */
  width: 20px;  /* Width of your icon */
  height: 20px; /* Height of your icon */
  
  /* Path to your image */
  background-image: url('./images/dogface_icon.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Cat List Icon */
.cat-img-list {
  list-style: none;
  padding-left: 0;
}

.cat-img-list li {
  position: relative;
  padding-left: 30px; /* Space for the image */
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start; /* Keeps icon at the top if text wraps */
}

.cat-img-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px; /* Adjust this to vertically center with your first line of text */
  width: 20px;  /* Width of your icon */
  height: 20px; /* Height of your icon */
  
  /* Path to your image */
  background-image: url('./images/cat_icon.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Enhanced Mobile Styling for Help Button */
@media (max-width: 600px) {
  .help-btn {

    top: auto;            /* Remove top positioning */
    bottom: 20px;         /* Move to bottom right for thumb-reach */
    right: 20px;
    padding: 12px 20px;   /* Larger tap target */
    font-size: 12px;
    font-weight: bold;
    width: 90px;
    height: 90px;
    max-width: 80%;       /* Prevent it from filling the whole width */
    text-align: center;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4); /* Stronger red shadow */
  }
}
/* .callout-dontpanic{background:#fff3f0;border-left:4px solid #ef4444;padding:12px;border-radius:8px} */

/* Panel container */
.info-panel {
  background: var(--card-bg);
  color: var(--card-text);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Each item / row */
.info-row {
  display: flex;
  align-items: center;        /* vertical centering */
  justify-content: center;    /* horizontal centering */
  gap: 10px;
  flex: 1 1 auto;
  text-align: center;
}

/* Flag images */
.flag-icon {
  width: 22px;                 
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Text */
.info-text {
  font-weight: 600;
  white-space: nowrap;
}

/* Image Containers */
.image-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: auto;
}
/* Treats For Streets Section */
.tfs-banner {
  background: linear-gradient(135deg, #374151, #4e5e75);
  color: #fed76f;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border-color: #2a2c2d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 520px;
  margin: 2rem auto;
  text-align: center;
  animation: tfs-fade-in 0.6s ease-out;
}

.tfs-banner h3 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.tfs-banner p {
  margin: 0;
  font-size: 1.05rem;
}

.tfs-link {
  display: inline-block;
  margin-left: 0.4rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.tfs-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.tfs-link:hover::after {
  transform: scaleX(1);
}

.tfs-link:hover {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

@keyframes tfs-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: stack vertically */
@media (max-width: 600px) {
  .info-panel {
    flex-direction: column;
    justify-content: left;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* add link style for light BG links */

.light-link {
  display: inline-block;
  margin-left: 0.4rem;
  color: #374151;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.light-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #374151;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.light-link:hover::after {
  transform: scaleX(1);
}

.light-link:hover {
  color: #f86306;
  text-shadow: 0 0 6px rgba(247, 137, 82, 0.8);
}

@keyframes light-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* footer{padding:14px;text-align:center;color:rgba(15,23,42,0.6)} */

/* Footer */
.site-footer {
  background: var(--card-bg);
  color: var(--card-text);
  align-content: center;
  padding: 1rem;
}
.contact-card-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; /* stack vertically */
  gap: 0.5rem;
}

.footer-hours-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; /* stack vertically */
  gap: 0.5rem;
}
.contact-card {
  background: linear-gradient(135deg, #ece8c6, #a89759);
  color: #393838;
  padding: 1.1rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  margin: 1rem auto;
  text-align: center;
  animation: contact-fade-in 0.6s ease-out;
}

@keyframes contact-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-inner {
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-direction: column; /* stack h2 + nav vertically */
  gap: 0.5rem;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #8ecaff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Remove the hamburger button */
#menuToggle {
  display: none !important;
}

/* Remove the sidebar navigation */
nav.sidebar {
  display: none !important;
}

/* Dog Info Cards */
.doginfo-cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  justify-content: center;
}

.doginfo-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  flex: 1 1 200px; /* grow and shrink, min width 200px */
  max-width: 300px; /* keeps cards from getting too wide */
  box-sizing: border-box;
  margin-bottom: 15px;
}

.doginfo-icon {
  margin-bottom: 10px;
}

.doginfo-icon-img {
  width: 50px;
  height: 50px;

}

.doginfo-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: bold;
}

.doginfo-subtitle {
  font-size: 14px;
  margin-bottom: 12px;
}

.doginfo-open-link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 6px;
  background: #2e3134;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.doginfo-open-link:hover {
  background: #357abf;
}

/* Arrival Day Cards */
.arrivalday-cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  justify-content: center;
}

.arrivalday-card {
  background: white;
  border-radius: 12px;
  border-color: #e5760f;
  border-style: solid;
  box-shadow: 0 6px 18px rgb(0 0 0 / 68%);
  padding: 20px;
  text-align: center;
  flex: 1 1 200px; /* grow and shrink, min width 200px */
  max-width: 300px; /* keeps cards from getting too wide */
  box-sizing: border-box;
  margin-bottom: 15px;
}

.arrivalday-icon {
  margin-bottom: 10px;
}

.arrivalday-icon-img {
  width: 100px;
  height: 100px;
}

.arrivalday-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: bold;
}

.arrivalday-subtitle {
  font-size: 14px;
  margin-bottom: 12px;
}

.arrivalday-open-link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 6px;
  background: #2e3134;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.arrivalday-open-link:hover {
  background: #357abf;
}

/* Equipment Cards */

.equip-cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; 
  justify-content: center;
  padding: 10px;
}
.equip-card {
  background-color: #3e4451;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px;
  /* Updated sizing logic below */
  flex: 1 1 350px;   
  max-width: 500px;   /* Prevents them from getting too wide on huge screens */
  margin-bottom: 5px; /* The 5px gap you requested beneath each card */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.equip-image-container {
  background-color: white;
  border-radius: 12px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevents the image box from squishing */
}

.equip-image-container img {
  width: 80%;
  height: auto;
}

.equip-card-content {
  margin-left: 20px;
  text-align: left;
}

.equip-card-content h2 {
  color: #f7d665; /* Gold/Yellow title color */
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.equip-card-content p {
  color: #c5c8ce; /* Slightly muted white/grey text */
  margin: 0;
  line-height: 1.4;
  font-size: 1.05rem;
}

/* Responsive stacking for small screens */
@media (max-width: 600px) {
  .doginfo-card {
    max-width: 100%;
  }
   .arrivalday-card {
    max-width: 100%;
  }
  .equip-card {
    max-width: 100%;
  }
      /* flex: 1 1 100%;  
      flex-direction: column;
      text-align: center;
    }
    
    .equip-card-content {
      margin-left: 0;
      margin-top: 15px;
    } */
}