@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Give+You+Glory&display=swap');

:root {
    --purple: #4b2f6f;
    --light-purple: #d6ccdd;
    --dark: #06041b;
    --accent: #b88ae8;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--light-purple);
    color: var(--purple);
}

a {
    text-decoration: none;
}

.site-header {
    width: 100%;
    background: #b48ae1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 30px rgba(6, 4, 27, 0.18);
    background: rgba(180, 138, 225, 0.96);
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 62px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo img {
    max-height: 38px;
    width: auto;
    display: block;
}

.text-logo {
    font-size: 28px;
    color: var(--dark);
    font-weight: bold;
}

.main-nav ul {
    display: flex;
    gap: 36px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav a {
    color: var(--dark);
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
}

.main-nav a::after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--dark);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--dark);
    color: var(--white);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 20px;
}

.header-book-btn,
.main-btn {
    background: var(--dark);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 14px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}

.header-book-btn:hover,
.main-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 30px rgba(6, 4, 27, 0.35);
    background: #120b36;
}

.hero-section {
    min-height: 760px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: grid;
    place-items: center;
    margin-top: 62px;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.08), rgba(0,0,0,0.4));
    animation: softPulse 5s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(70px, 10vw, 145px);
    line-height: 1;
    margin: 0;
    font-weight: 400;
    letter-spacing: 4px;
    animation: heroFloat 4s ease-in-out infinite;
}

.hero-content p {
    margin-top: 20px;
    color: var(--accent);
    font-size: clamp(18px, 2vw, 30px);
    text-transform: uppercase;
    letter-spacing: 12px;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes softPulse {
    from { opacity: 0.65; }
    to { opacity: 1; }
}

.section-padding {
    padding: 76px 20px;
}

.container {
    width: min(1060px, 92%);
    margin: 0 auto;
}

.bordered-card {
    border: 4px solid var(--purple);
    border-radius: 18px;
    padding: 64px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bordered-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(75, 47, 111, 0.2);
}

.small-title {
    display: block;
    text-transform: uppercase;
    color: #856ca1;
    font-size: 15px;
    margin-bottom: 15px;
}

.about-section h2,
.basic-services h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    max-width: 720px;
}

.about-image {
    width: 100%;
    border-radius: 14px;
    margin-top: 28px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.about-image:hover {
    transform: scale(1.025);
    filter: saturate(1.15);
}

.why-section ul {
    line-height: 2.1;
    font-weight: bold;
}

.basic-services {
    background: var(--dark);
    color: var(--accent);
}

.service-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-grid ul {
    line-height: 2.2;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 50px;
    text-align: center;
}

.offer-card {
    padding: 28px;
    border-radius: 18px;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 22px 45px rgba(75, 47, 111, 0.2);
}

.offer-card img {
    height: 110px;
    max-width: 140px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.35s ease;
}

.offer-card:hover img {
    transform: rotate(-5deg) scale(1.12);
}

.default-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    font-size: 80px;
    color: var(--dark);
}

.offer-card h3 {
    font-size: 26px;
}

.text-center {
    text-align: center;
}

.cta-section h2 {
    max-width: 620px;
    margin: 0 auto 32px;
}

.gallery-section {
    background: var(--dark);
    padding: 40px 0;
    overflow: hidden;
}

.gallery-row {
    display: flex;
    gap: 24px;
    padding: 0 40px;
}

.gallery-row img {
    width: 32%;
    min-height: 260px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid var(--purple);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.gallery-row img:hover {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 22px 45px rgba(184, 138, 232, 0.25);
}

.site-footer {
    background: var(--dark);
    color: var(--accent);
    padding: 80px 20px;
}

.footer-grid {
    width: min(1060px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    text-align: center;
}

.footer-brand h2 {
    color: white;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 400;
    margin: 0;
}

.footer-brand p {
    text-transform: uppercase;
    letter-spacing: 12px;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: grid;
    place-items: center;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    animation: whatsappPulse 2s infinite;
    transition: transform 0.3s ease;
}

.floating-whatsapp svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    transform: scale(1.12) rotate(8deg);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 70px;
        flex-wrap: wrap;
        gap: 15px;
        padding: 14px 20px;
    }

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 5;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-book-btn {
        padding: 10px 16px;
    }

    .hero-section {
        margin-top: 94px;
        min-height: 560px;
    }

    .hero-content p {
        letter-spacing: 7px;
    }

    .bordered-card {
        padding: 36px 24px;
    }

    .service-grid,
    .offer-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-row {
        flex-direction: column;
    }

    .gallery-row img {
        width: 100%;
    }
}
/* ================================
   Furry spacing refinement
   Added after first local review
================================ */

