/* 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: '#EFF2F4 Apple';
  src: url('fonts/#EFF2F4-apple.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Melon Pop';
  src: url('fonts/Melon Pop.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: #EFF2F4;
    text-decoration: none;
    font-family: 'Melon pop', 'Rubik', sans-serif;
	font-weight: 100;
    font-size: 1.4rem;
    letter-spacing: 0.9px;
    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: #A8BBA5;
}
/* 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: #EFF2F4;
    margin-top: -2rem;
    padding: 1.5rem 1.5rem 0.5rem;
    font-family: 'Rubik', sans-serif;
    text-align: center;
}

.footer a {
    color: #EFF2F4;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
    color: #A8BBA5;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
    color: #EFF2F4;
    border-bottom: 2px solid #C9B3D1;
    padding-bottom: 0.4rem;
    font-family: 'Melon Pop', sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-column p i {
    width: 20px;
    color: #A8BBA5;
    margin-right: 0.5rem;
}

/* Quick Links */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.4rem;
}

.footer-column ul li a:hover {
    color: #A8BBA5;
    padding-left: 5px;
    transition: all 0.3s ease;
}

/* Social Link */
.social-link {
    margin-top: -0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #EFF2F4;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
	margin-top: -0.2rem;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.4rem 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facebook-link i {
    font-size: 1.3rem;
}

.facebook-link:hover {
    background-color: #A8BBA5;
    color: #EFF2F4 !important;
	transition: all 0.3s ease;
    transform: translateY(-2px);
}

/* Copyright Section */
.footer-bottom {
    background-color: #A8BBA5;
    padding: 0.75rem;
    color: #333333;
    margin-top: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-column:nth-child(3) {
    grid-column: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-column p i {
        display: inline-block;
    }
}

/* HOME PAGE*/
.content-box {
    background-color: #EFF2F4;
    border-radius: 15px;
    margin-bottom: 3rem;
    max-width: 1150px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.content-box .header-row {
    padding: 2rem;
}

/* Banner Section */
.banner-wrapper {
    position: relative;
    width: 100%;
}

.home-banner {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    object-fit: cover;
    object-position: top;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(to right, 
        rgba(188,179,171,0.85) 0%, 
        rgba(188,179,171,0.85) 70%, 
        rgba(188,179,171,0.4) 90%, 
        rgba(188,179,171,0) 100%);
    border-radius: 15px 0 0 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 1rem 2.5rem 3rem;
    text-align: left;
}

.overlay-logo {
    max-width: 400px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    margin-left: -1.5rem;
}
.overlay-text {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #EFF2F4;
    line-height: 1.4;
    margin-top: -0.5rem;
    text-align: center;
	margin-left: 3.5rem;
	margin-bottom: 0.5rem;
}

/* Banner Buttons */
.banner-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.btn-banner {
    display: inline-block;
    background-color: #7E685A;
    color: #EFF2F4;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
	letter-spacing: 0.5px;
    font-size: 0.95rem;
    font-family: 'Melon pop', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-banner:hover {
    background-color: #6B5A4D;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Header Row - Centered Contact Info */
.header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -1rem 0.3rem 0.5rem;
}

.contact-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #7E685A;
    font-family: 'Melon Pop', serif;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.contact-info i {
    margin-right: 0.8rem;
    color: #A8BBA5;
    font-size: 1.4rem;
}

.phone-link {
	text-decoration: none;
	color: #7E685A;
	transition: all 0.3s ease;
}

.address-link {
	text-decoration: none;
	color: #7E685A;
	transition: all 0.3s ease;
}

.address-link:hover {
	color: #6B5A4D;
	text-decoration: underline;
	transform: translateY(-2px);
}

/* Holiday Banner - Full Width */
.holiday-banner {
    background-color: #DEE5DD;
    border-left: 5px solid #A8BBA5;
    border-radius: 10px;
    padding: 1rem 2rem;
    margin: 0 2rem 2rem 2rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Rubik', sans-serif;
	margin-bottom: -1.5rem;
}

.holiday-banner h3 {
    margin-bottom: 0.5rem;
	margin-top: -0.1rem;
    font-size: 1.2rem;
    color: #333;
}

.holiday-banner p {
    margin: 0;
    font-size: 1rem;
}

/* Info Grid */
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 1rem;
}
.info-grid h3{
	font-family: 'Melon Pop', serif;
	font-weight: 200;
	font-size: 1.5rem;
}
.info-box {
    background-color: #C2B9B0;
    border-left: 5px solid #7E685A;
    border-radius: 10px;
    padding: 0.5rem 1rem 1.5rem;
    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 p {
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
}

.info-box:first-child {
    margin-left: 1rem;
}

.info-box:last-child {
    margin-right: 1rem;
}

.info-box:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-box h3 {
    text-align: center;
}

.info-box strong {
    font-weight: 900;
}

.info-box-image {
    width: 70%;
    height: auto;
    border-radius: 8px;
    margin: 1rem auto 0.5rem auto;
    display: block;
}

.alert {
    font-style: italic;
    font-family: 'Rubik', sans-serif;
	font-weight: normal !important;
}

/* Mission Box */
.mission-box {
    max-width: 920px;
    margin: -1rem auto -1rem auto !important;
    padding: 1rem 3rem;
    border-radius: 10px;
}

.mission-box h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Melon Pop', serif;
    font-weight: 200;
}

.mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: left;
}
.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;
}

/* Slideshow Dots */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px 10px;
    background-color: #C9B3D1;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.active {
    background-color: #A67BB8;
}

