/* Design Moderne et Luxueux - ADINOVs */

/* Hero Slider Moderne */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #F8F7F4;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    filter: brightness(0.7) contrast(1.1);
}

.hero-slide.active .hero-slide-image {
    animation: subtleZoom 10s ease-out forwards;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Overlay élégant */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.3) 100%);
    z-index: 1;
}

/* Contenu du slide */
.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations de texte élégantes */
.hero-slide-title,
.hero-slide-subtitle,
.hero-slide-description,
.hero-slide-buttons {
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-slide-subtitle {
    animation: elegantSlideUp 1s ease-out 0.2s forwards;
}

.hero-slide.active .hero-slide-title {
    animation: elegantSlideUp 1s ease-out 0.4s forwards;
}

.hero-slide.active .hero-slide-description {
    animation: elegantSlideUp 1s ease-out 0.6s forwards;
}

.hero-slide.active .hero-slide-buttons {
    animation: elegantSlideUp 1s ease-out 0.8s forwards;
}

@keyframes elegantSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation minimaliste */
.hero-slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-slider-dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.hero-slider-dot.active {
    width: 32px;
    border-radius: 4px;
    background: #D4AF37;
}

/* Flèches élégantes */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.hero-slider-arrow:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow.prev {
    left: 40px;
}

.hero-slider-arrow.next {
    right: 40px;
}

/* Barre de progression minimaliste */
.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hero-slider-progress-bar {
    height: 100%;
    background: #D4AF37;
    width: 0%;
    transition: width 0.1s linear;
}

/* Sections modernes */
.modern-section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

/* Cards luxueuses */
.luxury-card {
    background: white;
    border: 1px solid rgba(232, 220, 196, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card:hover::before {
    transform: scaleX(1);
}

.luxury-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
    transform: translateY(-8px);
}

/* Typographie moderne */
.modern-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.modern-body {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.7;
}

/* Boutons modernes */
.modern-btn {
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Espacement moderne */
.modern-spacing {
    margin-bottom: 24px;
}

.modern-spacing-lg {
    margin-bottom: 48px;
}

/* Ligne décorative */
.decorative-line {
    width: 60px;
    height: 2px;
    background: #D4AF37;
    margin: 24px 0;
}

/* Effet de survol sur les images */
.image-hover-effect {
    overflow: hidden;
    position: relative;
}

.image-hover-effect img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-hover-effect:hover img {
    transform: scale(1.05);
}

/* Grille moderne */
.modern-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .modern-grid {
        gap: 48px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-slider-arrow.prev {
        left: 20px;
    }
    
    .hero-slider-arrow.next {
        right: 20px;
    }
    
    .hero-slider-nav {
        bottom: 40px;
    }
    
    .modern-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
}

/* Animations subtiles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Accent doré */
.gold-accent {
    color: #D4AF37;
}

.gold-border {
    border-color: #D4AF37;
}

.gold-bg {
    background-color: #D4AF37;
}

/* Texte luxueux */
.luxury-text {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E5C3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
