/* =====================================================
   RESET
===================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
    --primary: #9c5a2e;
    --primary-dark: #7a4421;
    --background: #f4efe9;
    --text: #2c2a28;
}

/* =====================================================
   BASE
===================================================== */
body {
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.6;
    background: var(--background);
    color: var(--text);
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Headings */
h2 {
    margin-bottom: 15px;
    font-size: 34px;
    letter-spacing: 0.5px;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #c26d2c;
}

/* Links */
a {
    color: #c26d2c;
}

a:hover {
    text-decoration: underline;
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.container.narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */
.site-header {
    background: white;
	padding: 20px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    z-index: 1000;
	position: sticky;
    top: 0;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    font-family: Georgia, serif;
    font-size: 42px;
    letter-spacing: 4px;
    text-decoration: none;
    color: #2f3e2f;
    display: block;
}

.logo-sub {
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 2px;
    color: #777;
}

nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
}

nav a:hover {
    color: var(--primary);
}

/* Hamburger */
.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 35px;
}

.admin-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.03;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.admin-icon img {
    width: 100px;
    height: 100px;
}

.admin-icon:hover {
    opacity: 0.6;
}

.admin-login input,
.admin-login button {
    font-size: 18px;
}

.admin-login p {
    font-size: 17px;
    margin-top: 15px;
}

/* =========================
   ADMIN LAYOUT
========================= */

.admin-layout{
    display:flex;
    min-height:600px;
}

.admin-sidebar{
    width:220px;
    background:#2f3a40;
    padding:20px;
    border-right:1px solid #ddd;
}

.admin-sidebar h3{
    margin-top:0;
}

.admin-sidebar a{
    display:block;
    padding:8px 10px;
    margin-bottom:6px;
    text-decoration:none;
    color:#fff;
    border-radius:4px;
}

.admin-sidebar a:hover{
    background:#3e4c53;
}

.admin-content{
    flex:1;
    padding:25px;
}

/* =====================================================
   HERO
===================================================== */
.hero {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(60, 40, 25, 0.35);
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    color: white;
    max-width: 90%;
}

.hero-overlay h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 16px;
}

/* =====================================================
   HOME SECTIONS
===================================================== */

/* Intro */
.home-intro {
    padding: 100px 20px 70px 20px;
    background: #ffffff;
    position: relative;
}

.home-intro .container {
    text-align: left;
}

.home-intro h2 {
    font-size: 30px;
    margin-bottom: 35px;
    color: var(--primary-dark);
	text-align: center;
}

.home-intro p {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 22px;
}

/* Features */
.home-features {
    padding: 50px 20px;
    background: #f4efe9;
}

.home-features a.hunde {
	background-image: url('/assets/images/hunde.jpg');
}

.home-features a.wurf {
	background-image: url('/assets/images/wurf.jpg');
}

.home-features a.zucht {
	background-image: url('/assets/images/zucht.jpg');
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.feature-card:hover::before {
    transform: scale(1.08);
}

.feature-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.55)
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.7)
    );
}

.feature-overlay h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.feature-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

/* Wurf */
.home-wurf {
    padding: 70px 20px;
    background: #ffffff;
}

.wurf-card {
    background: #f4efe9;
    padding: 70px 60px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.04);
    max-width: 850px;
    margin: 0 auto;
}