.fade {
    animation-name: fade;
    animation-duration: 2.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}


.content-box {
    margin-bottom: 3rem;
}

/*DAYCARE PAGE*/
.daycare-section {
  max-width: 1100px;
  margin: 2rem auto 4rem;
  padding: 2rem;
  background-color: #EFF2F4;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-family: 'Rubik', sans-serif;
}

.daycare-title {
  font-size: 2.8rem;
  text-align: center;
  margin: 0.8rem 0 2rem;
  color: #7E685A;
  font-family: 'Melon pop', sans-serif;
  font-weight: 100;
}

.daycare-intro {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #555;
  max-width: 850px;
  margin: -1rem auto 2rem;
}

/* Main Container */
.daycare-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.daycare-left,
.daycare-right {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Requirements & What to Expect Box */
.daycare-requirements {
  background-color: #C2B9B0;
  font-family: 'Rubik', sans-serif;
  border-left: 6px solid #7E685A;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: 100%;
}

.daycare-requirements h2 {
  font-family: 'Melon Pop', sans-serif;
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 100;
}

.daycare-requirements h3 {
  font-size: 1.2rem;
  color: #604F44;
  margin: 1.5rem 0 0.8rem;
}

.daycare-requirements h3:first-of-type {
  margin-top: 0;
}

.daycare-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.daycare-requirements ul li {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  font-family: 'Rubik', sans-serif;
}

.daycare-requirements ul li:last-child {
  margin-bottom: 0;
}

.daycare-requirements p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

/* Info Accordion */
.info-accordion {
  margin-top: 0.5rem;
}

.info-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: transform 0.3s ease;
}

.info-accordion-item:hover {
  transform: scale(1.01);
}

.info-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;
  width: 100%;
  box-sizing: border-box;
}

.info-header-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-header-title::after {
  content: "▼";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  margin-left: 10px;
  color: #A67BB8;
}

.info-accordion-header.active .info-header-title::after {
  transform: rotate(180deg);
}

.info-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: 'Rubik', sans-serif;
}

.info-accordion-content.open {
  max-height: 1000px;
}

.info-accordion-content p {
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.info-accordion-content ul {
  list-style: disc;
  padding-left: 3rem;
  margin: 0.5rem 0;
}

.info-accordion-content ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-weight: normal;
}