.hero-section {
    min-height: 620px;
}

.section-padding {
    padding: 55px 20px;
}

.about-section {
    padding-top: 65px;
    padding-bottom: 55px;
}

.bordered-card {
    padding: 50px 58px;
}

.about-section h2,
.basic-services h2 {
    font-size: clamp(30px, 3.4vw, 46px);
    max-width: 760px;
}

.about-section p {
    max-width: 900px;
}

.about-image {
    margin-top: 24px;
    max-height: 430px;
    object-fit: cover;
}

.why-section {
    padding-top: 35px;
    padding-bottom: 65px;
}

.basic-services {
    padding-top: 70px;
    padding-bottom: 70px;
}

.offer-section {
    padding-top: 65px;
    padding-bottom: 60px;
}

.cta-section {
    padding-top: 45px;
    padding-bottom: 60px;
}

.site-footer {
    padding-top: 70px;
    padding-bottom: 70px;
}
/* =====================================
   Match section spacing with reference
===================================== */

/* Header height */
.site-header {
    height: 70px;
}

.header-inner {
    height: 70px;
}

/* Hero section like reference */
.hero-section {
    min-height: 830px;
    margin-top: 70px;
    background-position: center center;
}

.hero-content h1 {
    font-size: clamp(82px, 9vw, 135px);
    font-weight: 400;
    letter-spacing: 4px;
}

.hero-content p {
    font-size: 28px;
    letter-spacing: 12px;
    margin-top: 22px;
}

/* General page spacing */
.section-padding {
    padding: 70px 20px;
}

/* What We Offer section */
.offer-section {
    padding-top: 70px;
    padding-bottom: 85px;
}

.offer-section .bordered-card {
    width: min(1320px, 94%);
    padding: 70px 75px 80px;
    border-radius: 22px;
}

.offer-section .small-title {
    font-size: 18px;
    margin-bottom: 45px;
    color: #7b6494;
}

/* Service cards layout */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 85px;
    align-items: start;
    margin-top: 30px;
}

/* Service icons */
.offer-card img {
    width: 135px;
    height: 135px;
    object-fit: contain;
    margin-bottom: 32px;
}

/* Service title */
.offer-card h3 {
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 26px;
    color: #4b2f6f;
}

/* Service paragraph */
.offer-card p {
    font-size: 18px;
    line-height: 1.55;
    max-width: 340px;
    margin: 0 auto;
    color: #4b2f6f;
    font-weight: 600;
}

/* Reduce hover movement slightly */
.offer-card:hover {
    transform: translateY(-8px);
}

/* CTA below services */
.cta-section {
    padding-top: 35px;
    padding-bottom: 70px;
}

.cta-section h2 {
    font-size: 26px;
    line-height: 1.25;
    max-width: 650px;
}

