/**
 * Minimalist Premium Partner Template
 * Elegantes minimalistisches Design mit Gold Akzent
 */

:root {
    --mp-gold: #d4af37;
    --mp-gold-dark: #b8941e;
    --mp-bg: #ffffff;
    --mp-bg-light: #fafafa;
    --mp-text: #1f2937;
    --mp-text-light: #6b7280;
    --mp-border: #e5e7eb;
}

/* Base Styles */
.minimalist-premium-template {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.minimalist-premium-template .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.minimalist-premium-template .container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.minimalist-premium-template .section {
    padding: 100px 0;
}

.minimalist-premium-template .section-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--premium-gold);
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.minimalist-premium-template .section-title {
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 60px 0;
    text-align: center;
    color: var(--secondary-color);
    line-height: 1.2;
}

/* AOS Animations */
.minimalist-premium-template [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.minimalist-premium-template [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.minimalist-premium-template .minimal-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-bg-color);
    overflow: hidden;
}

.minimalist-premium-template .hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.minimalist-premium-template .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-bg-color);
    opacity: 0.85;
    z-index: 1;
}

.minimalist-premium-template .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
    max-width: 800px;
}

.minimalist-premium-template .hero-logo {
    margin-bottom: 40px;
}

.minimalist-premium-template .hero-logo img {
    max-width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
}

.minimalist-premium-template .hero-title {
    font-size: 64px;
    font-weight: 300;
    margin: 0 0 32px 0;
    color: var(--hero-text-color);
    line-height: 1.1;
    letter-spacing: -1px;
}

.minimalist-premium-template .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 48px 0;
    line-height: 1.6;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.minimalist-premium-template .hero-cta {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    color: var(--hero-button-text);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border: 2px solid var(--hero-button-bg);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.minimalist-premium-template .hero-cta:hover {
    background: var(--hero-button-bg);
    color: var(--hero-button-text);
}

.minimalist-premium-template .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 48px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.minimalist-premium-template .stat-box {
    text-align: center;
}

.minimalist-premium-template .stat-number {
    font-size: 42px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
}

.minimalist-premium-template .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* About Section */
.minimalist-premium-template .about-content {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-color);
    text-align: center;
}

/* Media Section (Video & Audio) */
.minimalist-premium-template .media-section {
    background: var(--bg-color);
}

.minimalist-premium-template .media-block {
    margin-bottom: 32px;
}

.minimalist-premium-template .media-block:last-child {
    margin-bottom: 0;
}

.minimalist-premium-template .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.minimalist-premium-template .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.minimalist-premium-template .audio-title {
    font-size: 20px;
    font-weight: 600;
    margin: 12px 0 20px 0;
    color: var(--secondary-color);
}

.minimalist-premium-template .audio-player {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.minimalist-premium-template .audio-player audio {
    width: 100%;
    outline: none;
}

.minimalist-premium-template .audio-player audio::-webkit-media-controls-panel {
    background: white;
}

.minimalist-premium-template .audio-player audio::-webkit-media-controls-play-button,
.minimalist-premium-template .audio-player audio::-webkit-media-controls-current-time-display,
.minimalist-premium-template .audio-player audio::-webkit-media-controls-time-remaining-display {
    color: var(--premium-gold);
}

.minimalist-premium-template .audio-player audio::-webkit-media-controls-timeline {
    background: #e5e7eb;
    border-radius: 4px;
}

/* Services List */
.minimalist-premium-template .services-list {
    margin-top: 48px;
}

.minimalist-premium-template .service-item {
    border-bottom: 1px solid var(--mp-border);
    padding: 40px 0;
}

.minimalist-premium-template .service-item:last-child {
    border-bottom: none;
}

.minimalist-premium-template .service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}

.minimalist-premium-template .service-header h3 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    color: var(--secondary-color);
}

.minimalist-premium-template .service-price {
    font-size: 20px;
    color: var(--premium-gold);
    font-weight: 400;
}

.minimalist-premium-template .service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Team Grid */
.minimalist-premium-template .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 48px;
}

.minimalist-premium-template .team-member {
    text-align: center;
}

.minimalist-premium-template .member-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.minimalist-premium-template .member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(212, 175, 55, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.minimalist-premium-template .team-member:hover .member-image::after {
    opacity: 1;
}

.minimalist-premium-template .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.minimalist-premium-template .team-member:hover .member-image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.minimalist-premium-template .member-name {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 8px 0;
    color: var(--secondary-color);
}

.minimalist-premium-template .member-position {
    color: var(--premium-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.minimalist-premium-template .member-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Testimonials List */
.minimalist-premium-template .testimonials-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(350px, 1fr));
    gap: 40px;
}

.minimalist-premium-template .testimonial-item {
    border-left: 3px solid var(--premium-gold);
    padding: 32px 0 32px 40px;
}

.minimalist-premium-template .testimonial-quote {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0 0 24px 0;
    font-style: italic;
}

.minimalist-premium-template .testimonial-author {
    font-size: 14px;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.minimalist-premium-template .testimonial-author strong {
    font-weight: 600;
}

/* Trust Logos */
.minimalist-premium-template .trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.minimalist-premium-template .trust-logo {
    text-align: center;
}

.minimalist-premium-template .trust-logo img {
    max-width: 120px;
    height: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.minimalist-premium-template .trust-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Contact Section */
.minimalist-premium-template .contact-section {
    border-top: 1px solid var(--mp-border);
}

.minimalist-premium-template .contact-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 48px 0;
    text-align: center;
    color: var(--secondary-color);
}

.minimalist-premium-template .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.minimalist-premium-template .contact-item {
    padding: 32px 0;
}

.minimalist-premium-template .contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--premium-gold);
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.minimalist-premium-template .contact-value {
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.minimalist-premium-template .contact-value:hover {
    color: var(--premium-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .minimalist-premium-template .hero-title {
        font-size: 42px;
    }
    
    .minimalist-premium-template .section-title {
        font-size: 36px;
    }
    
    .minimalist-premium-template .about-content {
        font-size: 18px;
    }
    
    .minimalist-premium-template .team-grid,
    .minimalist-premium-template .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .minimalist-premium-template .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
