/* Universal*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    background-color: #C2B9B0;
    color: #333;
}
main {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: 'White Apple';
  src: url('fonts/white-apple.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'White apple';
  src: url('fonts/white-apple.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


/* Header and Nav*/
header {
    background-color: #7E685A;
    padding: 1rem 1.5rem;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-brand {
    display: flex;
    align-items: center;
}
.logo-brand img {
    height: 100px;   /* adjust size of the combined logo */
    width: auto;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
nav ul li {
    margin: 0 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'White apple', 'Rubik', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    display: inline-block;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: visible;
}
nav ul li a:hover {
    color: #AFD275;
}
/* insert the paw icon element */
nav ul li a::after {
  content: "\f1b0";                 /* unicode for fa-paw */
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;                 /* solid icons require 900 */
  position: absolute;
  top: 45%;
  left: 30%;
  transform: translate(-50%, -60%) rotate(330deg);
  font-size: 4.9rem;                /* adjust size */
  color: rgba(255,255,255,0.15);    /* faint so text stays readable */
  opacity: 0;                       /* hidden by default */
  transition: opacity 0.3s ease;
  z-index: 0;                       /* sits behind the link text */
  pointer-events: none;             /* doesn’t block clicks */
}

/* fade paw in on hover */
nav ul li a:hover::after {
  opacity: 2;
}
.logo-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.logo-left img {
    height: 100px;
    width: auto;
}
/*FOOTER*/
.footer {
    background-color: #7E685A;
    color: #f4efe5;
    margin-top: -2rem;
    padding: 20px 20px;
    font-family: 'Rubik', sans-serif;
    text-align: center;
}
.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}
.footer a:hover {
    color: #AFD275;
    text-decoration: underline;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 10px;
}
.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 5px;
    color: #f1f1f1;
    border-bottom: 2px solid #BE8EC7;
    padding-bottom: 10px;
}
.footer-column p, .footer-column ul {
    font-size: 16px;
    line-height: 1.6;
}
/* Quick Links */
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul li a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.footer-column ul li a:hover {
    color: #AFD275;
    transform: scale(1.05);
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: left;
    margin-top: 10px;
}
.social-icons a {
    font-size: 35px;
    color: #f1f1f1;
    margin-right: 15px;
    transition: color 0.3s ease-in-out;
}
.social-icons a:hover {
    color: #AFD275;
    transform: scale(1.05);
}
/* Copyright Section */
.footer-bottom {
    background-color: #AFD275;
    padding: 15px;
    color: #fff;
    margin-top: 5px;
}
.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* HOME PAGE*/
.content-box {
    background-color: #EFF2F4;
    border-radius: 15px;
    margin-bottom: -0.5rem;
    max-width: 1050px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* ensures corners stay clean */
}
.content-box .header-row {
    padding: 2rem;
}
.banner-wrapper {
    position: relative;
    width: 100%;
}

.home-banner {
    display: block;
    width: 100%;
    height: 475px;
    border-radius: 15px;
    object-fit: cover;
    object-position: top;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%; /* adjust coverage */
    background-color: rgba(175, 210, 117, 0.7); 
    border-radius: 15px 0 0 15px;
    display: flex;
    flex-direction: column; /* stack logo + text */
    align-items: center; /* center horizontally */
    padding: 2.5rem 1rem 1rem 1rem;
    text-align: center;
}

.overlay-logo {
    max-width: 400px; /* adjust as needed */
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}
.overlay-text {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #7E685A; /* white text contrasts nicely */
    line-height: 1.4;
    margin-top: 1.5rem;
}
.home-logo {
    display: block;
    margin: 0;
    max-width: 90%;
    height: auto;
    max-height: 310px;
    margin-bottom: -1rem;
}
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 1rem 1.8rem;
}
/* Left column */
.contact-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 2.5rem;
    align-items: center;
    text-align: center; 
    font-size: 1.3rem;
}
/* Center column */
.logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Right column */
.notice {
    flex: 1;
    max-width: 300px;
    background-color: #E1EDCE;
    font-family: 'Rubik', sans-serif;
    border-left: 5px solid #AFD275;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2.5rem;
    margin-left: -1rem;
    font-size: 0.9rem;
    text-align: left;
}
.contact-info {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #7E685A;
    font-family: 'Rubik', sans-serif;
    margin-right: 1.5rem;
}
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    margin: 0 1rem;
}
.info-box:first-child {
    margin-left: 1rem;  /* space from left edge */
}
.info-box:last-child {
    margin-right: 1rem; /* space from right edge */
}
.info-box {
    background-color: #C2B9B0;
    border-left: 5px solid #7E685A;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    flex: 1 1 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-box:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.info-box h3 {
    text-align: center;
}
.alert {
    font-style: italic;
    font-family: 'Rubik', sans-serif;
}
.mission-box {
    padding: 1.5rem 5rem;
    border-radius: 10px;
}
.mission-box h3 {
  text-align: center;
  font-size: 22px;
}
.slideshow-container {
  max-width: 1000px;
  height: 500px;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.slides-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}
