/* ------------------------------
   GLOBAL STYLES
------------------------------ */

body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-size: 1.125rem;
    color: #e6e6e6; /* soft white for readability */
    background: #000000; /* full black background */
    line-height: 1.6;
}

/* ------------------------------
   HEADINGS
------------------------------ */

h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 3rem;
    margin-top: 0;
    text-shadow:
        0 0 8px rgba(139, 0, 0, 0.7),
        0 0 16px rgba(139, 0, 0, 0.45),
        0 0 26px rgba(139, 0, 0, 0.3);
}

.page-heading {
    text-align: center;
    color: #ffffff;
    margin-bottom: 4px;
}

.heading-divider {
    text-align: center;
    color: #8b0000;
    font-size: 1rem;
    margin-bottom: 24px;
    position: relative;
}

.heading-divider span {
    display: inline-block;
    padding: 0 16px;
    background: #000000;
    position: relative;
    z-index: 1;
}

.heading-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(to right, transparent, #8b0000, transparent);
}

.hero-overlay .heading-divider span {
    background: rgba(20, 0, 0, 0.8);
}

.about-column .heading-divider {
    text-align: left;
}

.about-column .heading-divider span {
    padding: 0 16px 0 0;
}

.about-column .heading-divider::before {
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    background: linear-gradient(to right, #8b0000, transparent);
}

.character-sheet .heading-divider span {
    background: #0a0a0a;
}

.contact-intro {
    text-align: center;
    color: #bbbbbb;
}

/* ------------------------------
   HEADER & NAVIGATION
------------------------------ */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000000; /* keep header black */
    border-bottom: 1px solid #330000; /* subtle dark red border */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo block layout */
.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers both the logo and tagline */
    text-align: center;  /* ensures tagline text centers properly */
}

/* Signature-style logo */
header h1 {
    font-family: 'Great Vibes', cursive; /* or Great Vibes */
    color: #8b0000;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;

    /* Elegant glow */
    text-shadow:
        0 0 6px rgba(139, 0, 0, 0.6),
        0 0 12px rgba(139, 0, 0, 0.4),
        0 0 18px rgba(139, 0, 0, 0.25);
}

/* Tagline under the logo */
.tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: #b30000;
    margin: -6px 0 0 0; /* remove the left offset */
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    text-align: center;
}

nav a {
    position: relative;
    display: inline-block;
    margin-left: 24px;
    padding-bottom: 6px;
    color: #cccccc;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #8b0000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    transform: scaleX(1);
}

nav a.active {
    font-weight: bold;
    color: #ffffff;
}

nav a.active::after {
    transform: scaleX(1);
}

/* ------------------------------
   HERO SECTION
------------------------------ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;

    background-image: url("photos/hero.jpg");
    background-size: cover;
    background-position: center 10%; /* keeps the top visible */
    background-repeat: no-repeat;

    background-attachment: fixed; /* restores the parallax */

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Soft dark overlay to keep text readable */
.hero-overlay {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    color: #e6e6e6;
}

/* ------------------------------
   BUTTONS
------------------------------ */

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #8b0000; /* sultry red */
    color: white;
    border-radius: 6px;
    margin-top: 20px;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #5c0000; /* darker red on hover */
}

.social-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 18px;
}

.social-links a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #8b0000;
    border-radius: 6px;
    color: #e6e6e6;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    background: #8b0000;
    color: #ffffff;
}

/* ------------------------------
   SECTIONS
------------------------------ */

.section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
}

.services-list li {
    margin-bottom: 12px;
}

/* ------------------------------
   ABOUT PAGE
------------------------------ */

.about-banner {
    width: 100%;
    max-width: 1040px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 40px auto 0;
    max-height: 520px;
}

.about-banner img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center 45%;
    border: 1px solid #330000;
    border-radius: 12px;
}

.about-columns-section {
    max-width: 1000px;
}

.about-columns {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-column {
    flex: 1;
}

.about-column h3 {
    margin-bottom: 16px;
}

.character-sheet {
    background: #0a0a0a;
    border: 1px solid #330000;
    border-radius: 12px;
    padding: 30px;
}

.paw-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.paw-list li {
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
}

.paw-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url("photos/paw-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.inline-paw {
    height: 1em;
    width: auto;
    vertical-align: -0.15em;
    display: inline-block;
}

.bio-panel p {
    margin-bottom: 20px;
}

.bio-panel p:last-child {
    margin-bottom: 0;
}

/* ------------------------------
   SERVICES PAGE
------------------------------ */

.services-columns-section {
    max-width: 1000px;
    padding-top: 60px;
}

.services-columns {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.services-column {
    flex: 1;
    min-width: 0;
}

.services-image {
    border: 1px solid #330000;
    border-radius: 12px;
    overflow: hidden;
    height: 720px;
    position: sticky;
    top: 100px;
}

.services-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: #0a0a0a;
    border: 1px solid #330000;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item-important {
    border: 1px solid #8b0000;
    box-shadow: 0 0 24px rgba(139, 0, 0, 0.35);
}

.important-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: #8b0000;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 12px;
    vertical-align: middle;
}

.accordion-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #e6e6e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: "+";
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: #8b0000;
    transition: transform 0.25s ease;
}

.accordion-item.icon-open summary::after {
    transform: rotate(45deg);
}

