/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple-hero-from: #e2d5f5;
    --purple-hero-to:   #cdb8ec;
    --purple-light:     #d8c8f0;
    --purple-mid:       #9b7bc4;
    --purple-dark:      #5e3a9c;
    --purple-deep:      #3d2570;
    --section-alt:      #f5f0fc;
    --text-dark:        #2c2234;
    --text-medium:      #5a4e6a;
    --text-light:       #8a7a9a;
    --white:            #ffffff;
    --font-serif:       'Playfair Display', Georgia, serif;
    --font-sans:        'Lato', 'Open Sans', sans-serif;
    --shadow:           0 4px 24px rgba(94, 58, 156, 0.10);
    --shadow-strong:    0 6px 32px rgba(94, 58, 156, 0.18);
    --radius:           14px;
}

html {
    scroll-behavior: smooth;
}

@keyframes pageIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 16px;
    background: var(--white);
    animation: pageIn 0.3s ease backwards;
}

body.fade-out {
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(94, 58, 156, 0.08);
    transition: box-shadow 0.3s;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--purple-dark);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo:hover {
    color: var(--purple-mid);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--purple-dark);
    border-color: var(--purple-mid);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, #ede5f8 0%, #daccf2 35%, #cdb8ec 65%, #c4aee8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(255,255,255,0.35) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 25%, rgba(200,170,240,0.35) 0%, transparent 40%),
        radial-gradient(ellipse at 55% 85%, rgba(180,145,225,0.25) 0%, transparent 40%);
    pointer-events: none;
}

/* decorative blobs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    pointer-events: none;
}
.hero-bubble--bl  { width: 520px; height: 520px; bottom: -200px; left: -200px; }
.hero-bubble--mid { width: 300px; height: 300px; top: 20%; left: 38%; }
.hero-bubble--sm  { width: 180px; height: 180px; bottom: 18%; right: 24%; }
.hero-bubble--tl  { width: 230px; height: 230px; top: 8%;  left: 12%; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-logo-full {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.hero-logo-tail {
    height: 220px;
    width: auto;
    margin-top: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 9vw, 6.5rem);
    color: var(--text-dark);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--purple-deep);
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-sub::before,
.hero-sub::after {
    content: '';
    width: 1.2rem;
    height: 1.2rem;
    background-image: url('../images/Cruella_head.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
    filter: brightness(0);
}

.inline-head {
    height: 1.1em;
    width: auto;
    vertical-align: middle;
    filter: brightness(0);
}

.cta-button {
    display: inline-block;
    background: var(--purple-dark);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 6px 20px rgba(62, 37, 112, 0.3);
}

.cta-button:hover {
    background: var(--purple-mid);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(62, 37, 112, 0.35);
}


/* ── Language switcher ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1.5rem;
}

.lang-btn img {
    width: 30px;
    height: 21px;
    object-fit: cover;
    display: block;
    border-radius: 3px;
}

.lang-btn {
    padding: 0;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    display: block;
    transition: border-color 0.2s;
}

.lang-btn:hover {
    border-color: var(--purple-mid);
}

.lang-btn.lang-active {
    border-color: var(--purple-dark);
    cursor: default;
}

.lang-btn.lang-active:hover {
    border-color: var(--purple-dark);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0.5rem;
    }
}

/* ── Page header (undersidor) ── */
.page-header {
    background: linear-gradient(150deg, #ede5f8 0%, #daccf2 60%, #cdb8ec 100%);
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    position: relative;
    z-index: 1;
}

.page-header h1::before {
    content: '';
    width: 4.8rem;
    height: 4.8rem;
    background-image: url('../images/Cruella_head.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
    transform: translateY(-2.9rem);
    margin-right: -3.2rem;
}

.page-header h1::after {
    content: '';
    width: 4.5rem;
    height: 4.5rem;
    background-image: url('../images/Cruella_tail.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
    transform: translateY(2.1rem) rotate(-20deg);
    margin-left: -4rem;
}

.page-header--booking h1::after {
    transform: translateY(2.5rem) rotate(-20deg);
}

.page-header p {
    font-size: 1.05rem;
    color: var(--text-medium);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ── Shared Sections ── */
.section {
    padding: 5rem 1.5rem;
}

.section-alt {
    background: var(--section-alt);
}

.section--compact-top {
    padding-top: 1.5rem;
}

.container {
    max-width: 820px;
    margin: 0 auto;
}

.section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--purple-dark);
    margin: 2rem 0 0.8rem;
}

.section p {
    margin-bottom: 1.2rem;
    color: var(--text-medium);
    font-size: 1.05rem;
}

/* ── Requirements ── */
.requirements {
    list-style: none;
    margin: 0.5rem 0 1.5rem;
}

.requirements li {
    padding: 0.55rem 0 0.55rem 2.2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.requirements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 1.3rem;
    height: 1.3rem;
    background-image: url('../images/Cruella_head.png');
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0);
}

/* ── Vacation grid ── */
.vacation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vacation-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--purple-mid);
}

