/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Mulish:wght@700&display=swap');

/* General Styles */
:root {
    --primary-color: #e75a87;
    --secondary-color: #a9e0e9;
    --accent-color: #e75a87;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --background-color: #a9e0e9;
    --footer-color: #e75a87;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--white);
}

/* Überschriften */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    padding: 5px 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Shimmer-Effekt für Logo (nur Desktop mit Maus) */
@media (hover: hover) and (pointer: fine) {
    .logo::before {
        content: '';
        position: absolute;
        top: -20%;
        left: -200%;
        width: 200%;
        height: 140%;
        background: linear-gradient(
            90deg,
            transparent 0%,
            transparent 25%,
            rgba(169, 224, 233, 0.5) 35%,
            rgba(231, 90, 135, 0.5) 50%,
            rgba(169, 224, 233, 0.5) 65%,
            transparent 75%,
            transparent 100%
        );
        opacity: 0;
        transform: skewX(-25deg);
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .logo:hover::before {
        animation: shimmer 2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes shimmer {
        0% {
            left: -200%;
            opacity: 0;
        }
        15% {
            opacity: 1;
        }
        85% {
            opacity: 1;
        }
        100% {
            left: 100%;
            opacity: 0;
        }
    }
}

.paw-icon {
    width: 24px;
    margin-right: 10px;
    transform-origin: bottom center;
    transition: transform 0.3s ease;
    filter: brightness(1);
    position: relative;
    z-index: 2;
}

@keyframes pawWave {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    75% { transform: rotate(20deg); }
    100% { transform: rotate(0deg); }
}

/* Pfoten-Animation nur auf Desktop mit Maus */
@media (hover: hover) and (pointer: fine) {
    .logo:hover .paw-icon {
        animation: pawWave 0.65s ease-in-out;
    }
}

.logo:not(:hover) .paw-icon {
    transform: rotate(0deg);
}

.logo span {
    position: relative;
    z-index: 2;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    transform: scaleX(1);
}

/* Hero-Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(169, 224, 233, 0.6);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    min-height: 44px;
    min-width: 120px;
}

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

.btn.primary:hover {
    background-color: #c74a73;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 90, 135, 0.3);
}

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

.btn.secondary:hover {
    background-color: var(--secondary-color);
}

.btn.booking {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    padding: 8px 16px;
}

/* Angebot-Sektion */
.angebot, .about, .kontakt, .about-page, .angebot-page, .kontakt-page {
    background-color: var(--secondary-color);
    padding: 80px 5%;
    text-align: center;
}

.angebot h2, .about h2, .kontakt h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.angebot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.angebot-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    padding-bottom: 20px;
}

.angebot-item:hover {
    transform: translateY(-10px);
}

.angebot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.angebot-item h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.angebot-item p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.additional, .savings, .bonus {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 15px;
}

/* About Section */
.about {
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.about img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-top: 20px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

/* Kontaktformular */
.kontakt form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

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

/* Footer */
footer {
    background-color: var(--footer-color);
    color: var(--white);
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer nav a {
    color: var(--white);
    margin-left: 20px;
    font-size: 0.9rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

footer nav a:hover {
    text-decoration: underline;
}

/* About Page */
.about-hero {
    margin-bottom: 50px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
}

.trainer-profile {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.trainer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.trainer-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.trainer-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.qualifications {
    list-style: none;
    margin-top: 20px;
}

.qualifications li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.qualifications li img {
    width: 20px;
    margin-right: 10px;
}

/* Angebot Page */
.angebot-hero {
    margin-bottom: 50px;
}

.angebot-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.training-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.training-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.einzelstunden, .pakete {
    margin-top: 60px;
}

/* Kontakt Page */
.kontakt-page {
    padding: 60px 0;
    background-color: var(--secondary-color);
    width: 100%;
    min-height: calc(100vh - 140px);
}

.kontakt-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.kontakt-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.kontakt-hero p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Bento Box Layout */
.bento-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.bento-box {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.bento-box:hover {
    transform: translateY(-5px);
}

/* Kontakt Info Box */
.kontakt-info {
    padding: 30px;
}

.kontakt-details h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.address {
    line-height: 1.8;
}

.address h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.address p {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Direkt Kontakt Box */
.kontakt-direkt {
    padding: 30px;
}

.contact-action {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    min-width: 200px;
    min-height: 48px;
    justify-content: center;
    box-shadow: var(--shadow);
    border: none;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #d14d77;
}

.contact-btn.call {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-btn.call:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-btn.call .btn-icon {
    filter: none;
}

/* Image Box */
.kontakt-image {
    grid-column: 1 / -1;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

.image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
}

.image-overlay p {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    min-height: 44px;
    min-width: 44px;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
}

/* Content Page Styles */
.content-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
    background-color: var(--white);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.1rem;
}

.content-section ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 30px;
}

.content-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-section ul li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.content-section a:hover {
    border-color: var(--primary-color);
}

/* Kontakt Section auf Homepage */
.kontakt {
    background-color: var(--secondary-color);
    padding: 80px 5%;
    text-align: center;
}

.kontakt .bento-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.kontakt h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.kontakt .contact-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kontakt .contact-action h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.kontakt .contact-action p {
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    min-height: 200px;
}

/* ===============================================
   MOBILE RESPONSIVE STYLES
   =============================================== */

/* Tablet Breakpoint (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .bento-container {
        gap: 20px;
    }
}

/* Mobile Breakpoint (max 768px) */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .navbar {
        padding: 15px 5%;
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        padding: 80px 20px 20px;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links li {
        margin: 0 0 10px 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        font-size: 1.1rem;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
        min-height: 48px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    /* Logo Mobile */
    .logo {
        font-size: 1.2rem;
        padding: 5px 10px;
    }

    .paw-icon {
        width: 20px;
        margin-right: 8px;
    }

    /* Hero Section Mobile */
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-text {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Sections Mobile */
    .angebot, .about, .kontakt, .about-page, .angebot-page, .kontakt-page {
        padding: 50px 20px;
    }

    .angebot h2, .about h2, .kontakt h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Angebot Grid Mobile */
    .angebot-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .angebot-item {
        margin-bottom: 0;
    }

    .angebot-item:hover {
        transform: translateY(-5px);
    }

    /* Trainer Profile Mobile */
    .trainer-profile {
        padding: 30px 20px;
    }

    .trainer-content {
        flex-direction: column;
        gap: 30px;
    }

    .trainer-image {
        width: 100%;
        max-width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .trainer-info {
        text-align: center;
        min-width: auto;
    }

    .qualifications {
        text-align: left;
    }

    .qualifications li {
        flex-direction: row;
        align-items: flex-start;
        padding: 10px;
    }

    .qualifications li img {
        margin-right: 10px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Angebot Cards Mobile */
    .angebot-cards {
        grid-template-columns: 1fr;
    }

    /* Kontakt Page Mobile */
    .kontakt-page {
        padding: 40px 0;
    }

    .kontakt-hero {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .kontakt-hero h1 {
        font-size: 2rem;
    }

    .kontakt-hero p {
        font-size: 1rem;
    }

    /* Bento Container Mobile */
    .bento-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 20px;
        margin-bottom: 50px;
    }

    .kontakt-info,
    .kontakt-direkt {
        padding: 25px 20px;
    }

    .kontakt-details h2,
    .contact-action h2 {
        font-size: 1.4rem;
    }

    /* Contact Buttons Mobile */
    .contact-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .contact-btn {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .kontakt-image {
        height: 250px;
    }

    .image-overlay p {
        font-size: 1rem;
    }

    /* Content Pages Mobile */
    .content-page {
        padding: 20px 15px;
    }

    .page-header {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .content-section h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }

    footer nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    footer nav a {
        margin-left: 0;
        padding: 10px;
    }

    /* Kontakt Section Homepage Mobile */
    .kontakt {
        padding: 50px 20px;
    }

    .kontakt .bento-box {
        padding: 30px 20px;
    }

    .kontakt h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .kontakt .contact-action h2 {
        font-size: 1.5rem;
    }

    .kontakt .contact-action p {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .about img {
        width: 150px;
        height: 150px;
    }
}

/* Small Mobile Breakpoint (max 480px) */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero {
        height: 55vh;
        min-height: 350px;
    }

    .angebot h2, .about h2, .kontakt h2 {
        font-size: 1.75rem;
    }

    .logo span {
        font-size: 1rem;
    }

    .nav-menu {
        width: 85%;
    }

    .contact-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .trainer-image {
        max-width: 200px;
        height: 200px;
    }
}

/* Landscape Mode Mobile (max height 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }

    .nav-menu {
        padding: 60px 20px 20px;
    }

    .nav-links a {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Verbesserte Touch-Targets */
    .btn,
    .contact-btn,
    .nav-links a {
        min-height: 48px;
    }

    /* Entferne Hover-Effekte auf Touch-Geräten */
    .angebot-item:hover,
    .bento-box:hover {
        transform: none;
    }

    /* Aktive States für Touch */
    .btn:active {
        transform: scale(0.98);
    }

    .contact-btn:active {
        transform: translateY(0);
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Wenn Dark Mode gewünscht ist, hier aktivieren
    :root {
        --text-color: #f0f0f0;
        --white: #1a1a1a;
    }
    */
}

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

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-btn,
    footer,
    .buttons {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        page-break-after: always;
    }

    body {
        background: white;
        color: black;
    }
}