.daycare-enroll-btn {
  display: block;
  background-color: #A67BB8;
  color: #EFF2F4;
  text-align: center;
  padding: 1.2rem 2rem;
  margin: 1.5rem auto 0;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  max-width: 300px;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.daycare-enroll-btn::after {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%) rotate(330deg);
  font-size: 5.7rem;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.daycare-enroll-btn:hover::after {
  opacity: 1;
}

.daycare-enroll-btn:hover {
  background-color: #C9B3D1;
  transform: scale(1.05);
  color: #333333
}

/* Pricing Section */
.daycare-pricing {
  background-color: #C2B9B0;
  border-left: 6px solid #7E685A;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.daycare-pricing h2 {
  margin: 0 0 1.2rem;
  font-family: 'Melon Pop', sans-serif;
  font-size: 1.5rem;
	font-weight: 100;
}

/* Pricing Accordion */
.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: transform 0.3s ease;
}

.accordion-item:hover {
  transform: scale(1.01);
}

.accordion-header {
  background-color: #D4DED3;
  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;
  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: #A8BBA5;
}

.accordion-header.active .header-title::after {
  transform: rotate(180deg);
}

.header-note {
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.5rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
}

.accordion-content.open {
  max-height: 1000px;
}

.accordion-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.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.9rem;
  font-family: 'Rubik', sans-serif;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.accordion-content ul li:hover {
  background-color: #F0F8F8;
  color: #9CC754;
  transform: scale(1.02);
}

.accordion-content ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.accordion-content ul li:hover .item-price {
  color: #809C7C !important;
}

.item-label {
  padding-left: 0.3rem;
  color: #333;
  flex: 1;
}

.item-price {
  padding-right: 0.3rem;
  white-space: nowrap;
  font-weight: 650;
}

/* Request More Info Form */
/* Request More Info Form */
.daycare-form {
  background-color: #C2B9B0;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: 'Rubik', sans-serif;
  width: 100%;
}

.daycare-form h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #333333;
  text-align: center;
}

.daycare-form label {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #333333;
}

.daycare-form input,
.daycare-form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.daycare-form input:focus,
.daycare-form textarea:focus {
  border-color: #C9B3D1;
  outline: none;
}
.daycare-form button {
  margin-top: 1rem;
  padding: 0.65rem 1.25rem;
  width: 100%;
  font-size: 0.85rem;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  background-color: #A8BBA5;
  color: #EFF2F4;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.daycare-form button:hover {
  background-color: #859F81;
  transform: scale(1.02);
  transform: 0.3s ease;
}
/* Special Events Section */
.daycare-events {
  max-width: 1200px;
  margin: -1rem auto 1rem;
  padding: 2rem;
  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;
  font-family: 'Melon pop', sans-serif;
  font-weight: 100;
}

.events-intro {
  text-align: center;
  font-size: 1rem;
  color: #EFF2F4;
  margin: 0 auto 2rem;
  max-width: 800px;
  line-height: 1.6;
}

.facebook-inline {
    font-weight: bold;
    color: #C9B3D1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.facebook-inline:hover {
    color: #A67BB8;
}
.event-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background-color: #A8BBA5;
  border: none;
  border-radius: 24px;
  color: #EFF2F4;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #C9B3D1;
}

.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 */
.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: #EFF2F4;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  font-size: 3rem;
  color: #EFF2F4;
  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;
}
/*=== 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: #C9B3D1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.facebook-link:hover {
  color: #A67BB8;
}
.event-category {
  margin-bottom: 3rem;
}
.category-title {
  font-size: 1.5rem;
  color: #C9B3D1;
  margin-bottom: 1rem;
  text-align: left;
}
.filter-buttons {
  text-align: center;
  margin-bottom: 2rem;
}
.filter-btn {
  background-color: #A8BBA5;
  border: none;
  border-radius: 24px;
  color: #EFF2F4;
  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: #C9B3D1;
}
.filter-btn.active {
  background-color: #C9B3D1;
}
.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: #EFF2F4;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}
.lightbox-arrow {
  position: fixed;
  top: 50%;
  font-size: 3rem;
  color: #EFF2F4;
  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 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.8rem;
  text-align: center;
  color: #7E685A;
  margin: 0.8rem 0 1rem;
  font-family: 'Melon Pop', sans-serif;
  font-weight: 100;
}

.grooming-intro {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  max-width: 850px;
  margin: 0 auto 2.5rem;
}

/* Main Layout Container */
.grooming-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