.accordion-item summary:hover {
    color: #8b0000;
}

.accordion-content {
    padding: 0 22px 22px;
    border-top: 1px solid #221010;
    padding-top: 18px;
}

.accordion-content p {
    margin: 0 0 16px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid #221010;
}

.pricing-tier:last-child {
    border-bottom: none;
}

.tier-name {
    font-size: 1.1rem;
    color: #e6e6e6;
}

.tier-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b0000;
}

/* ------------------------------
   GALLERY
------------------------------ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #330000;
    background: #0a0a0a;
    cursor: pointer;
    position: relative;
}

.gallery-grid img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.gallery-grid figure::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(139, 0, 0, 0);
    transition: box-shadow 0.3s ease;
    pointer-events: none;
}

.gallery-grid figure:hover::after {
    box-shadow: inset 0 0 0 2px rgba(139, 0, 0, 0.8);
}

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #e6e6e6;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    user-select: none;
}

.lightbox-close:hover {
    color: #8b0000;
}

/* ------------------------------
   CONTACT FORM
------------------------------ */

input, textarea {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    background: #111;
    color: #e6e6e6;
}

input:focus, textarea:focus {
    border-color: #8b0000;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
    margin: 30px auto 0;
    background: #0a0a0a;
    border: 1px solid #330000;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 1.125rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cccccc;
}

.field .required {
    color: #8b0000;
}

.field-error {
    display: none;
    font-size: 0.85rem;
    color: #ff6b6b;
    margin-top: 4px;
}

.field-error.visible {
    display: block;
}

.field input.invalid,
.field textarea.invalid {
    border-color: #ff6b6b;
}

.field .field-note {
    text-transform: none;
    letter-spacing: normal;
    color: #777;
    font-size: 1rem;
}

.note-sized {
    font-size: 1rem;
    color: #777;
    letter-spacing: normal;
}

.group-label {
    font-size: 1.125rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cccccc;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 1.125rem;
    color: #e6e6e6;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8b0000;
    cursor: pointer;
}

.field-row {
    display: flex;
    gap: 16px;
}

.field-row .field {
    flex: 1;
}

/* Native calendar picker icon, tinted to match the theme */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(20%) sepia(80%) saturate(2000%) hue-rotate(330deg);
    cursor: pointer;
}

/* Time picker trigger button */
.time-field {
    position: relative;
}

.time-picker-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    background: #111;
    color: #e6e6e6;
    font-family: 'Jost', sans-serif;
    text-align: left;
    cursor: pointer;
}

.time-picker-trigger::after {
    content: "🕒";
    filter: grayscale(1) brightness(1.6) sepia(1) saturate(4) hue-rotate(310deg);
    margin-left: 8px;
}

.time-picker-trigger:hover,
.time-picker-trigger:focus {
    border-color: #8b0000;
    outline: none;
}

.time-picker-trigger.filled span {
    color: #e6e6e6;
}

.time-picker-trigger span {
    color: #777;
}

/* Popup panel */
.time-picker-popup {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    background: #0d0d0d;
    border: 1px solid #330000;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    width: 220px;
}

.time-picker-popup.open {
    display: block;
}

.time-picker-columns {
    display: flex;
    gap: 8px;
    height: 160px;
}

.time-picker-col {
    flex: 1;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    border: 1px solid #221010;
    border-radius: 6px;
    background: #111;
    scrollbar-width: thin;
    scrollbar-color: #8b0000 #111;
}

.time-picker-col::-webkit-scrollbar {
    width: 5px;
}

.time-picker-col::-webkit-scrollbar-thumb {
    background: #8b0000;
    border-radius: 4px;
}

.time-picker-option {
    scroll-snap-align: center;
    text-align: center;
    padding: 13px 0;
    font-size: 1.125rem;
    color: #cccccc;
    cursor: pointer;
    user-select: none;
}

.time-picker-option:hover {
    background: rgba(139, 0, 0, 0.2);
}

.time-picker-option.selected {
    color: #ffffff;
    background: #8b0000;
    font-weight: 600;
}

.time-picker-done {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 8px;
    font-size: 1.125rem;
}

.consent-field {
    border-top: 1px solid #221010;
    padding-top: 18px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 1.125rem;
    color: #bbbbbb;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #8b0000;
    cursor: pointer;
}

#submitBtn {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

#submitBtn:disabled {
    background: #3a1414;
    color: #888;
    cursor: not-allowed;
}

#formStatus {
    margin-top: 15px;
    font-weight: bold;
    color: #8b0000;
    text-align: center;
}

/* ------------------------------
   FOOTER
------------------------------ */

.site-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid #221010;
}

.site-footer p {
    font-size: 0.75rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */

@media (max-width: 700px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        margin-left: 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .field-row {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-overlay {
        padding: 32px 16px;
    }

    .time-picker-popup {
        max-width: calc(100vw - 80px);
    }

    .about-columns {
        flex-direction: column;
        gap: 30px;
    }

    .about-banner {
        max-height: 280px;
    }

    .about-banner img {
        max-height: 280px;
    }

    .services-columns {
        flex-direction: column;
        gap: 30px;
    }

    .services-image {
        height: 380px;
        position: static;
    }

    .services-columns-section {
        padding-top: 30px;
    }
}