.wurf-label {
    font-size: 14px;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.wurf-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.wurf-teaser {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.wurf-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.wurf-image img {
    width: 100%;
    border-radius: 14px;
}

/* News */
.home-news {
    padding: 70px 20px;
    background: #f4efe9;
}

.home-toller {
    padding: 90px 20px 0px;
    background: #f4efe9;
}

.news-card {
    background: white;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    max-width: 750px;
    margin: 0 auto;
}


.news-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.news-card p {
    color: #555;
    margin-bottom: 18px;
}
.news-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.btn-secondary:hover {
    color: var(--primary-dark);
}

/* =====================================================
   DOG PAGES
===================================================== */

.hund-hero {
    text-align: center;
    margin-bottom: 40px;
}

.hund-hero h2 {
    font-size: 36px;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.hund-verstorben {
    color: #9c5a2e;
    font-size: 28px;
    margin-left: 8px;
}

.hund-daten {
    color: #777;
    margin-top: 5px;
}

.hunde-overview {
    padding: 80px 20px;
}

.hunde-overview h1 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.hunde-overview h3 {
    margin: 60px 0 25px 0;
    font-size: 22px;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.hunde-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
	margin-bottom: 20px;
}

.hund-card {
    position: relative;
    background: white;
    padding: 40px 35px;
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
	display: flex;
    align-items: center;
    gap: 22px;
}

/* Thumbnail */
.hund-thumb {
    width: 90px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.hund-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hund-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.08);
}

.hund-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hund-meta {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

/* Jahres-Badge */
.hund-meta::before {
    content: "Geboren ";
    font-size: 12px;
    color: #aaa;
}

/* Verstorbene Hunde */
.hund-card.verstorben {
    background: #f9f6f2;
    border-left: 4px solid #c9b7a4;
}

.hund-card.verstorben .hund-thumb img {
    filter: grayscale(40%);
    opacity: 0.85;
}

.hund-card.verstorben h4 {
    color: #8a6d55;
}

.dagger {
    font-size: 16px;
    margin-left: 6px;
}
.hund-mainbild {
    max-width: 750px;
    margin: 0 auto 40px auto;
}

.hund-mainbild img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

.hund-galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 50px auto 70px auto;
    max-width: 900px;
}

.hund-galerie img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.hund-galerie img:hover {
    transform: scale(1.02);
}

.hund-detail {
    background: white;
    padding: 70px 70px 90px 70px;
    border-radius: 26px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.06);
    margin-top: 60px;
    margin-bottom: 120px;
}

.hund-detail section {
    margin-bottom: 70px;
	padding-bottom: 50px;
    border-bottom: 1px solid #eee5dc;
}

.hund-detail section:last-of-type {
    border-bottom: none;
}

.hund-detail h3 {
    margin-bottom: 25px;
    font-size: 26px;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.steckbrief-grid,
.gesundheit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px 30px;
    margin-top: 20px;
}

.steckbrief-grid div,
.gesundheit-grid div {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid #ece6de;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    font-size: 15px;
}

/* Tabellen */
.tabelle {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 15px;
}

.tabelle th {
    text-align: left;
    font-weight: 600;
    padding: 12px 10px;
    background: transparent;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary);
}

.tabelle td {
    padding: 10px;
    border-bottom: 1px solid #f1ebe4;
	color: #333;
}

.tabelle tr:hover {
    background: #faf7f3;
}

/* =====================================================
   FOOTER
===================================================== */
footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}

/* WÜRFE MIT HINTERGRUNDBILD */

.wurf-overview-card {
    position: relative;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    transition: transform 0.4s ease;

    background-size: cover;
    background-position: center;
}

/* Dunkler Overlay */
.wurf-overview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
}

.wurf-overlay {
    position: relative;
    z-index: 2;
}

.wuerfe-grid {
    display: grid;	
    gap: 40px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.wuerfe-overview h1 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.wurfplanung {
    padding: 80px 0 100px 0;
}

.wurf-section {
    margin-bottom: 60px;
}

.wurf-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.wurf-section p {
    margin-bottom: 18px;
    font-size: 17px;
}

.card-soft {
    background: white;
    padding: 60px 65px;
    border-radius: 22px;
    margin-bottom: 80px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
    position: relative;
}

.wurf-liste {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.wurf-liste li {
    border-bottom: 1px solid #f1ebe4;
    padding: 14px 0;
}

.wurf-liste li::before {
    content: "—";
    color: var(--primary);
    font-weight: bold;
}

.wurf-cta {
    text-align: center;
    padding-top: 30px;
}

.wurf-cta h3 {
    margin-bottom: 20px;
}

.wurf-intro {
    text-align: center;
    padding: 110px 20px 80px 20px;
}

.wurf-intro h1 {
    font-size: 46px;
    margin-bottom: 18px;
    color: var(--primary-dark);
}

.wurf-subline {
    font-size: 18px;
    color: #777;
    letter-spacing: 0.5px;
}

.about-intro {
    text-align: center;
    padding: 110px 20px 90px 20px;
}

.about-intro h1 {
    font-size: 46px;
    margin-bottom: 18px;
    color: var(--primary-dark);
}

.about-lead {
    font-size: 19px;
    color: #777;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
}

.about-section h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--primary);
}

.about-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.about-emotional {
    background: #fbf8f4;
    padding: 80px 60px;
    border-radius: 22px;
    max-width: 900px;
    margin: 0 auto 120px auto;
}

.about-values {
    background: white;
    padding: 70px 60px;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.04);
    max-width: 900px;
    margin: 0 auto 120px auto;
    text-align: center;
}

.about-values ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-values li {
    padding: 15px 0;
    border-bottom: 1px solid #f1ebe4;
}

.about-signature {
    text-align: center;
    margin-top: 80px;
    font-size: 18px;
}

.philosophy-intro {
    text-align: center;
    padding: 110px 20px 100px 20px;
}

.philosophy-intro h1 {
    font-size: 46px;
    margin-bottom: 18px;
    color: var(--primary-dark);
}

.philosophy-lead {
    font-size: 19px;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-container {
    max-width: 900px;
    margin: 0 auto 140px auto;
    padding: 0 20px;
}

.philosophy-section {
    margin-bottom: 100px;
}

.philosophy-section h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--primary);
}