/* Left Column - Grooming Cards */
.grooming-packages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.grooming-card {
  background-color: #DEE5DD;
  border-radius: 12px;
  border-left: 6px solid #A8BBA5;
  padding: 1.25rem;
  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.005);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.grooming-card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
}

.grooming-text {
  flex: 1;
}

.grooming-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-family: 'Melon Pop', sans-serif;
  font-weight: 100; 
  letter-spacing: 0.5px;
  color: #333;
}

.grooming-price {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: #777;
  font-family: 'Rubik', sans-serif;
  font-weight: 450;
}

.spa-card {
  min-height: 280px;
}

.spa-card .grooming-list {
  max-height: none;
  overflow-y: visible;
}

.grooming-list {
  overflow-y: auto;
  max-height: 145px;
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.grooming-list li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  font-family: 'Rubik', sans-serif;
  line-height: 1.4;
}

.grooming-image {
  width: 115px;
  height: 115px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Nail Services Pricing */
.item-label {
  display: inline-block;
  flex: 1;
}

.item-price {
  color: #777;
  padding-right: 0.3rem;
  white-space: nowrap;
  font-weight: 600;
  margin-left: 1rem;
}

.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 - Reduced Padding */
.grooming-form {
  background-color: #C2B9B0;
  padding: 1.5rem;
  border-radius: 12px;
  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: 'Melon Pop', sans-serif;
  font-weight: 100;
  font-size: 1.3rem;
  color: #333;
  text-align: center;
  letter-spacing: 0.5px;
}

.grooming-form p {
  text-align: center;
  font-size: 1.05rem;
  font-family: 'Rubik', sans-serif;
  margin: 0.25rem 0 1rem;
  color: #333;
  font-weight: 600;
}

.grooming-form label {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: #333;
}

.grooming-form input,
.grooming-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  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: #A8BBA5;
  outline: none;
}

.grooming-form button {
  margin-top: 1.25rem;
  padding: 0.7rem 1.25rem;
  width: 100%;
  font-size: 0.95rem;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  background-color: #A8BBA5;
  color: #EFF2F4;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.grooming-form button:hover {
  background-color: #859F81;
  transform: scale(1.02);
  transform: 0.3s ease;
}