.vacation-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--purple-dark);
}

.vacation-card ul {
    list-style: none;
}

.vacation-card li {
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(155,123,196,0.12);
    color: var(--text-medium);
    font-size: 0.97rem;
}

.vacation-card li:last-child {
    border-bottom: none;
}

.hours-photo {
    max-width: 500px;
    margin: 2rem auto 0;
}

.hours-photo .about-photo {
    height: auto;
    object-fit: contain;
    clip-path: none;
    width: 100%;
}

.small {
    font-size: 0.82rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.2rem;
}

.hours-main {
    font-size: 1.15rem !important;
    color: var(--text-dark) !important;
}

/* ── About photos ── */
.about-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 2rem 0 2.5rem;
}

.about-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.about-photo:first-child {
    object-position: center 85%;
    clip-path: inset(8% 0 8% 0 round var(--radius));
}

.about-photo:last-child {
    object-position: center top;
    clip-path: inset(8% 0 8% 0 round var(--radius));
}

/* Gallery photos (home page) */
.about-photos--gallery .about-photo {
    height: auto;
    object-fit: contain;
    clip-path: none;
}

/* Single photo (om oss) */
.about-photos--single {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-photos--single .about-photo {
    height: 560px;
    object-fit: cover;
    object-position: center 65%;
    clip-path: none;
}

/* Booking page photos */
.about-photos--booking .about-photo:first-child {
    object-position: center center;
    clip-path: none;
}
.about-photos--booking .about-photo:last-child {
    object-position: center 30%;
    clip-path: inset(0 0 12% 0 round var(--radius));
}

@media (max-width: 600px) {
    .about-photos {
        grid-template-columns: 1fr;
    }
    .about-photo {
        height: 320px;
    }
}

/* ── Education list ── */
.education-list {
    list-style: none;
    margin: 0.5rem 0;
}

.education-list li {
    padding: 0.65rem 0 0.65rem 1.6rem;
    border-bottom: 1px solid rgba(155,123,196,0.12);
    position: relative;
    color: var(--text-medium);
    font-size: 0.98rem;
}

.education-list li:last-child {
    border-bottom: none;
}

.education-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--purple-mid);
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.35;
}

/* ── Price card ── */
.price-card {
    background: white;
    border-top: 3px solid var(--purple-mid);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-strong);
    margin-bottom: 2rem;
}

.price-badge {
    display: inline-block;
    background: var(--purple-light);
    color: var(--purple-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.price-card h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.price-tag {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin: 1.5rem 0 0.4rem;
    font-family: var(--font-serif);
    line-height: 1;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-sans);
}

.price-note {
    font-size: 0.88rem !important;
    color: var(--text-light) !important;
    margin-bottom: 1.5rem;
}

.multi-dog {
    background: var(--section-alt);
    border-top: 3px solid var(--purple-mid);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    margin-top: 1rem;
}

.multi-dog p {
    margin-bottom: 0.6rem;
    font-size: 0.97rem !important;
}

.multi-dog ul {
    list-style: none;
}

.multi-dog li {
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.multi-dog li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--purple-mid);
}

