/* 
  COLORS inspired by "dog-walking.webp" (warm, earthy tones):
  - Background: #fdf8f2
  - Secondary: #f9ebdc
  - Tertiary: #f4e4d3
  - Primary Text: #5b4636
  - Accent/Buttons: #c29867
  - Hover/Active: #a07852
  - Box borders: #d4b38c
*/

/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #fdf8f2; /* Earthy background */
    color: #5b4636;           /* Primary text color */
    line-height: 1.6;
  }
  
  /* HEADER */
  .main-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 2px solid #d4b38c;
    padding: 1rem 2rem;
  }
  
  .logo-container {
    display: flex;
    flex-direction: column;
  }
  
  .site-title {
    font-size: 1.8rem;
    color: #5b4636;
    margin-bottom: 0.25rem;
  }
  
  .tagline {
    font-size: 1rem;
    color: #a07852;
  }
  
  /* NAVBAR */
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #5b4636;
    font-weight: 600;
    transition: color 0.2s;
  }
  
  .main-nav a:hover {
    color: #a07852;
  }
  
  /* Hide nav on mobile */
  @media (max-width: 768px) {
    .main-nav {
      display: none;
    }
  }
  
  /* HERO SECTION */
  .hero {
    position: relative;
    text-align: center;
    min-height: 70vh; /* Desktop background height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }
  
  /* Desktop background hero (hidden on mobile) */
  .hero-desktop {
    background: url("dog3.png") center center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 70vh;
    display: block;
  }
  
  /* Mobile hero image */
  .hero-mobile {
    display: none; /* Shown only on mobile */
    width: 100%;
    height: auto;
    /* If you want a fixed height on mobile, do:
       height: 60vh; object-fit: cover;
    */
  }
  
  .hero-text {
    max-width: 600px;
    margin: -40vh auto 0; /* negative margin for desktop overlay */
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
  }
  
  .hero-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #c29867;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #a07852;
  }
  
  /* SECTION BACKGROUNDS */
  .about-section {
    background-color: #f9ebdc;
  }
  
  .rates-section {
    background-color: #f4e4d3;
  }
  
  .insurance-section {
    background-color: #f9ebdc;
  }
  
  .contact-section {
    background-color: #f4e4d3;
  }
  
  /* SECTION LAYOUT */
  section {
    padding: 3rem 1rem;
  }
  
  .content-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .content-container h2 {
    color: #5b4636;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .content-container p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  /* RATES SECTION */
  .rates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .rate-box {
    background-color: #fff;
    border: 2px solid #d4b38c;
    border-radius: 8px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .rate-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #5b4636;
  }
  
  .rate-box ul {
    list-style: none;
    padding: 0;
  }
  
  .rate-box li {
    margin: 0.5rem 0;
  }
  
  /* INSURANCE SECTION */
  .insurance-section .insured-logo {
    margin: 1rem 0;
    width: 300px;
    height: auto;
  }
  
  .download-link {
    display: inline-block;
    margin-top: 1rem;
    background-color: #c29867;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .download-link:hover {
    background-color: #a07852;
  }
  
  /* CONTACT SECTION */
  .contact-section a {
    color: #5b4636;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }
  
  .contact-section a:hover {
    color: #a07852;
  }
  
  .contact-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto 0;
    display: block;
  }
  
  /* FOOTER */
  .main-footer {
    background-color: #fff;
    border-top: 2px solid #d4b38c;
    text-align: center;
    padding: 1rem;
  }
  
  .main-footer p {
    color: #5b4636;
    font-size: 0.9rem;
  }
  
  /* MEDIA QUERIES */
  @media (max-width: 768px) {
    /* Hide the desktop background, show the mobile image */
    .hero-desktop {
      display: none;
    }
    .hero-mobile {
      display: block;
      /* If you want a bigger image on mobile: */
      height: 30vh;
      object-fit: cover;
    }
  
    /* Position text below the mobile image */
    .hero-text {
      margin: 0 auto;
      text-shadow: none;
      color: #5b4636;
      padding: 1rem 1rem 0; /* remove extra bottom space */
    }
    
    .hero-text p {
      margin-bottom: 0.75rem; /* slightly less space */
    }
  }
  