/* Groomed Dog Image */
.grooming-form-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grooming-form-image img {
  max-width: 99%;
  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;
	font-family: 'Melon Pop', sans-serif;
  font-weight: 100;
}
.gallery-description {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #555;
  margin: 0 auto;
  margin-bottom: -1rem;
}
.facebook-photo {
    color: #A67BB8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.facebook-photo:hover {
    color: #845299;
}
.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.8rem;
  color: #7E685A;
  text-align: center;
  margin: 0;
  flex-shrink: 0;
  font-family: 'Melon pop', sans-serif;
  font-weight: 100;
}
.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;
  font-family: 'Melon pop', sans-serif;
  font-weight: 100;
}
.contact-info h2,
.contact-info h3 {
  font-size: 1.5rem;
  color: #7E685A;
  margin-top: 1rem;
  text-align: left;
  font-family: 'Melon pop', sans-serif;
  font-weight: 100;
}
.email-link {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.email-link:hover {
  color: #A8BBA5;
}
.contact-info p,
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-section a {
  color: #333;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: 'Rubik', sans-serif;
}
/* 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: #A8BBA5;
  color: #EFF2F4;
  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: #859F81;
  transform: scale(1.02);
  transform: 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #C9B3D1;
  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: #A8BBA5 !important;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-section .map-link:hover {
  color: #859F81 !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: 'Melon Pop', sans-serif;
  font-weight: 100;
  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: #A8BBA5;
  color: #EFF2F4;
  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: #859F81;
  transform: scale(1.02);
}

/* About Page */
.about-container {
  max-width: 1100px;
  margin: 2rem auto 3rem;
  padding: 2.5rem;
  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: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.about-text {
  flex: 1 1 58%;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-title {
  font-size: 2.2rem;
  color: #7E685A;
  margin-bottom: 1.5rem;
  margin-top: 0;
  font-family: 'Melon Pop', sans-serif;
  font-weight: 100;
  letter-spacing: 0.5px;
}

.about-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Owner Dogs Section */
.owner-dogs {
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 2px solid #A8BBA5;
  text-align: center;
}

.dogs-title {
  font-size: 1.8rem;
  color: #7E685A;
  margin-bottom: 1rem;
  margin-top: 0;
  font-family: 'Melon Pop', sans-serif;
  font-weight: 100;
  letter-spacing: 0.5px;
}

.dogs-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.dogs-photo-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.dogs-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dogs-photo:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    padding: 1.5rem;
    margin: 1.5rem auto;
  }
  
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-text,
  .about-image {
    flex: 1 1 100%;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .dogs-title {
    font-size: 1.5rem;
  }
  
  .dogs-photo {
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE WEB DESIGN — WAGGIN' TAILS
   Paste this entire block at the very bottom of styles.css,
   replacing your previous RWD block and the hamburger CSS.

   Breakpoints:
     Tablet : max-width 1024px
     Mobile : max-width 480px
   ============================================================ */


/* ============================================================
   HAMBURGER BUTTON — base styles (hidden on desktop)
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #EFF2F4;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate into X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}


/* ============================================================
   TABLET — max-width: 1024px
   ============================================================ */
@media (max-width: 1024px) {

  /* --- HEADER & NAV --- */
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .logo-brand img {
    height: 80px;
  }

  nav ul {
    justify-content: center;
    gap: 0.25rem;
  }

  nav ul li {
    margin: 0 12px;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  /* --- HOME PAGE --- */
  .home-banner {
    height: 450px !important;
    object-position: 55% top !important;
  }

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: none !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    padding: 1.5rem 1rem 1rem 1.25rem;
    text-align: left !important;
}
.overlay-logo {
    max-width: 290px !important;
    width: 80% !important;
    margin: 1.5rem 0 0.5rem 0 !important;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.9))
            drop-shadow(0 0 12px rgba(255,255,255,0.6))
            drop-shadow(0 0 20px rgba(255,255,255,0.3))!important;
}

.overlay-text {
    font-size: 1rem !important;
    margin: 0rem 0 0rem 0rem !important;
    text-align: left !important;
    line-height: 1.4;
    color: #EFF2F4;
    text-shadow: 0px 1px 4px rgba(0,0,0,0.6);
}

.banner-buttons {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.6rem;
    width: 100%;
    margin-top: 1rem !important;
	margin-left: -0.5rem !important;
    padding-left: 0.25rem;
}
	.btn-banner {
    width: 75%;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
}
	.phone-link {
    color: #7E685A;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #6B5A4D;
}

  .info-grid {
    gap: 1.5rem;
    margin: 1.5rem 0.5rem;
  }

  .info-box:first-child {
    margin-left: 0.5rem;
  }

  .info-box:last-child {
    margin-right: 0.5rem;
  }

  .mission-box {
    padding: 1rem 2rem;
  }
.content-box {
    overflow: visible;
}
.slideshow-container {
    height: 400px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.mySlide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    flex-grow: 0;
}

.mySlide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

  /* --- DAYCARE PAGE --- */
  .daycare-section {
    margin: 1.5rem auto 3rem;
    padding: 1.5rem;
  }

  .daycare-title {
    font-size: 2.2rem;
  }

  .daycare-container {
    flex-direction: column;
    gap: 1.5rem;
  }

.daycare-left,
.daycare-right {
    flex: 1 1 100%;
}

.daycare-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
}
	.daycare-pricing,
.daycare-form {
    flex: 1 1 45%;
}

  .daycare-events {
    margin: 0 auto 1rem;
    padding: 1.5rem;
  }

  .events-gallery.masonry {
    column-count: 2;
  }

  /* --- GROOMING PAGE --- */
  .grooming-section {
    margin: 1.5rem auto 2rem;
    padding: 1.5rem;
  }

  .grooming-title {
    font-size: 2.2rem;
  }

  .grooming-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .grooming-right-column {
    position: static;
    max-width: 100%;
  }

  /* --- PHOTO GALLERY PAGE --- */
  .box {
    margin: 1.5rem auto;
    padding: 1.5rem;
  }

  .masonry-grid {
    column-count: 2;
  }

  /* --- CONTACT PAGE --- */
  .contact-section {
    padding: 1rem 2.5rem;
    margin: 1.5rem auto 3rem;
  }

  .contact-title-wrapper {
    gap: 4rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  /* --- ABOUT PAGE --- */
  .about-container {
    padding: 2rem;
    margin: 1.5rem auto 2rem;
  }

  /* --- FOOTER --- */
  .footer-container {
    gap: 1.5rem;
  }
}


/* ============================================================
   MOBILE / iPHONE — max-width: 480px
   ============================================================ */
@media (max-width: 480px) {

  /* --- HAMBURGER: show the button --- */
  .hamburger {
    display: flex;
  }

  /* --- HEADER: logo left, burger right --- */
  header {
    position: relative;
  }

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.75rem 1rem;
    gap: 0;
  }

  .logo-brand img {
    height: 60px;
  }

  /* --- NAV: hidden by default, drops down when open --- */
  #main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #7E685A;
    z-index: 1000;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }

  #main-nav.open {
    display: block;
  }

  #main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
    gap: 0;
  }

  #main-nav ul li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  #main-nav ul li:last-child {
    border-bottom: none;
  }

  #main-nav ul li a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1.1rem;
    width: 100%;
  }

  /* hide paw watermark — overlaps badly on small screens */
  nav ul li a::after {
    display: none;
  }

  /* --- GLOBAL --- */
  body {
    font-size: 15px;
  }

  main {
    padding: 1rem 0.5rem;
  }

  /* --- HOME PAGE --- */
  .content-box {
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }

  /* Banner fix */
  .banner-wrapper {
    position: relative;
  }

  .home-banner {
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
  }

  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(
      to bottom,
      rgba(188,179,171,0.92) 0%,
      rgba(188,179,171,0.88) 60%,
      rgba(188,179,171,0.5) 85%,
      rgba(188,179,171,0.0) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 1.25rem 1rem;
    text-align: center;
  }

  .overlay-logo {
    max-width: 200px;
    width: 65%;
    margin: 0 auto 0.5rem;
    margin-left: auto;
  }

  .overlay-text {
    font-size: 0.85rem;
    margin: 0 auto 0.75rem;
    text-align: center;
    line-height: 1.4;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 0.5rem;
  }

  .btn-banner {
    width: 75%;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
  }