/* Mobile adjustment */
@media (max-width: 900px) {
    .hero-section {
        min-height: 560px;
    }

    .offer-section .bordered-card {
        padding: 45px 25px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .offer-card img {
        width: 110px;
        height: 110px;
    }

    .offer-card h3 {
        font-size: 28px;
    }

    .offer-card p {
        font-size: 16px;
    }
}
/* =====================================
   Header readability improvement
===================================== */

.site-header {
    height: 82px;
    background: #b48ae1;
}

.header-inner {
    height: 82px;
    max-width: 1320px;
    padding: 0 36px;
}

/* Logo / text logo */
.text-logo {
    font-size: 34px;
    font-weight: 700;
    color: #06041b;
    line-height: 1;
}

.site-logo img {
    max-height: 52px;
    width: auto;
}

/* Main menu */
.main-nav ul {
    gap: 42px;
}

.main-nav a {
    font-size: 18px;
    font-weight: 500;
    color: #06041b;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* Header button */
.header-book-btn {
    font-size: 18px;
    padding: 18px 34px;
    border-radius: 18px;
    font-weight: 600;
}

/* Since header height changed, adjust hero position */
.hero-section {
    margin-top: 82px;
}

/* Mobile header */
@media (max-width: 900px) {
    .site-header {
        height: auto;
    }

    .header-inner {
        height: auto;
        min-height: 82px;
        padding: 16px 22px;
    }

    .text-logo {
        font-size: 30px;
    }

    .main-nav a {
        font-size: 15px;
    }

    .main-nav ul {
        gap: 18px;
    }

    .header-book-btn {
        font-size: 15px;
        padding: 14px 22px;
    }

    .hero-section {
        margin-top: 120px;
    }
}
/* =====================================
   Font update: Give You Glory + Cardo
===================================== */

/* Main website font */
body {
    font-family: 'Cardo', Georgia, serif;
}

/* Logo and hero title */
.text-logo,
.hero-content h1,
.footer-brand h2 {
    font-family: 'Give You Glory', cursive;
    font-weight: 400;
}

/* Main headings */
h1,
h2,
h3,
h4,
.about-section h2,
.basic-services h2,
.offer-card h3,
.cta-section h2 {
    font-family: 'Cardo', Georgia, serif;
    font-weight: 700;
}

/* Header menu and buttons */
.main-nav a,
.header-book-btn,
.main-btn {
    font-family: 'Cardo', Georgia, serif;
    font-weight: 700;
}

/* Hero title size adjustment for Give You Glory */
.hero-content h1 {
    font-size: clamp(90px, 10vw, 150px);
    letter-spacing: 2px;
}

/* Hero subtitle */
.hero-content p {
    font-family: 'Cardo', Georgia, serif;
    font-weight: 700;
    letter-spacing: 10px;
}
/* =====================================
   Footer layout with logo
===================================== */

.site-footer {
    background: #06041b;
    color: #b88ae8;
    padding: 85px 20px;
}

.footer-grid {
    width: min(1180px, 88%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.footer-contact h4 {
    font-family: 'Cardo', Georgia, serif;
    font-size: 24px;
    line-height: 1;
    margin: 0 0 42px;
    color: #b88ae8;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-line {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 0 0 24px;
    font-family: 'Cardo', Georgia, serif;
    font-size: 26px;
    line-height: 1.25;
    color: #b88ae8;
}

.footer-icon {
    min-width: 34px;
    font-size: 28px;
    line-height: 1;
    color: #b88ae8;
}

.footer-hours span {
    display: block;
    margin-bottom: 8px;
}

.footer-hours ul {
    margin: 0;
    padding-left: 28px;
}

.footer-hours li {
    font-size: 21px;
    line-height: 1.45;
    margin-bottom: 4px;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-logo img,
.footer-brand .custom-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Fallback text if no logo is uploaded */
.footer-brand h2 {
    font-family: 'Give You Glory', cursive;
    font-size: 82px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.footer-brand p {
    font-family: 'Cardo', Georgia, serif;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: #b88ae8;
    margin-top: 10px;
}

/* Mobile footer */
@media (max-width: 900px) {
    .site-footer {
        padding: 60px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: left;
    }

    .footer-line {
        font-size: 21px;
    }

    .footer-hours li {
        font-size: 18px;
    }

    .footer-brand {
        justify-content: flex-start;
    }

    .footer-logo img,
    .footer-brand .custom-logo {
        max-width: 300px;
    }
}
/* Increase only service icon size */
.offer-card img {
    width: 180px !important;
    height: 180px !important;
    object-fit: contain;
    transform: scale(1.6);
    transform-origin: center;
    margin-bottom: 40px;
}

/* Keep card size unchanged */
.offer-card {
    padding: 28px !important;
}
/* =====================================
   Hero floating paw cursor
===================================== */

.hero-section {
    cursor: none;
}

.hero-paw-cursor {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(184, 138, 232, 0.22);
    border: 2px solid rgba(184, 138, 232, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 6;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 40px rgba(6, 4, 27, 0.28);
    backdrop-filter: blur(6px);
    transition: opacity 0.25s ease;
}

.hero-paw-cursor span {
    font-size: 34px;
    line-height: 1;
    display: block;
    transform: rotate(-12deg);
    animation: pawBounce 1.4s ease-in-out infinite;
}

@keyframes pawBounce {
    0%, 100% {
        transform: rotate(-12deg) scale(1);
    }

    50% {
        transform: rotate(8deg) scale(1.12);
    }
}

.hero-paw-cursor.is-hidden {
    opacity: 0;
}

@media (max-width: 900px) {
    .hero-section {
        cursor: auto;
    }

    .hero-paw-cursor {
        display: none;
    }
}

/* =====================================
   Final fix: hero floating paw cursor
   CSS only - JavaScript is in assets/js/main.js
===================================== */
.hero-section {
    cursor: none;
}

.hero-paw-cursor {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(184, 138, 232, 0.24);
    border: 2px solid rgba(184, 138, 232, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 20;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 40px rgba(6, 4, 27, 0.28);
    backdrop-filter: blur(6px);
    transition: opacity 0.22s ease;
    will-change: left, top;
}

.hero-paw-cursor span {
    font-size: 34px;
    line-height: 1;
    display: block;
    animation: pawBounce 1.4s ease-in-out infinite;
}

.hero-paw-cursor.is-hidden {
    opacity: 0;
}

@keyframes pawBounce {
    0%, 100% {
        transform: rotate(-12deg) scale(1);
    }
    50% {
        transform: rotate(8deg) scale(1.12);
    }
}

@media (max-width: 900px) {
    .hero-section {
        cursor: auto;
    }

    .hero-paw-cursor {
        display: none;
    }
}

/* =====================================
   Final interaction: right-click paw stamp
   Floating mouse-follow paw is disabled.
===================================== */

/* Use normal cursor on hero; right-click creates a paw stamp */
.hero-section {
    cursor: auto !important;
    position: relative;
}

/* Hide old floating paw cursor if the HTML still exists in front-page.php */
.hero-paw-cursor {
    display: none !important;
}

/* Temporary paw stamp created by JavaScript */
.hero-paw-stamp {
    position: absolute;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(184, 138, 232, 0.28);
    border: 2px solid rgba(184, 138, 232, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 30;
    transform: translate(-50%, -50%) scale(0.4) rotate(-12deg);
    opacity: 0;
    box-shadow: 0 18px 45px rgba(6, 4, 27, 0.28);
    backdrop-filter: blur(6px);
    animation: pawStampShow 5s ease forwards;
}

.hero-paw-stamp span {
    font-size: 38px;
    line-height: 1;
    display: block;
}

@keyframes pawStampShow {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.4) rotate(-12deg);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.12) rotate(6deg);
    }

    18% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    82% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7) rotate(12deg);
    }
}

@media (max-width: 900px) {
    .hero-paw-stamp {
        width: 64px;
        height: 64px;
    }

    .hero-paw-stamp span {
        font-size: 30px;
    }
}
/* =====================================
   Gallery layout fix - show all 3 images
===================================== */

.gallery-section {
    background: #06041b;
    padding: 70px 0;
    overflow: visible !important;
}

.gallery-row {
    width: min(1280px, 94%);
    margin: 0 auto;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-row img {
    width: 100% !important;
    height: 310px;
    min-height: unset !important;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid #4b2f6f;
}

/* Mobile */
@media (max-width: 900px) {
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-row img {
        height: 260px;
    }
}
/* Temporary gallery debug layout */
.gallery-row {
    width: min(1280px, 94%) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
}

.gallery-debug-item img {
    width: 100% !important;
    height: 310px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    border: 3px solid #4b2f6f !important;
    display: block !important;
}

.gallery-debug-item small {
    display: block;
    color: #b88ae8;
    margin-top: 10px;
    font-size: 14px;
}

.gallery-debug-missing {
    min-height: 310px;
    border: 3px dashed red;
    color: white;
    background: rgba(255, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 16px;
}
