/* Global Styles */
:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #000000;
    --secondary-bg: #f5f5f5;
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;

    --section-padding-y: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
    font-weight: 300;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed), background-color var(--transition-speed), transform var(--transition-speed);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.05em;
    text-transform: lowercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.2rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.25s;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
    padding: 0 5%;
    color: #ffffff;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
        url('fotos/240821_Welpen_R6_80679226_00.jpg'); /* hier kannst du dein Lieblingsbild setzen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    max-width: 720px;
    z-index: 1;
    padding-top: 5rem; /* etwas Platz wegen Fix-Header */
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.93);
}

.hero-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.9rem 2.6rem;
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.ghost-button {
    display: inline-block;
    padding: 0.85rem 2.3rem;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    font-weight: 500;
}

.ghost-button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Container & Sections */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--section-padding-y) 5%;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.section-intro {
    max-width: 650px;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background-color: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.about-text h4 {
    margin-top: 1.5rem;
    font-size: 1.15rem;
}

.about-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.about-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.98rem;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -0.05rem;
    font-size: 1.2rem;
}

.about-links a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-inner {
    border-radius: 1.5rem;
    border: 1px solid #ddd;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

.about-image-inner p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
}

.about-image-inner span {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    opacity: 0;
    animation: fadeIn 0.9s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 2;
    border-radius: 0.75rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Info Section (Ablauf & Pakete) */
.info {
    background-color: var(--secondary-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
    gap: 3rem;
}

.info-block h3 {
    margin-bottom: 1rem;
}

.process-list {
    list-style: none;
    counter-reset: step;
    margin-top: 1rem;
}

.process-list li {
    counter-increment: step;
    margin-bottom: 1rem;
    padding-left: 2.2rem;
    position: relative;
    font-size: 0.98rem;
}

.process-list li::before {
    content: counter(step) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    font-size: 1rem;
}

.package {
    background-color: #ffffff;
    padding: 1.3rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e5e5;
    margin-bottom: 1rem;
}

.package h4 {
    margin-bottom: 0.6rem;
}

.package ul {
    list-style: none;
    margin-top: 0.4rem;
}

.package ul li {
    padding-left: 1.1rem;
    position: relative;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.package ul li::before {
    content: "–";
    position: absolute;
    left: 0;
}

.info-note {
    font-size: 0.95rem;
    margin-top: 0.8rem;
}

/* Contact Section */
.contact {
    background-color: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
}

.contact-box {
    background-color: #f7f7f7;
    border-radius: 1.3rem;
    padding: 2rem;
}

.contact-mail {
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-location {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.9rem 2.6rem;
    border-radius: 999px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
}

.contact-button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.contact-extra ul {
    list-style: none;
    margin-bottom: 0.8rem;
}

.contact-extra ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.35rem;
    font-size: 0.96rem;
}

.contact-extra ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -0.05rem;
    font-size: 1.1rem;
}

.contact-hint {
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #111111;
    color: #999999;
    padding: 2.5rem 5%;
    font-size: 0.9rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.4rem;
    opacity: 0.75;
}

.social-links a:hover {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover {
    color: #bbbbbb;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2002;
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Fixierter Floating-CTA */
.fixed-cta {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1500;
    background-color: #000000;
    color: #ffffff;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.fixed-cta:hover {
    background-color: #222222;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.4rem;
    }

    .hero {
        text-align: left;
        align-items: flex-end;
        padding-bottom: 4rem;
    }

    .hero-content {
        padding-top: 4rem;
    }

    .navbar {
        padding: 1rem 5%;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--accent-color);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.2rem 0;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .about-content,
    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }

    .fixed-cta {
        right: 1rem;
        bottom: 1rem;
        padding-inline: 1.3rem;
    }
}

@media (max-width: 600px) {
    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .container {
        padding: 4.5rem 6%;
    }

    .hero {
        padding-inline: 6%;
    }
}