.philosophy-section p {
    margin-bottom: 18px;
    font-size: 17px;
}

.philosophy-highlight {
    background: #fbf8f4;
    padding: 70px 60px;
    border-radius: 22px;
}

.philosophy-soft {
    background: #ffffff;
    padding: 60px;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.04);
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.philosophy-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1ebe4;
}

.philosophy-claim {
    text-align: center;
    margin-top: 80px;
}

.philosophy-final {
    margin-top: 30px;
    font-weight: 600;
    font-size: 19px;
    color: var(--primary-dark);
}

.news-intro {
    text-align: center;
    padding: 110px 20px 80px 20px;
}

.news-intro h1 {
    font-size: 46px;
    margin-bottom: 18px;
    color: var(--primary-dark);
}

.news-lead {
    font-size: 18px;
    color: #777;
}

.news-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    gap: 30px;
}

.news-card-modern {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.news-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.news-card-modern h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.news-card-modern h3 a {
    text-decoration: none;
    color: #222;
}

.news-card-modern h3 a:hover {
    text-decoration: underline;
}

.news-card-modern p {
    line-height: 1.6;
    color: #444;
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
}

.btn-secondary:hover {
    text-decoration: underline;
}


.gallery-intro {
    text-align: center;
    padding: 110px 20px 80px 20px;
}

.gallery-intro h1 {
    font-size: 46px;
    margin-bottom: 18px;
    color: var(--primary-dark);
}

.gallery-lead {
    font-size: 18px;
    color: #777;
}

.gallery-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 140px auto;
    padding: 0 20px;
}

.gallery-album-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.gallery-album-card:hover {
    transform: translateY(-6px);
}

.gallery-album-overlay {
    width: 100%;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.1)
    );
}

.gallery-album-overlay h3 {
    font-size: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 140px auto;
    padding: 0 20px;
}

.gallery-item img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* =====================================================
   IMPRESSUM / RECHTLICHES
===================================================== */

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto 140px auto;
    padding: 0 20px;
}

.legal-intro {
    text-align: center;
    padding: 110px 0 70px 0;
}

.legal-intro h1 {
    font-size: 46px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.legal-subline {
    font-size: 18px;
    color: #777;
}

.legal-content {
    background: white;
    padding: 70px 70px;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.04);
}

.legal-block {
    margin-bottom: 45px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-block p {
    font-size: 17px;
    line-height: 1.8;
}

.wurf-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.wurf-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.wurf-header h1 span {
    font-weight: 400;
    color: #777;
}

.wurf-header h2 {
    margin-top: 0;
    font-weight: 500;
    color: #444;
}

.wurf-beschreibung {
    background: #f6f6f6;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    line-height: 1.6;
}

/* Welpen Grid */

.welpen-section {
    margin-top: 50px;
}

.welpen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.welpen-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}


.welpen-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.welpen-card h3 {
    margin: 0 0 8px 0;
}

.rufname {
    font-size: 1.1rem;
    color: #777;
    font-style: italic;
    margin: 0;
}

.welpen-card-content {
    padding: 20px;
}

.welpen-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.welpen-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.welpen-card:hover .welpen-image img {
    transform: scale(1.05);
}

/* Status Badge */

.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    color: white;
}

.welpe-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.welpe-header h1 {
    font-size: 2.4rem;
    margin-bottom: 5px;
}

.welpe-daten {
    margin-top: 40px;
}

.daten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.daten-item {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
}

.label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
}

.value {
    font-size: 1.1rem;
    font-weight: 600;
}

.welpe-beschreibung {
    margin-top: 40px;
    line-height: 1.7;
    font-size: 1rem;
}

.welpe-footer {
    margin-top: 50px;
}

.zurueck-link {
    text-decoration: none;
    font-weight: 600;
}

.zurueck-link:hover {
    text-decoration: underline;
}


/* =====================================================
   MEDIA QUERIES
===================================================== */
@media (max-width: 768px) {

    nav {
        display: none;          /* ← Grundzustand: unsichtbar */
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
    }

    nav.show {
        display: flex;          /* ← nur wenn geöffnet */
    }

    .nav-toggle {
        display: block;
    }

	.hero-overlay {
        bottom: 5%;
        padding: 15px 20px;
    }

    .hero-overlay h2 {
        font-size: 20px;
    }

    .hero-overlay p {
        font-size: 14px;
    }

    .hund-galerie {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        height: 260px;
    }

    .site-header {
        padding-bottom: 15px;
    }
}


@media (max-width: 900px) {
	 .about-split {
        grid-template-columns: 1fr;
    }
	
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-image {
        order: -1;
        text-align: center;
        margin-bottom: 20px;
		height: 200px;
    }

    .news-image img {
        max-width: 220px;
		opacity: 0.9;
        width: 100%;
    }
	
	.wurf-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wurf-image {
        order: -1;
    }
}