.info-box {
    border-top: 3px solid var(--purple-mid);
    background: white;
    border-radius: var(--radius);
    padding: 1.6rem 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.startup-note {
    text-align: center;
    color: var(--text-light) !important;
    font-size: 0.95rem !important;
    padding: 1rem 1.5rem;
    background: rgba(155, 123, 196, 0.08);
    border-radius: var(--radius);
    border: 1px dashed rgba(155, 123, 196, 0.3);
}

/* ── Contact form ── */
.contact-form {
    margin-top: 2rem;
}

.form-section-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--purple-dark);
    margin: 2rem 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--purple-light);
}

.form-section-title:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.required {
    color: #e03030;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e2d8f2;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--purple-mid);
    box-shadow: 0 0 0 3px rgba(155, 123, 196, 0.18);
}

textarea {
    resize: vertical;
    min-height: 130px;
}

.form-checkbox-group {
    margin-top: 1rem;
    margin-bottom: 1.8rem;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.form-checkbox-label input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    accent-color: var(--purple-dark);
    cursor: pointer;
}

.form-checkbox-label a {
    color: var(--purple-dark);
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background: var(--purple-dark);
    color: white;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-sans);
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(62, 37, 112, 0.25);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.submit-button::after {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    background-image: url('../images/Cruella_head.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.submit-button:hover {
    background: var(--purple-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62, 37, 112, 0.3);
}

.submit-button:disabled {
    background: #a090c0;
    cursor: default;
    transform: none;
}

.form-success {
    text-align: center;
    color: var(--purple-dark);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    min-height: 1.5rem;
}

/* ── Terms modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 34, 52, 0.55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: var(--radius);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-strong);
    position: relative;
}

.modal h2 {
    font-size: 1.3rem;
    color: var(--purple-deep);
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 2px solid var(--section-alt);
    margin: 0;
}

.modal-body {
    overflow-y: auto;
    padding: 1.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.modal-body h3 {
    color: var(--purple-dark);
    font-size: 1rem;
    margin: 1.4rem 0 0.4rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin: 0 0 0.6rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.2rem 0.5rem;
}

.modal-close:hover {
    color: var(--purple-dark);
}

/* ── Footer ── */
.footer {
    background: var(--purple-deep);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 3rem 1.5rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    color: rgba(255,255,255,0.6);
}

.footer-location {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0.5rem 0 1rem;
        box-shadow: 0 8px 24px rgba(94, 58, 156, 0.12);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.9rem 1.8rem;
        border-bottom: 1px solid rgba(155,123,196,0.1);
        display: block;
        font-size: 0.92rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        font-size: 0.95rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .section {
        padding: 3rem 1.2rem;
    }

    .page-header {
        padding: 6rem 1.2rem 3rem;
    }

    .page-header h1::before {
        width: 3rem;
        height: 3rem;
        transform: translateY(-1.8rem);
        margin-right: -2rem;
    }

    .page-header h1::after {
        width: 2.8rem;
        height: 2.8rem;
        transform: translateY(1.4rem) rotate(-20deg);
        margin-left: -2.5rem;
    }

    .vacation-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 1.5rem;
    }

    .price-tag {
        font-size: 2.2rem;
    }

    .about-photos--single .about-photo {
        height: 380px;
    }

    .modal {
        max-height: 90vh;
    }

    .modal h2 {
        font-size: 1.1rem;
        padding: 1.2rem 2.5rem 0.8rem 1.2rem;
    }

    .modal-body {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-logo span,
    .nav-logo {
        font-size: 0.85rem;
    }

    .hero {
        padding: 5rem 1.2rem 3rem;
    }

    .hero-logo-full {
        max-width: 85vw;
    }

    .page-header h1::before,
    .page-header h1::after {
        display: none;
    }

    .price-tag {
        font-size: 1.9rem;
    }

    .about-photos--single .about-photo {
        height: 300px;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.88rem;
    }

    .surcharge-note,
    .startup-note {
        font-size: 0.9rem !important;
    }
}