.mySlide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mySlide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 600px;
  display: block;
  margin: auto;
}
/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active {
  background-color: #717171;
}
.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
.section-divider {
  margin: 1.5rem auto;
  width: 80%;
  border: none;
  border-top: 2px solid #AFD275;
}
.links {
    margin-top: 2rem;
}
.center {
    text-align: center;
}
.btn {
    display: inline-block;
    background-color: #BE8EC7;
    color: white;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn:hover {
    background-color: #B37DBE;
    transform: scale(1.05);
}
.btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: block;
    margin: 1.5rem auto 1rem auto;
    width: fit-content;
}
.service-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-bottom: 1rem;
    width: 100%;
}
.service-box {
    background-color: #C2B9B0;
    border-radius: 10px;
    border-left: 5px solid #7E685A;
    padding: 0.5rem 1.5rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    font-family: 'Rubik', sans-serif;
    box-sizing: border-box;
    margin-top: 0;            /* remove negative margin */
    margin-bottom: 2rem;
}
.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.service-description {
    margin-bottom: 1rem;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    color: #333333;
}
.content-box {
    margin-bottom: 3rem;
}

/*DAYCARE PAGE*/
.daycare-section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #EFF2F4;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-family: 'Rubik', sans-serif;
  margin-bottom: 4rem;
}
.daycare-container {
    gap: 0rem;
}
.daycare-title {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 0.1rem;
  margin-bottom: 2rem;
  color: #7E685A;
  font-family: 'Rubik', sans-serif;
  position: relative;
}
.daycare-intro {
  text-align: center;
  color: #555;
  font-size: 1rem;
  max-width: 850px;
  margin: -1rem auto 2rem;
  line-height: 1.6;
}
/*Requirements*/
.daycare-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto 2rem 4rem;
  padding: 0 -4rem 0 1rem;
}
.daycare-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.daycare-right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  margin-top: -2rem;
}
.daycare-form {
  flex: 1 1 50%;
  background-color: #fff;
  padding: 2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  font-family: 'Rubik', sans-serif;
  color: #333;
  margin-right: 0.3rem;
}
.daycare-requirements {
  background-color: #E1EDCE;
  font-family: 'Rubik', sans-serif;
  border-left: 6px solid #AFD275;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: 100%;
  margin: 0 0 1rem -4rem;
}
.daycare-requirements h2 {
  font-family: 'Rubik', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  margin-top: 0rem
}
.daycare-requirements ul {
  list-style: none;
  padding: 0;
  margin-bottom: -1rem;
}
.daycare-requirements ul li {
  position: relative;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  font-family: 'Rubik', sans-serif;
  transition: color 0.3s ease;
}
.daycare-requirements ul li:hover::before {
  transform: scale(1.3);
}
.daycare-pricing {
  font-family: 'Rubik', sans-serif;
  background-color: #C2B9B0;
  border-left: 6px solid #7E685A;
  padding: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 700px;
  width: 100%;
  margin: -1rem 0 1rem -4rem;
  padding-top: 2rem;
}
.daycare-pricing h2 {
  margin-bottom: 1.2rem;
  margin-top: -.5rem;
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
}
/* Accordion Item Wrapper */
.accordion-item {
  margin-bottom: 1rem;
  padding: 0.4rem;
  background-color: #EFF2F4;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #ddd;
  transition: 0.3s ease;
}
.accordion-item:hover {
  transform: scale(1.02);
}
/* Accordion Header (clickable block that includes title + note) */
.accordion-header {
  background-color: #D9BDDE;
  color: #333333;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  transition: transform 0.3s ease;
  position: relative;  
  width: 100%;
  box-sizing: border-box;
}
.header-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-title::after {
  content: "▼";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  margin-left: 10px;
  color: #B37DBE;
}
.accordion-header.active .header-title::after {
  transform: rotate(180deg);
}
.header-note {
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.5rem;
  user-select: none;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: 'Rubik', sans-serif !important;
  font-weight: bold;
}
.accordion-content.open {
  max-height: 1000px;
}
.accordion-content ul {
  list-style: none;
  padding-left: 0;
  font-family: 'Rubik', sans-serif !important;
}
.accordion-content ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 0.75rem 1rem;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-family: 'Rubik', sans-serif !important;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.accordion-content ul li:hover {
  background-color: #F0F8F8;
  color: #9CC754!important;
  transform: scale(1.02);
}
.accordion-content ul li:last-child {
  border-bottom: none;
}
.accordion-content ul li:hover .item-price {
  color: #AFD275 !important;
}
.item-label {
  padding-left: 0.3rem;
  color: #333;
  flex: 1;
}
.item-price {
  padding-right: 0.3rem;
  white-space: nowrap;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
}
/*Reqeust More Info Form*/
.daycare-form h2 {
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
  font-size: 1.3rem;
  color: #333333;
  text-align: center;
}
.daycare-form {
    background-color: #C2B9B0;
    margin-top: -1rem;
}
/* Form inputs */
.daycare-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: #333333;
}
.daycare-form input,
.daycare-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
}
.daycare-form input:focus,
.daycare-form textarea:focus {
  border-color: #BE8EC7;
  outline: none;
}
/* Submit button */
.daycare-form button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  background-color: #AFD275;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transition: 0.3s ease;
}
.daycare-form button:hover {
  background-color: #9CC754;
  transform: scale(1.02);
}
.daycare-form-box {
  border-radius: 10px;
  padding: 1rem;
  background-color: #7E685A;
  max-width: 500px;
  margin: 2rem auto 2rem auto;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.daycare-form-box h3 {
    margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
    color: #EFF2F4;
}
/* Container for the image with overlay text */
.overlay-container {
  position: relative;
  width: 80%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
/* Image inside the overlay container */
.daycare-form-image {
  width: 75%;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 8px;
}
/* The overlay text that appears on hover */
.image-overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(175, 210, 117, 0.5);
  border-radius: 8px;
  color: #333333;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  font-size: 25px;
  width: 75%;
  padding: 1rem;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.overlay-container:hover .image-overlay-text {
  opacity: 1;
}
.daycare-image-link {
  text-decoration: none;
  display: inline-block;
}

/*=== SPECIAL EVENTS & BIRTHDAYS SECTION (No Grid) ===*/
.daycare-events {
  max-width: 1200px;
  margin: -1rem auto -1rem;
  padding: 2rem;
  margin-bottom: 1rem;
  background-color: #7E685A;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  font-family: 'Rubik', sans-serif;
}
.events-title {
  font-size: 2rem;
  color: #EFF2F4;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}
.events-intro {
  text-align: center;
  font-size: 1rem;
  color: #EFF2F4;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.facebook-link {
  font-weight: bold;
  color: #BE8EC7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.facebook-link:hover {
  color: #B37DBE;
}
.event-category {
  margin-bottom: 3rem;
}
.category-title {
  font-size: 1.5rem;
  color: #BE8EC7;
  margin-bottom: 1rem;
  text-align: left;
}
.filter-buttons {
  text-align: center;
  margin-bottom: 2rem;
}
.filter-btn {
  background-color: #AFD275;
  border: none;
  border-radius: 24px;
  color: white;
  font-weight: 600;
  margin: 0 0.5rem 1rem;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.filter-btn:hover {
  background-color: #BE8EC7;
}
.filter-btn.active {
  background-color: #BE8EC7;
}
.event-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.events-gallery.masonry {
  column-count: 3;
  column-gap: 1rem;
}
.event-photo {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.event-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.event-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.event-photo:hover img {
  transform: scale(1.01);
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  cursor: default;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  transition: background 0.3s;
}
.lightbox-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}
.left-arrow {
  left: 30px;
}
.right-arrow {
  right: 30px;
}


/* === GROOMING PAGE === */
.grooming-section {
  max-width: 1100px;
  margin: 2rem auto;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #EFF2F4;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-family: 'Rubik', sans-serif;
}

.grooming-title {
  font-size: 2.5rem;
  text-align: center;
  color: #7E685A;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-family: 'Rubik', sans-serif;
}

.grooming-intro {
  text-align: center;
  color: #555;
  font-size: 1rem;
  max-width: 850px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Main Layout Container */
.grooming-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

/* Left Column - Grooming Cards */
.grooming-packages {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.grooming-card {
  background-color: #E1EDCE;
  border-radius: 12px;
  border-left: 6px solid #AFD275;
  padding: 1.5rem;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grooming-card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.grooming-card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.grooming-text {
  flex: 1;
}

.grooming-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.grooming-price {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #777;
}

.spa-card {
  height: 295px;
}

.spa-card .grooming-list {
  max-height: none;
  overflow-y: visible;
}

.grooming-list {
  overflow-y: auto;
  max-height: 150px;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.grooming-list li {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  font-family: 'Rubik', sans-serif;
}

.grooming-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Nail Services Pricing */
.item-label {
  display: inline-block;
}

.item-price {
  float: right;
  color: #777;
  font-weight: 500;
}

.grooming-list li:has(.item-label) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Right Column - Form + Image */
.grooming-right-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
}

/* Contact Form */
.grooming-form {
  background-color: #C2B9B0;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-family: 'Rubik', sans-serif;
}

.grooming-form h2 {
  margin-bottom: 0.5rem;
  font-family: 'Rubik', sans-serif;
  font-size: 1.4rem;
  color: #333;
  text-align: center;
}

.grooming-form p {
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Rubik', sans-serif;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.grooming-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: #333;
}

.grooming-form input,
.grooming-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
  font-family: 'Rubik', sans-serif;
}

.grooming-form input:focus,
.grooming-form textarea:focus {
  border-color: #AFD275;
  outline: none;
}

.grooming-form button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  width: 100%;
  font-size: 1rem;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  background-color: #AFD275;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.grooming-form button:hover {
  background-color: #9CC754;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(175, 210, 117, 0.3);
}

/* Groomed Dog Image */
.grooming-form-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grooming-form-image img {
  max-width: 60%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* === PHOTO GALLERY PAGE === */
.photo-gallery-page {
  font-family: 'Rubik', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #C2B9B0;
  color: #444;
}
.box {  
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #EFF2F4;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-family: 'Rubik', sans-serif;
  margin-bottom: 4rem;
}
.photo-gallery-page .gallery-main {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 800px;
}
.gallery-title {
  font-size: 2.5rem;
  color: #7E685A;
  margin-bottom: 1rem;
    margin-top: -2rem;
}
.gallery-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
    margin-bottom: -1rem;
}
.gallery-grid {
  width: 100%;
}
/* === MASONRY GRID === */
.masonry-grid {
  column-count: 3;
  column-gap: 1.25rem;
}
.masonry-grid img {
  width: 100%;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.masonry-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
/* === RESPONSIVE GRID === */
@media (max-width: 1000px) {
  .masonry-grid {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .masonry-grid {
    column-count: 1;
  }
  .gallery-title {
    font-size: 2rem;
  }
  .gallery-description {
    font-size: 1rem;
  }
}

/* === Contact Page === */
.contact-section {
  max-width: 1100px;
  margin: 2rem auto 4rem auto;
  padding: 1rem 5rem;
  background-color: #EFF2F4;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-family: 'Rubik', sans-serif;
}
.contact-title {
  font-size: 2.5rem;
  color: #7E685A;
  text-align: center;
  margin: 0;
  flex-shrink: 0;
  font-family: 'Rubik', sans-serif;
}
.contact-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.contact-title-image {
  width: 100px;
  height: auto;
}
.contact-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact-form,
.contact-info {
  flex: 1;
}
.contact-form h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #7E685A;
  margin-top: 1rem;
}
.contact-info h2,
.contact-info h3 {
  font-size: 1.5rem;
  color: #7E685A;
  margin-top: 1rem;
  text-align: left;
}
.email-link {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.email-link:hover {
  color: #AFD275;
}
.contact-info p,
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-section a {
  color: #333;
}
/* Contact form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Rubik', sans-serif;
}
.contact-form button {
  padding: 0.8rem;
  background-color: #AFD275;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}
.contact-form button:hover {
  background-color: #98C54D;
  transform: scale(1.02);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #BE8EC7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(155, 89, 182, 0.2);
}
.contact-info p {
  margin: 0.4rem 0;
  font-size: 1rem;
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px;
}
.contact-section .map-link {
  color: #AFD275 !important;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-section .map-link:hover {
  color: #98C54D !important;
}

/* Confirmation Page */
.confirmation-section {
  max-width: 1000px;
  margin: 0.5rem auto 2.5rem;
  padding: 2rem;
  background-color: #EFF2F4;
  border-radius: 16px;
  text-align: center;
  font-family: 'Rubik', sans-serif;
}
.confirmation-section h1 {
  color: #7E685A;
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.confirmation-image {
  max-width: 40%;
  height: auto;
  display: block;
  margin: -1.5rem auto 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.confirmation-section p {
  color: #333;
  font-size: 1.2rem;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 0.5rem;
  margin-top: 0rem;
}
.confirmation-section p:last-of-type {
  font-size: 1rem;
  margin-bottom: 3rem;
}
.confirmation-section a {
  background-color: #AFD275;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.confirmation-section a:hover {
  background-color: #98C54D;
  transform: scale(1.02);
}

/* About Page */
.about-container {
  max-width: 1100px;
  margin: 2rem auto 4rem auto;
  padding: 2rem;
  background-color: #EFF2F4;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-family: 'Rubik', sans-serif;
}


.about-content {
  display: flex;
  flex-direction: row;
    align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
    margin-top: -2rem;
}

.about-text {
  flex: 1 1 60%;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: 2rem;
  color: #7E685A;
  margin-bottom: 1.2rem;
}

.about-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Owner Dogs Section */
.owner-dogs {
  margin-top: -2rem;
  text-align: center;
}

.dogs-title {
  font-size: 2rem;
  color: #7E685A;
  margin-bottom: 0.5rem;
}

.dogs-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.dogs-photo-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.dogs-photo {
  width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
