/* ==========================================
   ESTELLE LUXURY EDITORIAL STYLE
   Organisch, fließend, exclusiv
   ========================================== */

/* Elegant Serif Font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

.estelle-about-luxury {
    width: 100%;
}

/* ==========================================
   TOP SECTION - CONTENT + IMAGE
   ========================================== */

.estelle-about-top {
    padding: 80px 0 40px 0;
    background: transparent; /* Hintergrund kommt von der Elementor-Section */
}

.estelle-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.estelle-about-top[data-image-position="left"] .estelle-about-content {
    order: 2;
}

.estelle-about-top[data-image-position="left"] .estelle-about-image {
    order: 1;
}

/* Content */
.estelle-about-content {
    padding: 20px 0;
}

.estelle-location {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--bronze-accent);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.estelle-main-title {
    font-family: 'Cormorant', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--deep-brown);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.estelle-divider {
    width: 60px;
    height: 1px;
    background: var(--bronze-accent);
    margin-bottom: 30px;
}

.estelle-quote {
    font-family: 'Cormorant', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--warm-brown);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.estelle-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--deep-brown);
    margin-bottom: 35px;
    font-weight: 300;
}

.estelle-text p {
    margin-bottom: 15px;
}

/* Link with underline animation */
.estelle-link {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bronze-accent);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.estelle-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bronze-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.estelle-link:hover {
    color: var(--deep-brown);
}

.estelle-link:hover::after {
    width: 100%;
}

/* Image Frame */
.estelle-about-image {
    position: relative;
    padding: 20px;
}

.estelle-frame {
    background: white;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.estelle-frame:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.estelle-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================
   SERVICES - EDITORIAL FLOW STYLE
   Organic, flowing, magazine-like
   ========================================== */

.estelle-services-editorial {
    padding: 60px 0 80px 0;
    background: transparent; /* Hintergrund kommt von der Elementor-Section */
}

.estelle-services-editorial .estelle-services-lang {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.estelle-services-heading {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--bronze-accent);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

/* Flow Layout - 2 Columns Desktop, staggered */
.estelle-services-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
    position: relative;
}

/* Service Item - Minimal, Editorial */
.estelle-service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.estelle-service-item:nth-child(1) { animation-delay: 0.1s; }
.estelle-service-item:nth-child(2) { animation-delay: 0.2s; }
.estelle-service-item:nth-child(3) { animation-delay: 0.3s; }
.estelle-service-item:nth-child(4) { animation-delay: 0.4s; }
.estelle-service-item:nth-child(5) { animation-delay: 0.5s; }
.estelle-service-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gold Dot - Subtle Accent */
.estelle-service-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--bronze-accent);
    margin-top: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0 rgba(184, 149, 106, 0.4);
}

.estelle-service-item:hover .estelle-service-dot {
    transform: scale(1.5);
    box-shadow: 0 0 0 8px rgba(184, 149, 106, 0.2);
}

/* Service Text */
.estelle-service-text h4 {
    font-family: 'Cormorant', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--deep-brown);
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.estelle-service-item:hover .estelle-service-text h4 {
    color: var(--bronze-accent);
}

.estelle-service-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--warm-brown);
    margin: 0;
    font-weight: 300;
}

/* Subtle connecting line effect (optional) */
.estelle-services-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(184, 149, 106, 0.15) 20%,
        rgba(184, 149, 106, 0.15) 80%,
        transparent
    );
    transform: translateX(-50%);
}

/* Language Animation */
.estelle-lang-content,
.estelle-services-lang {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media screen and (max-width: 1200px) {
    .estelle-about-container,
    .estelle-services-editorial .estelle-services-lang {
        padding: 0 30px;
    }
    
    .estelle-main-title {
        font-size: 48px;
    }
    
    .estelle-services-heading {
        font-size: 42px;
    }
    
    .estelle-services-flow {
        gap: 40px 50px;
    }
}

@media screen and (max-width: 992px) {
    .estelle-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .estelle-about-top[data-image-position="left"] .estelle-about-content,
    .estelle-about-top[data-image-position="right"] .estelle-about-content {
        order: 2;
    }
    
    .estelle-about-top[data-image-position="left"] .estelle-about-image,
    .estelle-about-top[data-image-position="right"] .estelle-about-image {
        order: 1;
    }
    
    .estelle-services-flow {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .estelle-services-flow::before {
        display: none;
    }
    
    .estelle-main-title {
        font-size: 42px;
    }
    
    .estelle-services-heading {
        font-size: 38px;
    }
}

@media screen and (max-width: 768px) {
    .estelle-about-top {
        padding: 60px 0 30px 0;
    }
    
    .estelle-services-editorial {
        padding: 50px 0 60px 0;
    }
    
    .estelle-about-container,
    .estelle-services-editorial .estelle-services-lang {
        padding: 0 20px;
    }
    
    .estelle-main-title {
        font-size: 36px;
    }
    
    .estelle-quote {
        font-size: 20px;
    }
    
    .estelle-services-heading {
        font-size: 34px;
        margin-bottom: 45px;
    }
    
    .estelle-service-text h4 {
        font-size: 22px;
    }
    
    .estelle-service-text p {
        font-size: 14px;
    }
    
    .estelle-frame {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .estelle-main-title {
        font-size: 32px;
    }
    
    .estelle-quote {
        font-size: 18px;
    }
    
    .estelle-text {
        font-size: 16px;
    }
    
    .estelle-services-heading {
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .estelle-service-item {
        gap: 15px;
    }
    
    .estelle-service-text h4 {
        font-size: 20px;
    }
    
    .estelle-service-text p {
        font-size: 14px;
    }
}
