/* SP-Traumschmiede - Hero Banner Harmonized Sections */
/* All sections now match the premium Hero Banner aesthetic */

/* ============================================
   REDESIGNED SERVICES SECTION - Hero Style
   ============================================ */
.services-premium {
    padding: 10rem 4rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(10,10,10,0.95) 100%);
    position: relative;
    overflow: hidden;
}

/* Add Hero-style background image layer */
/* Clean static background image for premium look */
.services-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../../img/Shooting 2024/Bereits gepostet/Traumschmiede WEB-299.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
}

/* Floating gold particles like Hero */
.services-premium::after {
    content: '';
    position: absolute;
    inset: 0; /* full coverage incl. padding */
    background: radial-gradient(circle at 20% 50%, rgba(204, 167, 56, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(204, 167, 56, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.service-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(204, 167, 56, 0.2);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(204, 167, 56, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

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

/* ============================================
   TESTIMONIALS SECTION - Hero Style
   ============================================ */
.testimonials-3d {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(10,10,10,0.95) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../img/Shooting 2024/Bereits gepostet/Traumschmiede WEB-371.jpg');
    background-size: cover;
    background-position: center;
    /* Kein Parallax/Scrolling-Effekt – bleibt statisch */
    background-attachment: scroll;
    opacity: 0.05;
    z-index: 0;
}

/* Removed gold accent line in testimonials */

.testimonials-container {
    position: relative;
    z-index: 2;
}

.testimonial-card-3d {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(204, 167, 56, 0.2);
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-3d: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);
}

/* ============================================
   ABOUT SECTION - Hero Style
   ============================================ */
.about-premium {
    padding: 10rem 4rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 100%);
    position: relative;
    overflow: hidden;
}

.about-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../../img/Shooting 2025 Gio/GM-4813.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-container {
    position: relative;
    z-index: 2;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-feature {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(204, 167, 56, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-feature:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(204, 167, 56, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(204, 167, 56, 0.1);
}

/* ============================================
   GALLERY SECTION - Hero Style
   ============================================ */
.gallery-premium {
    padding: 10rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,1) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-premium::before {
    content: '';
    position: absolute;
    inset: 0; /* full coverage incl. padding */
    background: 
        radial-gradient(circle at 30% 20%, rgba(204, 167, 56, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(204, 167, 56, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.gallery-filters {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 167, 56, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.filter-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* No need for complex hover logic anymore - handled by JavaScript */

.gallery-grid {
    position: relative;
    z-index: 2;
}

.gallery-item {
    background: #000;
    border: 1px solid rgba(204, 167, 56, 0.1);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    border-color: rgba(204, 167, 56, 0.3);
    box-shadow: 0 0 30px rgba(204, 167, 56, 0.15);
}

/* ============================================
   CONTACT SECTION - Hero Style Enhancement
   ============================================ */
.contact-premium {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.95) 100%);
    position: relative;
    overflow: hidden;
}

.contact-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../img/Shooting 2024/Bereits gepostet/Traumschmiede WEB-496.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.contact-form {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(30px);
    padding: 3rem;
    border: 1px solid rgba(204, 167, 56, 0.15);
    position: relative;
    z-index: 2;
}

.form-input,
.form-textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(204, 167, 56, 0.2);
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(204, 167, 56, 0.5);
    box-shadow: 0 0 20px rgba(204, 167, 56, 0.1);
}

/* ============================================
   GLOBAL ENHANCEMENTS - Hero Consistency
   ============================================ */

/* Remove all gray backgrounds */
.section-parallax,
.services-premium,
.testimonials-3d,
.about-premium,
.gallery-premium,
.contact-premium {
    background-color: transparent;
}

/* Consistent black gradient backgrounds */
section {
    position: relative;
}

/* Gold accent animations throughout */
@keyframes goldPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

/* Floating particles for all sections */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #CCA738;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Consistent section headers */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

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

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

.materials-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #FFFFFF;
    position: relative;
}

/* Styling für umstrukturierte Galerie-Header */
.gallery-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #CCA738;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.gallery-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-family: 'Didot', serif;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
}

.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%);
}

/* Ensure all text is white/gold only */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
}

p, li, span {
    color: rgba(255, 255, 255, 0.85);
}

.gold-text,
.gold-accent,
.gold {
    color: #CCA738 !important;
}

/* Enhanced hover states */
*[class*="card"]:hover,
*[class*="item"]:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    border-color: rgba(204, 167, 56, 0.5) !important;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .services-premium::before,
    .testimonials-3d::before,
    .about-premium::before,
    .gallery-premium::before,
    .contact-premium::before {
        opacity: 0.03; /* Lighter backgrounds on smaller screens */
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 2rem;
    }
    
    .floating-particles {
        display: none; /* Disable particles on mobile for performance */
    }

    /* On smartphones, remove top padding from gallery section */
    .gallery-premium {
        padding-top: 0;
    }
}
