/* Global Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #e6d6ff; /* light purple */
    color: white; /* white text */
}

/* Header */
header {
    background-color: #c59bff; /* deeper purple for contrast */
    padding: 20px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Navigation Bar */
nav {
    background-color: #b388ff;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #ffffff;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Content Sections */
section {
    padding: 20px;
    margin: 10px;
    background-color: rgba(100, 50, 150, 0.35); /* darker purple */
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6); /* stronger shadow */
}


/* Paw‑print bullet lists */
section ul {
    list-style: none; /* remove default bullets */
    padding-left: 0;
}

section ul li {
    margin: 8px 0;
    padding-left: 30px;
    position: relative;
}

/* White paw‑print icon */
section ul li::before {
    content: "🐾"; /* paw print emoji */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: white; /* white paw prints */
}

/* Tables (if you keep pricing as a table) */
table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #c59bff;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
/* Photo Gallery Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px; /* increased spacing between photos */
    margin-top: 20px;
}

/* Image styling with paw-print frame */
.photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    border: 4px solid white;
    padding: 12px; /* more padding so paw prints don't overlap */
    background-color: rgba(255,255,255,0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation */
.photo-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}

/* Paw-print border using emoji */
.photo-grid img::before {
    content: "🐾 🐾 🐾 🐾";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

.photo-grid img::after {
    content: "🐾 🐾 🐾 🐾";
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}


.photo-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
/* Hover animation for gallery images */
.photo-grid img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.6);
}
/* Paw-print frame */
.photo-grid img {
    border: 4px solid white;
    border-radius: 12px;
    padding: 6px;
    background-image: url('pawprint.png');
    background-size: 40px;
    background-repeat: repeat;
}
/* Paw-print emoji frame */
.photo-grid img {
    position: relative;
    padding: 10px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 12px;
    border: 3px solid white;
}

/* Paw-print border using emoji */
.photo-grid img::before {
    content: "🐾 🐾 🐾 🐾";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

.photo-grid img::after {
    content: "🐾 🐾 🐾 🐾";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}
/* Contact Section */
#contact {
    padding: 20px;
    margin: 20px 10px;
    background-color: rgba(100, 50, 150, 0.35);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

#contact a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
}

#contact ul {
    list-style: none;
    padding-left: 0;
}

#contact ul li {
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
}

/* Paw-print bullets for contact section */
#contact ul li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
}
/* Paw-print divider */
.paw-divider {
    text-align: center;
    font-size: 28px;
    margin: 10px 0 20px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
/* Contact Form Section */
#contact-form {
    padding: 20px;
    margin: 20px 10px;
    background-color: rgba(100, 50, 150, 0.35);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

#contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contact-form input,
#contact-form textarea {
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

#contact-form button {
    padding: 12px;
    background-color: #b388ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

#contact-form button:hover {
    background-color: #c59bff;
    transform: scale(1.05);
}

/* Map Section */
#map {
    padding: 20px;
    margin: 20px 10px;
    background-color: rgba(100, 50, 150, 0.35);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.map-container {
    margin-top: 15px;
}
/* About Page Layout */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.about-photo {
    width: 280px;
    height: auto;
    border-radius: 12px;
    border: 4px solid white;
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}

.about-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

