/* ====================================
   GLOBAL STYLES & RESET
   ==================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* Farben - Helles Beige/Creme Palette */
    --color-primary: #e0cdb2;
    --color-primary-dark: #d4c1a6;
    --color-text: #5e4b45;
    --color-text-light: #7a6860;
    --color-heading: #5e4b45;
    --color-bg-light: #f5f0e8;
    --color-white: #faf8f5;
    --color-footer: #e0cdb2;
    
    /* Schatten */
    --shadow-sm: 0 2px 5px rgba(94, 75, 69, 0.08);
    --shadow-md: 0 4px 10px rgba(94, 75, 69, 0.12);
    --shadow-lg: 0 8px 20px rgba(94, 75, 69, 0.15);
    
    /* Übergänge */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Abstände */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Calibri", "Segoe UI", Tahoma, sans-serif;
    background: #f5f0e8;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Georgia", serif;
    letter-spacing: 0.5px;
    color: var(--color-heading);
    margin-top: 0;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p, li {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    transition: var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--color-primary-dark);
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip Link für Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}


/* ====================================
   BANNER
   ==================================== */

.Banner {
    width: 100%;
    overflow: hidden;
    max-height: none;
   
}

.Banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}


/* ====================================
   NAVIGATION
   ==================================== */

.header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 1rem 0;
}

.header__toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-primary);
    padding: 0.5rem;
}

.nav__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav__perfil {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}

.nav__name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-heading);
    text-decoration: none;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition-normal);
    position: relative;
}

.nav__link:hover,
.nav__link:focus {
    background: var(--color-bg-light);
    color: var(--color-primary);
}

.nav__link.active {
    color: var(--color-primary);
    font-weight: bold;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--color-primary);
}

.nav__social {
    display: flex;
    gap: 1rem;
}

.nav__social-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav__social-icon:hover,
.nav__social-icon:focus {
    color: var(--color-primary-dark);
    transform: scale(1.1);
}

.nav__close {
    display: none;
}


/* ====================================
   SECTIONS
   ==================================== */

section {
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 8%, 8rem);
}

.section.light {
    background: var(--color-bg-light);
}

/* Abwechselnde Section-Hintergründe für visuelle Trennung */
section:nth-of-type(odd) {
    background: var(--color-white);
}

section:nth-of-type(even) {
    background: var(--color-bg-light);
}


/* ====================================
   HOBBYZUCHT BADGES & HINWEISE
   ==================================== */

/* Hobby Badge oben im Hero */
.hobby-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--color-heading);
    box-shadow: var(--shadow-md);
}

.hobby-badge ion-icon {
    font-size: 1.3rem;
    color: var(--color-primary);
}

/* Hobby Note in Textsections */
.hobby-note {
    background: #fff8e1;
    border-left: 4px solid #ffa726;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-size: 0.95rem;
}

.hobby-note strong {
    color: #e65100;
}

/* Footer Hobby Hinweis */
.hobby-footer-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(94, 75, 69, 0.2);
}


/* ====================================
   HERO - WOW-Effekt Impact
   ==================================== */

.hero-impact {
    background: linear-gradient(to bottom, #faf8f5, #f5f0e8);
    padding: 4rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

/* Dezente animierte Hintergrund-Elemente */
.hero-impact::before {
    content: "🐾";
    position: absolute;
    font-size: 15rem;
    opacity: 0.03;
    top: -5%;
    right: -5%;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-impact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ===== EMOTION HEADER ===== */
.hero-emotion {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-emotion h1 {
    margin-bottom: 1.5rem;
}

.hero-question {
    display: block;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--color-text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-answer {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, #c9a86a 0%, #d4c1a6 50%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    line-height: 1.2;
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--color-text);
    font-weight: 500;
}

.golden-highlight {
    color: #c9a86a;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(201, 168, 106, 0.3);
}

/* ===== PREVIEW GRID (Platzhalter für Bilder) ===== */
.hero-preview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    height: 320px;
}

.preview-card {
    background: linear-gradient(135deg, #e0cdb2, #d4c1a6);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: block;
    text-decoration: none;
}

.preview-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-1 { background-image: url('/img/souta/british-longhair-chocolate-golden-shaded-white-Souta1.png'); background-size: cover; background-position: center; }
.card-2 { background-image: url('/img/A-Wurf/cookie3.jpeg'); background-size: cover; background-position: center; }
.card-3 { background-image: url('/img/dixie/lilac-golden-shell-dixie7.jpg'); background-size: cover; background-position: center; }


.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(94, 75, 69, 0.9), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: var(--transition-normal);
}

.preview-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay ion-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.card-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== FAKTEN / BADGES ===== */
.hero-facts {
    margin-bottom: 3rem;
}

.fact-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    border-left: 5px solid #c9a86a;
}

.fact-badge ion-icon {
    font-size: 3rem;
    color: #c9a86a;
}

.fact-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-heading);
    margin-bottom: 0.3rem;
}