/* Contact info - Mobile */
.header-row {
  margin: 1rem 0.5rem 0.5rem;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

.contact-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.contact-info i {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.phone-link,
.address-link {
  display: inline;
}
  /* Holiday banner */
  .holiday-banner {
    margin: 0 0.75rem 1.5rem;
    padding: 0.75rem 1rem;
  }

  .holiday-banner h3 {
    font-size: 1rem;
  }

  .holiday-banner p {
    font-size: 0.9rem;
  }

  /* Info grid */
  .info-grid {
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0.5rem;
  }

  .info-box {
    flex: 1 1 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .info-box-image {
    width: 85%;
  }

  /* Mission box */
  .mission-box {
    padding: 0.75rem 1rem;
    margin: 0 auto !important;
  }

  .mission-box h3 {
    font-size: 1.4rem;
  }

  .mission-box p {
    font-size: 1rem;
  }

  /* Slideshow */
  .slideshow-container {
    height: 240px;
  }

  .mySlide img {
    max-height: 240px;
  }

  /* --- DAYCARE PAGE --- */
  .daycare-section {
    margin: 1rem 0.5rem 2rem;
    padding: 1rem;
    border-radius: 12px;
  }

  .daycare-title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }

  .daycare-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .daycare-container {
    flex-direction: column;
    gap: 1.2rem;
  }

  .daycare-requirements h2 {
    font-size: 1.25rem;
  }

  .daycare-requirements h3 {
    font-size: 1.05rem;
  }

  .daycare-requirements ul li {
    font-size: 0.95rem;
  }

  .info-accordion-header {
    font-size: 1.05rem;
    padding: 0.8rem;
  }

  .info-accordion-content p,
  .info-accordion-content ul li {
    font-size: 0.95rem;
  }

  .daycare-enroll-btn {
    max-width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .daycare-pricing h2 {
    font-size: 1.25rem;
  }

  .accordion-header {
    font-size: 1.05rem;
    padding: 0.8rem;
  }

  .accordion-content ul li {
    font-size: 0.85rem;
    padding: 0.6rem 0.75rem;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .item-label {
    flex: 1 1 60%;
  }

  .item-price {
    flex: 0 0 auto;
  }

  .daycare-form {
    padding: 1rem;
  }

  /* Events section */
  .daycare-events {
    margin: 0 0 1rem;
    padding: 1.25rem 1rem;
    border-radius: 12px;
  }

  .events-title {
    font-size: 1.6rem;
  }

  .events-intro {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .event-filter {
    gap: 0.4rem;
    margin-bottom: 1.25rem;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .events-gallery.masonry {
    column-count: 1;
  }

  /* Lightbox */
  .lightbox-arrow {
    font-size: 2rem;
    padding: 0 8px;
  }

  .left-arrow {
    left: 10px;
  }

  .right-arrow {
    right: 10px;
  }

  .lightbox-close {
    font-size: 2.2rem;
    top: 12px;
    right: 16px;
  }

  /* --- GROOMING PAGE --- */
  .grooming-section {
    margin: 1rem 0.5rem 2rem;
    padding: 1rem;
    border-radius: 12px;
  }

  .grooming-title {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
  }

  .grooming-intro {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .grooming-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .grooming-card {
    padding: 1rem;
  }

  .grooming-card-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .grooming-card-title {
    font-size: 1.15rem;
    text-align: center;
  }

  .grooming-image {
    width: 110px;
    height: 110px;
  }

  .grooming-list {
    max-height: none;
    overflow-y: visible;
  }

  .grooming-list li {
    font-size: 0.9rem;
  }

  .grooming-form {
    padding: 1rem;
  }

  .grooming-form h2 {
    font-size: 1.15rem;
  }

  .grooming-right-column {
    position: static;
  }

  /* --- PHOTO GALLERY PAGE --- */
  .box {
    margin: 1rem 0.5rem;
    padding: 1rem;
    border-radius: 12px;
  }

  .gallery-title {
    font-size: 1.75rem;
    margin-top: 0;
  }

  .gallery-description {
    font-size: 0.95rem;
  }

  .masonry-grid {
    column-count: 1;
  }

  /* --- CONTACT PAGE --- */
  .contact-section {
    margin: 1rem 0.5rem 2rem;
    padding: 1rem;
    border-radius: 12px;
  }

  .contact-title-wrapper {
    flex-direction: row !important;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-title-image {
    width: 70px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-info h2,
  .contact-info h3 {
    font-size: 1.25rem;
    margin-top: 0.75rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .map-container iframe {
    height: 200px;
  }

  .contact-form h2 {
    font-size: 1.25rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 0.7rem;
  }

  .contact-form button {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  /* --- ABOUT PAGE --- */
  .about-container {
    margin: 1rem 0.5rem 2rem;
    padding: 1.25rem;
    border-radius: 12px;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }

  .about-title {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about-image img {
    border-radius: 10px;
  }

  .owner-dogs {
    padding-top: 1.75rem;
    margin-top: 1.5rem;
  }

  .dogs-title {
    font-size: 1.5rem;
  }

  .dogs-description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  /* --- CONFIRMATION PAGE --- */
  .confirmation-section {
    margin: 0.75rem 0.5rem 2rem;
    padding: 1.25rem;
    border-radius: 12px;
  }

  .confirmation-section h1 {
    font-size: 1.7rem;
    margin-top: 0.5rem;
  }

  .confirmation-section p {
    font-size: 1rem;
  }

  .confirmation-image {
    max-width: 80%;
    margin: 1rem auto 1.5rem;
  }

  .confirmation-section a {
    display: inline-block;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
  }

  /* --- FOOTER --- */
  .footer {
    padding: 1.25rem 1rem 0.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 1.05rem;
  }

  .footer-column p {
    font-size: 0.85rem;
  }

  .footer-column ul li a {
    font-size: 0.9rem;
  }

  .facebook-link {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}