/* SP-Traumschmiede - Services Section Complete Redesign */
/* Harmonized with overall website aesthetic */

/* ============================================
   SERVICES SECTION - Premium Redesign
   ============================================ */
.services-premium {
    padding: 10rem 4rem;
    /* Dunkler Verlauf als grauer Overlay, wie Kundenstimmen */
    background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(10,10,10,0.95) 100%);
    position: relative;
    overflow: hidden;
}

/* Hintergrundfoto mit dezenter Sichtbarkeit (wie Testimonials) */
.services-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../img/Shooting 2024/Bereits gepostet/Traumschmiede WEB-299.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    animation: none;
    z-index: 0;
}

/* Konstante dunkle Overlay-Schicht + goldene Akzentlinie */
.services-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Layer 1: durchgehendes dunkles Overlay; Layer 2: goldene Linie mittig */
    background-image: 
        linear-gradient(180deg, rgba(0,0,0,0.58), rgba(0,0,0,0.62)),
        linear-gradient(90deg, transparent 0%, rgba(204, 167, 56, 0.25) 50%, transparent 100%);
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, 100% 1px;
    background-position: center center, left 50%;
    z-index: 1;
    pointer-events: none;
}

/* Section header */
.services-premium .section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 3;
}

.services-premium .section-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #CCA738;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.services-premium .section-title {
    font-size: clamp(3rem, 5vw, 3rem);
    font-family: 'Didot', serif;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
}

.services-premium .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #CCA738 50%, transparent 100%);
}

/* Services grid container */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Service cards - clean design */
.service-card {
    /* etwas transparenter, damit das Hintergrundfoto subtil durchscheint */
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(204, 167, 56, 0.1);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle gradient on cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(204, 167, 56, 0.02) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

/* Top accent line */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(204, 167, 56, 0.25) 50%,
        transparent 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 0;
}

/* Service icon styling */
.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: #CCA738;
    stroke-width: 1;
    fill: none;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    stroke: rgba(255, 255, 255, 0.9);
}

/* Icon background glow */
.service-icon::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(204, 167, 56, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.5;
}

/* Service content */
.service-title {
    font-size: 1.75rem;
    font-family: 'Didot', serif;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: rgba(255, 255, 255, 0.95);
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

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

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(204, 167, 56, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #CCA738;
    font-size: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Floating decorative elements */
.services-decorative {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.services-decorative::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(204, 167, 56, 0.05);
    border-radius: 50%;
    top: 10%;
    right: 5%;
    animation: float 20s ease-in-out infinite;
}

.services-decorative::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(204, 167, 56, 0.03);
    border-radius: 50%;
    bottom: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-premium {
        padding: 6rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 3rem 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .services-decorative::before,
    .services-decorative::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-premium {
        padding: 4rem 1.5rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}
