/**
 * Nahetalpraxis WordPress Shortcodes CSS
 * 
 * Speichere diese Datei als nahetalpraxis-styles.css in deinem Theme-Ordner
 */

:root {
    --primary-teal: #007FA7;
    --primary-dark: #005F7F;
    --primary-light: #E6F4F9;
    --accent-warm: #D4A574;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --bg-light: #F8FAFB;
    --white: #ffffff;
    --shadow-soft: 0 10px 40px rgba(0, 127, 167, 0.08);
    --shadow-hover: 0 15px 50px rgba(0, 127, 167, 0.15);
}

/* ===========================
   HERO SECTION
   =========================== */
.ntp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ntp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(248, 250, 251, 0.9) 100%);
}

.ntp-hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 127, 167, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
}

.ntp-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ntp-hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.ntp-hero-subtitle {
    color: var(--primary-teal);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ntp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.0rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ntp-hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.ntp-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ntp-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.ntp-btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 127, 167, 0.2);
}

.ntp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 127, 167, 0.3);
    color: white;
    text-decoration: none;
}

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

.ntp-btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: var(--primary-teal);
    text-decoration: none;
}

.ntp-hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.ntp-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.ntp-hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, rgba(212, 165, 116, 0.3) 100%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.ntp-services {
    padding: 8rem 2rem;
    background: transparent;
}

.ntp-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ntp-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.ntp-section-subtitle {
    color: var(--primary-teal);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ntp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ntp-section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.ntp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.ntp-service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Gesamte Kachel als Link */
a.ntp-service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.ntp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ntp-service-card:hover::before {
    transform: scaleX(1);
}

.ntp-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.ntp-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 127, 167, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.ntp-service-card:hover .ntp-service-icon {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
}

.ntp-service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-teal);
    transition: stroke 0.4s ease;
}

.ntp-service-card:hover .ntp-service-icon svg {
    stroke: white;
}

/* Hochgeladene Icons (IMG) */
.ntp-service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.ntp-service-card:hover .ntp-service-icon img {
    filter: brightness(0) invert(1);
}

.ntp-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.ntp-service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}
.ntp-service-card .wp-block-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 2rem;
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.95rem;
    border-left: 2px solid var(--primary-light);
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}
.ntp-service-card .wp-block-list li:hover {
    border-left-color: var(--primary-teal);
    padding-left: 2.2rem;
}


/* ===========================
   INFO BANNER
   =========================== */
.ntp-info-banner {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
    padding: 4rem 2rem;
    margin: 6rem 0;
}

.ntp-info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.ntp-info-item h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ntp-info-item p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

/* ===========================
   TEAM SECTION
   =========================== */
.ntp-team {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.ntp-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.ntp-team-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.ntp-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ntp-team-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--primary-light);
}

.ntp-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ntp-team-card:hover .ntp-team-image img {
    transform: scale(1.05);
}

.ntp-team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    padding: 2rem;
}

.ntp-team-content {
    padding: 2.5rem;
}

.ntp-team-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ntp-team-role {
    color: var(--primary-teal);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ntp-team-specialties {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ntp-team-specialties li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.ntp-team-specialties li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

/* ===========================
   FOOTER/CONTACT
   =========================== */
.ntp-footer {
    background: var(--text-dark);
    color: white;
    padding: 5rem 2rem 2rem;
}

.ntp-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.ntp-footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.ntp-footer-section p,
.ntp-footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.ntp-footer-section a:hover {
    color: var(--primary-teal);
}

.ntp-opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ntp-opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.ntp-opening-hours strong {
    color: white;
    min-width: 40px;
}

.ntp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .ntp-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ntp-hero-image {
        order: -1;
    }

    .ntp-services-grid {
        grid-template-columns: 1fr;
    }

    .ntp-team-grid {
        grid-template-columns: 1fr;
    }

    .ntp-footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .ntp-info-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ntp-hero-title {
        font-size: 2.5rem;
    }

    .ntp-section-title {
        font-size: 2rem;
    }

    .ntp-footer-container {
        grid-template-columns: 1fr;
    }

    .ntp-hero-buttons {
        flex-direction: column;
    }

    .ntp-btn {
        text-align: center;
    }

    .ntp-services {
        padding: 4rem 1rem;
    }

    .ntp-team {
        padding: 4rem 1rem;
    }

    .ntp-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ntp-hero-title {
        font-size: 2rem;
    }

    .ntp-section-title {
        font-size: 1.8rem;
    }

    .ntp-service-card {
        padding: 2rem 1.5rem;
    }
}

/* ===========================
   SERVICE LINK INDICATOR (NEU)
   =========================== */
.ntp-service-link-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    color: var(--primary-teal);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    pointer-events: none; /* Der Link ist die Kachel selbst */
}

.ntp-service-card-link:hover .ntp-service-link-indicator {
    color: var(--primary-dark);
    gap: 12px; /* Pfeil bewegt sich nach rechts */
}

.ntp-service-link-indicator svg {
    transition: transform 0.3s ease;
}

.ntp-service-card-link:hover .ntp-service-link-indicator svg {
    transform: translateX(4px);
}