.fact-badge span {
    display: block;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.fact-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-heading);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pill ion-icon {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.pill.special {
    background: linear-gradient(135deg, #c9a86a, #d4c1a6);
    color: white;
}

.pill.special ion-icon {
    color: white;
}

/* ===== CTA BUTTONS ===== */
.hero-cta-impact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-impact-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #5e4b45 0%, #7a6860 100%);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    box-shadow: 0 6px 25px rgba(94, 75, 69, 0.3);
    transition: var(--transition-normal);
    font-size: 1.1rem;
}

.btn-impact-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(94, 75, 69, 0.4);
}

.btn-icon {
    font-size: 2rem;
}

.btn-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.btn-text small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-impact-main > ion-icon {
    font-size: 2rem;
}

.or-divider {
    position: relative;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 0.5rem 0;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--color-primary);
}

.or-divider::before { left: 0; }
.or-divider::after { right: 0; }

.or-divider span {
    background: #f5f0e8;
    padding: 0 1rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.btn-impact-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-heading);
    text-decoration: none;
    border: 2px solid var(--color-heading);
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition-normal);
}

.btn-impact-contact:hover {
    background: var(--color-heading);
    color: white;
    transform: translateY(-2px);
}

.btn-impact-contact ion-icon {
    font-size: 1.5rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid var(--color-primary);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.trust-item ion-icon {
    font-size: 1.3rem;
    color: #5cb85c;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
    .hero-preview-grid {
        grid-template-columns: 1fr 1fr;
        height: 280px;
    }

    .card-3 {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero-impact {
        padding: 3rem 1.5rem;
    }

    .hero-preview-grid {
        grid-template-columns: 1fr;
        height: 250px;
    }

    .card-2 {
        display: none;
    }

    .fact-pills {
        justify-content: center;
    }

    .btn-impact-main {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
    }

    .trust-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hobby-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .fact-badge {
        flex-direction: column;
        text-align: center;
    }

    .pill {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hobby-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.hero {
    /* Hier dein Winterbild oder ein anderes Bild einfügen */
    background-image: url('/img/banner/Schnee.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    
    min-height: 500px;
    height: 60vh;
    max-height: 650px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
}

/* Dunkles Overlay für bessere Lesbarkeit */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(94, 75, 69, 0.5)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
    background: rgba(94, 75, 69, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 500;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-primary);
    color: var(--color-heading);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-btn:hover,
.hero-btn:focus {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    outline: 2px solid white;
    outline-offset: 2px;
}


/* ====================================
   BUTTONS
   ==================================== */

.btn, .btn-secondary {
    display: inline-block;
    padding: 12px 22px;
    margin: 0.5rem 0.5rem 0.5rem 0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn {
    background: var(--color-primary);
    color: white;
}

.btn:hover,
.btn:focus {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}


/* ====================================
   WURF SECTION
   ==================================== */

.wurf-container {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
    align-items: flex-start;
}

.wurf-container img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.wurf-container img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.wurf-text {
    flex: 1;
    min-width: 300px;
}

.interesse {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
}


/* ====================================
   ABOUT SECTION - Ohne Foto, mit Cards
   ==================================== */

.about-section {
    background: var(--color-bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Qualifikationen Card */
.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon ion-icon {
    font-size: 3rem;
    color: white;
}

.about-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-heading);
}

.quali-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quali-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-bg-light);
}

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

.quali-list ion-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.quali-list span {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
}

/* Text Content Bereich */
.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-intro {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* Highlight Boxes */
.about-highlight {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.about-highlight:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--color-bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon ion-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.about-highlight h4 {
    margin: 0 0 0.5rem 0;
    color: var(--color-heading);
    font-size: 1.3rem;
}

.about-highlight p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-icon {
        margin: 0 auto;
    }
}


/* ====================================
   TWO COLUMN LAYOUT
   ==================================== */

.two-column {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
    align-items: center;
}

.two-column.reverse {
    flex-direction: row-reverse;
}

.two-column > * {
    flex: 1;
    min-width: 280px;
}

.two-column img {
    max-width: 500px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.icons {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.icons li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}


/* ====================================
   SEMINARE / CERTIFICATES
   ==================================== */

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-card {
    text-align: center;
    margin: 0;
    transition: var(--transition-normal);
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.cert-card:hover img {
    box-shadow: var(--shadow-lg);
}

.cert-card figcaption {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--color-heading);
}


/* ====================================
   VEREINE
   ==================================== */

.verein-logos {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.verein-logos a {
    transition: var(--transition-normal);
}

.verein-logos a:hover,
.verein-logos a:focus {
    transform: scale(1.1);
}

.verein-logos img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: var(--transition-normal);
}


/* ====================================
   FOOTER
   ==================================== */

footer {
    background: var(--color-footer);
    color: var(--color-text);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #d4c1a6;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.photo-credit {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem !important;
}

footer a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

footer a:hover,
footer a:focus {
    color: var(--color-primary-dark);
    text-decoration: underline;
}


/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

/* Tablet */
@media screen and (max-width: 1024px) {
    .nav__list {
        gap: 1.5rem;
    }
    
    .nav__link {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }
    
    section {
        padding: 3rem 5%;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .header__toggle {
        display: block;
       position:absolute; 
       top: -.3rem;
        right: 1rem;
       
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    
    .nav.show-menu {
        right: 0;
    }
    
    .nav__content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.8rem;
        cursor: pointer;
        background: none;
        border: none;
        color: var(--color-primary);
        padding: 0.5rem;
    }
    
    .nav__perfil {
        flex-direction: column;
        text-align: center;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav__item {
        width: 100%;
    }
    
    .nav__link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--color-bg-light);
    }
    
    .nav__social {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero {
        min-height: 400px;
        height: 5vh;
        padding: 2rem 1.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .wurf-container {
        flex-direction: column;
    }
    
    .wurf-container img {
        max-width: 100%;
    }
    
    .two-column,
    .two-column.reverse {
        flex-direction: column;
    }
    
    .two-column img {
        max-width: 100%;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .verein-logos {
        gap: 2rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .nav {
        width: 100%;
        max-width: 100%;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .hero {
        min-height: 350px;
        height: 45vh;
    }
    
    .btn, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .btn-row {
        flex-direction: column;
    }
}


/* ====================================
   PRINT STYLES
   ==================================== */

@media print {
    .header,
    .nav,
    .hero-btn,
    .btn,
    .btn-secondary,
    .nav__social,
    footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    section {
        page-break-inside: avoid;
    }
}


/* ====================================
   ACCESSIBILITY
   ==================================== */

/* Focus Styles für Tastaturnavigation */
*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

/* Reduced Motion für Nutzer mit Bewegungsempfindlichkeit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ====================================
   PERFORMANCE OPTIMIZATIONS
   ==================================== */

/* GPU-Beschleunigung für Animationen */
.hero-btn,
.btn,
.btn-secondary,
.cert-card,
.nav__social-icon {
    will-change: transform;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Rasse-Info Teaser */
.race-info-banner {
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #e0cdb2 0%, #d4c1a6 100%);
    border-radius: 15px;
    text-align: center;
}

.banner-content h3 {
    color: #5e4b45;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.banner-content p {
    color: #7a6860;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 15px 35px;
    background: white;
    color: #5e4b45;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 75, 69, 0.3);
}

.banner-btn ion-icon {
    font-size: 1.3rem;
}

/* Footer Separator */
.footer-content .separator {
    margin: 0 0.75rem;
    color: #7a6860;
}

@media screen and (max-width: 768px) {
    .race-info-banner {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .footer-content nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content .separator {
        display: none;
    }
}

/* Home Race Info Card */
.home-race-info {
    padding: 4rem 2rem;
    background: #faf8f5;
}

.home-race-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(94, 75, 69, 0.1);
    border: 2px solid #e0cdb2;
}

.race-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #e0cdb2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.race-icon ion-icon {
    font-size: 3rem;
    color: #5e4b45;
}

.home-race-card h2 {
    color: #5e4b45;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
}

.home-race-card p {
    color: #6d5d4d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.home-race-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 15px 35px;
    background: #e0cdb2;
    color: #5e4b45;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.home-race-btn:hover {
    background: #d4c1a6;
    transform: translateY(-2px);
}
