body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-body);
  font-weight: 700;  /* bold for main headings */
  color: var(--color-primary);
}

h1.hero-title {
  font-weight: 700; /* soft hero title if desired */
}

p, li, a {
  font-family: var(--font-body);
  font-weight: 400; /* normal weight */
}

.btn {
  background-color: var(--color-highlight);
  color: var(--color-text);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  border: 2px solid var(--color-primary); /* Added */
  cursor: pointer; /* Added */
  display: inline-block; /* Ensures consistent spacing */
  text-decoration: none; /* For links styled as buttons */
  transition: all 0.3s ease;
   font-size: 1rem;        /* ADD */
  line-height: 1.2;       /* ADD */
}

.btn:hover {
  background-color: transparent;
  color: var(--color-highlight);
}

/* Normalise button + link rendering */
button.btn,
a.btn {
  font-family: var(--font-body);
}

/* ===================== SITE HEADER ===================== */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-background);
}

.site-header {
  background-color: var(--color-background);
  border-bottom: 1px solid #e0ddd7;
  transition: box-shadow 0.3s ease;
}

/* Add shadow on scroll */
.site-header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* INNER HEADER FLEX */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

/* LOGO */
.logo img {
  height: 60px;
}

/* NAVIGATION */
.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-family: var(--font-body);
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--color-highlight);
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--color-tertiary);
}

.nav a:hover::after {
  width: 100%;
}

/* ===================== HERO SECTION ===================== */
.hero-inner {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-main {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
}

.logo-secondary {
  display: block;
  margin-top: 1rem;
  max-width: 150px;
  width: 100%;
  height: auto;
  border: 5px solid var(--color-primary);
  border-radius: 6px;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-right h1,
.hero-right p,
.hero-right .next-walk {
  margin-top: 0;
}

.hero-right h1 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

/* Next-walk info */
#next-walk-info {
  line-height: 1.8;
  margin-top: 0.5rem;
}

.next-walk h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-decoration: underline;
  text-decoration-color: var(--color-highlight);
  text-decoration-thickness: 2px;
}

.next-walk p {
  margin-bottom: 1rem;
}

.menu-options {
  display: inline-block;
  margin-left: 1.5rem;
  vertical-align: top;
}

.next-walk-details p#next-walk-info {
  margin-bottom: 2rem;
}

.next-walk-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* ===================== FOOTER ===================== */
footer {
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

footer a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-background);
  text-decoration: none;
  margin-left: 1rem;
  position: relative;
}

footer a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--color-highlight);
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: 100%;
}

footer a:hover {
  color: var(--color-highlight);
}

/* ===================== ABOUT PAGE ===================== */
.about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
  flex-wrap: wrap; /* responsive wrapping */
  padding: 1.5rem;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

/* Alternating background */
.section-alt {
  background-color: var(--color-background);
  border-radius: 8px;
}

/* Text */
.about-text {
  flex: 1;
}

.about-text p {
  color: var(--color-text);
  opacity: 0.85;
}

/* Images */
.about-image {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Logos */
.about-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-logo {
  height: 100px;
  margin-right: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.about-logo-1 {
  height: 100px;
  margin-right: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  transition: transform 0.3s ease;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
}


.about-logo:hover {
  transform: scale(1.1);
}

.about-logo-1:hover {
  transform: scale(1.1);
}


/* ===================== MOBILE MENU ===================== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-left img {
    max-width: 200px;
    margin-bottom: 1.5rem;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-background);
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    display: none;
    border-left: 1px solid #e0ddd7;
    border-bottom: 1px solid #e0ddd7;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

#ticket-tailor-widget {
  margin-top: 5rem;
}

/* Reusable side-by-side container layout */
.side-by-side {
  display: flex;
  gap: 20px;        /* space between items */
  flex-wrap: wrap;  /* stacks on smaller screens */
}

.side-by-side .container {
  flex: 1;           /* equal width */
  min-width: 250px;  /* optional: prevent being too narrow on small screens */
}
  /* Logo styling inside help boxes */

  .help-box .help-logo {
  display: block;
   margin: 15px 0 0 0;  /* top right bottom left */ 
  max-width: 120px;     /* limits size */
  height: auto;
  transition: transform 0.3s;
}

.help-box .help-logo:hover {
  transform: scale(1.05); /* subtle hover effect */
}

/* Make two items side by side within a container */
.flex-row {
  display: flex;
  gap: 20px;        /* space between boxes */
  flex-wrap: wrap;  /* stack on small screens */
}

.flex-row .help-box {
  flex: 1;           /* equal width */
  min-width: 250px;  /* optional: prevents shrinking too small */
}
