/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    /* background: url('images/unnamed\ \(3\).webp') ; */
    background: url('images/View\ of\ Cardiff.jpg') ;
    background-size: contain; /* Show whole image without cropping */
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  }
  
  .hero-section.parallax {
    background-attachment: fixed;
    background-size: cover;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
    color: #fff;
  }
  
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    .hero-section {
      height: 60vh;
    }
    .hero-content h1 {
      font-size: 2rem;
    }
  }
  
  /* History Section */
  .history-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .history-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .history-card {
    display: flex;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
  }
  
  .history-card.reverse {
    flex-direction: row-reverse;
  }
  
  .history-card img {
    width: 50%;
    height: 300px;
    object-fit: fill;
    border-radius: 8px;
  }
  
  .history-content {
    width: 50%;
    padding: 20px;
    font-family: 'Lora', serif;
  }
  
  .history-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .history-card, .history-card.reverse {
      flex-direction: column;
    }
    .history-card img, .history-content {
      width: 100%;
    }
  }
  
  /* Location Section */
  .location-section {
    padding: 60px 20px;
  }
  

  
  .location-sidebar ul {
    list-style: none;
    padding: 0;
  }
  
  .location-sidebar li {
    margin: 10px 0;
  }
  
  .location-sidebar li::before {
    content: '📍 ';
    margin-right: 5px;
  }
  
  .location-sidebar p:nth-of-type(2) + ul li::before {
    content: '✅ ';
  }
  
  .location-map {
    width: 90%;
  }
  
  .location-map iframe {
    width: 100%;
    height: 600px;
    border-radius: 8px;
  }

  .location-container {
    display: grid;
    grid-template-columns: 55% 45%; /* Give more space to the map */
    align-items: start;
    gap: 30px;
  }
  
  .location-sidebar {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 600px; /* Keep same height as map */
    overflow-y: auto; /* Scroll if text is long */
  }
  
  .location-map iframe {
    height: 600px;
    border-radius: 8px;
  }
  
  @media (max-width: 992px) {
    .location-container {
      grid-template-columns: 1fr; /* Stack on smaller screens */
    }
    .location-sidebar {
      max-height: none;
      overflow-y: visible;
    }
  }
  
  
  @media (max-width: 768px) {
    .location-container {
      flex-direction: column;
    }
    .location-sidebar, .location-map {
      width: 100%;
    }
    .location-map iframe {
      height: 400px;
    }
  }
  
  /* Pet Section */
  .pet-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .pet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
  }
  
  .pet-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .pet-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .pet-item:hover img {
    transform: scale(1.1);
  }
  
  .pet-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
  }
  
  .pet-item[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .pet-item[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Spa Section */
  .spa-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .spa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
  }
  
  .spa-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .spa-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .spa-card.parallax {
    background-attachment: fixed;
    background-size: cover;
  }
  
  .spa-card h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    margin: 0;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .spa-card[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .spa-card[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  
  
