/* eclat.css - Éclat by TALL page specific styles */

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8941F;
    --light-gold: #F8F3E6;
    --accent-white: #FFFFFF;
    --dark-bg: #0A0A0A;
}

/* Éclat Hero */
.eclat-hero {
    background: linear-gradient(rgba(161, 151, 122, 0.842), rgba(146, 123, 123, 0.7)),
                url('../images/event_decor_table.jpg') center/cover no-repeat;
    color: var(--accent-white);
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.eclat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(102, 98, 87, 0.8) 70%);
    z-index: 1;
}

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

.eclat-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.eclat-hero h1 {
    color: var(--accent-white);
    margin-bottom: 1rem;
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.eclat-tagline {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.eclat-hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Difference Section */
.difference-section {
    padding: var(--section-padding);
    background-color: var(--light-gold);
}

.difference-section h2 {
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.difference-card {
    background: var(--accent-white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.difference-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.difference-card h3 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.difference-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-color: var(--accent-white);
}

.services-section h2 {
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-card.reverse {
    direction: rtl;
}

.service-card.reverse .service-content {
    direction: ltr;
}

.service-image {
    height: 400px;
    background: linear-gradient(45deg, var(--light-gold), #f5f1e8);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-placeholder {
    text-align: center;
    color: var(--primary-gold);
}

.service-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.service-placeholder p {
    color: #888;
    font-size: 0.9rem;
}

.service-content h3 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Packages Section */
.packages-section {
    padding: var(--section-padding);
    background-color: var(--light-gold);
}

.packages-section h2 {
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--accent-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 0.5rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

.package-header {
    background: var(--dark-bg);
    color: var(--accent-white);
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    color: var(--accent-white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.package-price {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.package-content {
    padding: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.package-features li i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.package-features li i.fa-times {
    color: #ccc;
}

.custom-package {
    background: var(--accent-white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed var(--primary-gold);
}

.custom-package h3 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
}

.custom-package p {
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Section */
.portfolio-section {
    padding: var(--section-padding);
    background-color: var(--accent-white);
}

.portfolio-section h2 {
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--light-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #666;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--accent-white);
    border-color: var(--primary-gold);
}

.filter-btn.active {
    background: var(--primary-gold);
    color: var(--accent-white);
    border-color: var(--primary-gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    height: 300px;
    background: var(--light-gold);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-placeholder {
    text-align: center;
    color: var(--primary-gold);
    z-index: 1;
}

.portfolio-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.portfolio-placeholder p {
    color: #888;
    font-size: 0.9rem;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.8));
    color: var(--accent-white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: var(--accent-white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.portfolio-overlay p {
    color: #f0f0f0;
    font-size: 0.9rem;
}

/* Timeline Section */
.timeline-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    color: var(--accent-white);
}

.timeline-section h2 {
    color: var(--accent-white);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-gold);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-step {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.timeline-content h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Testimonials */
.eclat-testimonials {
    padding: var(--section-padding);
    background-color: var(--light-gold);
}

.eclat-testimonials h2 {
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--accent-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 4px solid var(--primary-gold);
}

.testimonial-text p {
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.testimonial-text p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: var(--font-accent);
}

.testimonial-author {
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-bg);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #777;
    font-size: 0.9rem;
}

/* CTA Section */
.eclat-cta {
    padding: var(--section-padding);
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
                url('../images/patterns/eclat-cta-bg.jpg') center/cover no-repeat;
    color: var(--accent-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.eclat-cta h2 {
    color: var(--accent-white);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
}

.eclat-cta p {
    color: #f0f0f0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-image {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.reverse {
        direction: ltr;
    }
    
    .service-image {
        height: 300px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-step {
        margin: 0 1rem 0 0;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .eclat-hero h1 {
        font-size: 2.5rem;
    }
}