/* 
 * Styles pour Le Valfleurie
 * Theme: Luxury, Slate Blue & Antique Gold
 */

:root {
    --vlfr-bg-dark: #0f172a;
    --vlfr-bg-section: #1e293b;
    --vlfr-gold: #cda434;
    --vlfr-gold-hover: #e6c86a;
    --vlfr-text-light: #e2e8f0;
    --vlfr-text-muted: #94a3b8;
    --vlfr-font-heading: 'Cormorant Garamond', serif;
    --vlfr-font-body: 'Inter', sans-serif;
    --vlfr-transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.vlfr-body {
    background-color: var(--vlfr-bg-dark);
    color: var(--vlfr-text-light);
    font-family: var(--vlfr-font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .vlfr-brand-name {
    font-family: var(--vlfr-font-heading);
    font-weight: 600;
}

a {
    color: var(--vlfr-text-light);
    text-decoration: none;
    transition: var(--vlfr-transition);
}

a:hover {
    color: var(--vlfr-gold);
}

/* Header */
.vlfr-site-header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(205, 164, 52, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.vlfr-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vlfr-brand-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vlfr-logo-mark {
    font-family: var(--vlfr-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vlfr-bg-dark);
    background: var(--vlfr-gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.vlfr-brand-texts {
    display: flex;
    flex-direction: column;
}

.vlfr-brand-name {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--vlfr-gold);
    line-height: 1.2;
}

.vlfr-brand-sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--vlfr-text-muted);
}

.vlfr-header-badge {
    border: 1px solid var(--vlfr-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.vlfr-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--vlfr-gold);
}

/* Hero Section */
.vlfr-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.vlfr-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: 1;
}

.vlfr-hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.vlfr-hero-kicker {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vlfr-gold);
    margin-bottom: 1.5rem;
}

.vlfr-hero-h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #cda434);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vlfr-hero-desc {
    font-size: 1.1rem;
    color: var(--vlfr-text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.vlfr-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.vlfr-hero-feature-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vlfr-feature-icon {
    color: var(--vlfr-gold);
    font-size: 1.2rem;
}

.vlfr-feature-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* General Sections */
.vlfr-page-section {
    padding: 6rem 2rem;
}

.vlfr-section-dark {
    background-color: var(--vlfr-bg-dark);
}

.vlfr-section-light {
    background-color: var(--vlfr-bg-section);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vlfr-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vlfr-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vlfr-section-h2 {
    font-size: 2.5rem;
    color: var(--vlfr-gold);
    margin-bottom: 1rem;
}

.vlfr-section-intro {
    font-size: 1.1rem;
    color: var(--vlfr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.vlfr-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vlfr-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--vlfr-transition);
}

.vlfr-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 164, 52, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.vlfr-gold-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 1) 0%, rgba(15, 23, 42, 1) 100%);
    border: 1px solid rgba(205, 164, 52, 0.15);
}

.vlfr-gold-card:hover {
    border-color: var(--vlfr-gold);
    box-shadow: 0 10px 30px -10px rgba(205, 164, 52, 0.15);
}

.vlfr-card-kicker {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--vlfr-gold);
    margin-bottom: 1rem;
}

.vlfr-card-h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.vlfr-card-text {
    font-size: 0.95rem;
    color: var(--vlfr-text-muted);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.vlfr-card-list {
    list-style: none;
}

.vlfr-card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--vlfr-text-light);
}

.vlfr-card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--vlfr-gold);
    font-family: var(--vlfr-font-heading);
}

/* Footer */
.vlfr-site-footer {
    background-color: #0a0f1a;
    padding: 4rem 2rem 1.5rem;
    border-top: 2px solid rgba(205, 164, 52, 0.2);
}

.vlfr-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.vlfr-footer-slogan {
    font-family: var(--vlfr-font-heading);
    font-size: 2rem;
    color: var(--vlfr-gold);
    margin-bottom: 1rem;
}

.vlfr-footer-desc, .vlfr-footer-text, .vlfr-address-block {
    font-size: 0.9rem;
    color: var(--vlfr-text-muted);
    font-style: normal;
}

.vlfr-footer-h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vlfr-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.vlfr-contact-link {
    font-size: 0.9rem;
}

.vlfr-footer-menu {
    list-style: none;
}

.vlfr-footer-menu li {
    margin-bottom: 0.8rem;
}

.vlfr-menu-link {
    font-size: 0.9rem;
    color: var(--vlfr-text-muted);
}

.vlfr-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.vlfr-copyright {
    font-size: 0.8rem;
    color: var(--vlfr-text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .vlfr-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .vlfr-header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vlfr-hero-h1 {
        font-size: 2.5rem;
    }
    
    .vlfr-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .vlfr-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
