/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    height: 4px;
    width: 100%;
    background: var(--primary);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}
.logo img {
    height: 48px;
    max-width: 90vw;
    vertical-align: middle;
    display: inline-block;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        align-items: flex-end;
        width: 100px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        border-radius: 10px;
        padding: 18px 24px;
        z-index: 1001;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        margin: 12px 0 0 0;
    }
}
@media (max-width: 600px) {
    .logo {
        font-size: 0.95rem;
        gap: 6px;
    }
    .logo img {
        height: 24px;
        max-width: 36vw;
    }
}
/* :root {
    --primary: #00a0e1;
    --secondary: #333;
    --light: #f8f9fa;
    --dark: #212529;
    --accent: #ff6b6b;
} */


:root {
    --primary: #1976d2;
    --secondary: #26c6da;
    --accent: #00bcd4;
    --light: #f4fafd;
    --dark: #1a2327;
    --success: #388e3c;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(255,255,255,0.85);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    width: 100%;
    position: relative;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* ...Logo-Regeln stehen weiter oben... */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary);
    color: white;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(rgba(25, 118, 210, 0.7), rgba(0, 150, 136, 0.7)), url('img/entryLogo.jpg') center/cover; */
    background: linear-gradient(rgba(25, 118, 210, 0.7), rgba(0, 150, 136, 0.7));
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    /* Kein padding-top mehr nötig! */
}

/* .hero::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    background: #fff; 
    z-index: 1;
} */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services */
.services {
    padding: 40px 0;
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 1em auto;
}

.services-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    background-color: #ddd;
    /* background-size: cover; */
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Service Card Button */
.show-more-btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center; /* Button-Inhalt mittig */
    margin-left: auto;
    margin-right: auto; 
}

.show-more-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,160,225,0.10);
}

.service-details {
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 18px 16px;
    margin-top: 14px;
    color: var(--dark);
    font-size: 1rem;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}

/* About */
.about {
    /* background-color: var(--light); */
    padding: 40px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* OLD implementation for Praxis Gallery */
/* .praxis-gallery {
    margin-top: 40px;
    margin-bottom: 40px;
}

.praxis-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    width: 100%;
} */

.praxis-gallery {
    margin: 32px auto 0 auto;
    max-width: 900px;
    width: 100%;
    padding: 0 8px;
}

.praxis-gallery-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.praxis-swiper {
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(25,118,210,0.08);
    background: #fff;
    padding: 16px 0 24px 0;
}

.praxis-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.praxis-swiper img {
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.praxis-swiper .swiper-button-next,
.praxis-swiper .swiper-button-prev {
    color: var(--primary);
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    width: 32px;     
    height: 32px;  
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.praxis-swiper .swiper-button-next:after,
.praxis-swiper .swiper-button-prev:after {
    font-size: 18px !important; 
}

.praxis-swiper .swiper-button-next:hover,
.praxis-swiper .swiper-button-prev:hover {
    background: var(--secondary);
    color: #fff;
}

/* arrows for slide smaller */
@media (max-width: 600px) {
    .praxis-swiper .swiper-button-next,
    .praxis-swiper .swiper-button-prev {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    .praxis-swiper .swiper-button-next:after,
    .praxis-swiper .swiper-button-prev:after {
        font-size: 14px !important;
    }
}

.praxis-thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.praxis-thumbnails img {
    width: 56px;
    height: 40px;
    border-radius: 4px;
}

/* Team */
.team {
    padding: 40px 0;    
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-info p{    
    color: #666;
    max-width: 700px;
    margin: 1em auto;
}

.member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--primary);
    font-weight: 500;
}

/* Contact */
.contact {
    background-color: var(--light);
    padding: 40px 0;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-method i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0088c7;
}

.hours-list div {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    min-width: 180px;
}

.hours-list span:first-child {
    min-width: 60px;
    font-weight: 500;
    /* color: var(--secondary); */
    display: inline-block;
}

.hours-list span:last-child {
    font-variant-numeric: tabular-nums;
    color: var(--dark);
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #fff;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
    }
}

/* style.css ergänzen */
.map-container {
    width: 100%;
    max-width: 400px;
    margin: 18px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(25,118,210,0.10);
}

.map-container iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

@media (max-width: 600px) {
    .map-container {
        max-width: 100%;
    }
    .map-container iframe {
        height: 180px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Responsive Navigation: Hamburger Menü --- */
@media (max-width: 900px) {
    .nav-links {
        display: none !important;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        align-items: flex-end;
        width: 150px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        border-radius: 10px;
        padding: 18px 24px;
        z-index: 1001;
    }
    .nav-links.open {
        display: flex !important;
    }
    .nav-links li {
        margin: 12px 0 0 0;
    }
    .nav-links.open .cta-button {
        background: none !important;
        color: var(--secondary) !important;
        border-radius: 0 !important;
        padding: 0 !important;
        font-weight: 500 !important;
        box-shadow: none !important;
    }
}