@import url("style.css");

/* --- Hauptsektion --- */
.premium-profile {
    position: relative;
    padding: clamp(60px, 12vh, 160px) 0;
    background-color: #ffffff;
    color: #1d1d1f;
    overflow: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin-top: 2rem;
}

/* --- Hintergrund-Element --- */
.premium-profile .bg-accent-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(19, 166, 75, 0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* --- Layout Container --- */
.premium-profile .container {
    max-width: 920px; /* Leicht vergrößert für die größere Schrift */
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* --- Header & Typografie --- */
.premium-profile .profile-header {
    margin-bottom: clamp(60px, 8vh, 100px);
}

.premium-profile .badge-premium {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-block;
}

.premium-profile .display-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    color: var(--dark-green);
    line-height: 1.1;
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.premium-profile .display-title .thin {
    font-weight: 300;
    opacity: 0.7;
    font-style: italic;
}


.premium-profile .header-divider {
    
    width: 100px;              
    height: 4px;               
    
   
    margin: 2rem auto;        
    
    
    background: var(--accent); 
    border-radius: 2px;        
    
  
    box-shadow: 0 2px 10px rgba(19, 166, 75, 0.2);
    
    
    transition: var(--transition);
    position: relative;
}


.premium-profile:hover .header-divider {
    width: 150px;
    background: var(--accent);
}

/* --- Mobile Anpassung --- */
@media (max-width: 767px) {
    .premium-profile .header-divider {
        width: 60px;          
        margin: 1.5rem auto;
        height: 3px;
    }
}


.premium-profile .content-section {
    margin-bottom: 80px;
}

.premium-profile .lead-text {
  
    font-size: clamp(1.4rem, 3.2vw, 1.9rem); 
    line-height: 1.45;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.premium-profile .roman-text.large {
   
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.85;
    color: #3a3a3c;
    margin-bottom: 45px;
    text-align: left;
    hyphens: auto;
}

.premium-profile .roman-text.large strong {
    color: var(--dark-green);
    font-weight: 700;
}

/* --- Der Kasten (Maxime) --- */
.premium-profile .maxime-highlight {
    margin: 80px 0 120px 0; 
    padding: 60px 40px;
    border-radius: 24px;
    background: linear-gradient(145deg, #f8f9f8, #ffffff);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.premium-profile .maxime-highlight p {
    font-family: var(--font-display);
    /* Auch den Kasten-Text leicht skaliert */
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    color: var(--dark-green);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Verbindungspfeil am Kasten */
.premium-profile .maxime-highlight::after {
    content: '↓';
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Mono', monospace;
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: bold;
    animation: arrow-bounce 2s infinite;
}

@keyframes arrow-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* --- Visuals --- */
.premium-profile .central-visual {
    margin: clamp(80px, 10vh, 120px) 0;
}

.premium-profile .image-frame {
    position: relative;
    
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 40px 80px rgba(0,0,0,0.07);
    border-radius: 16px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-profile .image-frame:hover {
    transform: translateY(-10px) scale(1.01);
}

.premium-profile .hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* --- Footer & Spezial-Button --- */
.premium-profile .profile-footer {
    margin-top: clamp(80px, 10vh, 120px);
    padding-top: 60px;
    text-align: center;
}

.premium-profile .line-decorator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #eaeaea, transparent);
    margin-bottom: 80px;
}

.premium-profile .btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 24px 50px; 
    font-size: 1.1rem; /* Auch den Button-Text minimal vergrößert */
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Mobile Optimierung --- */
@media (max-width: 768px) {
    .premium-profile .display-title { font-size: 2.8rem; }
    .premium-profile .lead-text { font-size: 1.45rem; }
    .premium-profile .roman-text.large { font-size: 1.25rem; }
    .premium-profile .btn-premium { width: 100%; justify-content: center; padding: 20px; }
}


.premium-profile .btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 24px 50px; 
    font-size: 1.1rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}


.premium-profile .btn-premium:hover {
    background: var(--accent);
    color: #081f18; 
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 222, 128, 0.2);
}

.premium-profile .btn-premium::after {
    content: '→';
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}


.premium-profile .btn-premium:hover::after {
    transform: translateX(8px);
}

/* Klick-Effekt */
.premium-profile .btn-premium:active {
    transform: translateY(-2px);
}




.premium-profile .about-visual-accent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; 
    margin: 100px 0 20px 0;
}


.premium-profile .accent-line {
    flex-grow: 1;
    height: 3px;
    background-color: #eee; 
    transition: opacity 0.6s ease; 
}


.premium-profile .image-frame {
    position: relative;
    width: 500px; 
    height: 300px; 
    overflow: hidden;
    /* filter: grayscale(100%); */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    border-radius: 0 !important; 
    flex-shrink: 0;
    z-index: 2;
}


.premium-profile .image-frame:hover {
    filter: grayscale(0%);
    width: 700px; 
  
}

/* WICHTIG: Kein Farbwechsel für .accent-line im Hover-Zustand */

.premium-profile .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
}


.premium-profile .image-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent);
    color: white;
    padding: 12px 20px;
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 10;
}


.premium-profile .image-subtext-centered {
    display: block;
    text-align: center;
    width: 100%;
    font-family: var(--font-mono, 'Space Mono', monospace);
    font-size: 0.8rem;
    color: var(--muted-clr);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 80px;
    opacity: 0.5;
}

/* Mobile Optimierung */
@media (max-width: 1024px) {
    .premium-profile .accent-line {
        display: none;
    }
    .premium-profile .image-frame {
        width: 100%;
        height: 250px;
        filter: grayscale(0%);
    }
    .premium-profile .image-frame:hover {
        width: 100%;
    }
}


/* --- Addon: Farbe & volle Deckkraft unter 1024px --- */
@media (max-width: 1024px) {
    .premium-profile .image-frame {
        filter: grayscale(0%) !important;
        -webkit-filter: grayscale(0%) !important;
        opacity: 1 !important;
    }

    .premium-profile .image-subtext-centered {
        opacity: 1 !important; 
    }

    .premium-profile .btn-premium{
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .premium-profile .btn-premium {
        
        padding: 16px 30px; 
        
      
        font-size: 0.85rem; 
        
        
        letter-spacing: 0.1em; 
        
       
        gap: 12px;
        
        
        width: auto; 
    }

   
    .premium-profile .btn-premium::after {
        font-size: 1.1rem;
    }
}