:root {
    --bordeaux: #8B2942;
    --rouge-passion: #C41E3A;
    --rose-profond: #B76E79;
    --rose-tendre: #F4E1E6;
    --or-antique: #C9A962;
    --or-clair: #E8D9A0;
    --creme: #FDF8F5;
    --blanc-nacre: #FFFEF9;
    --mauve-doux: #E8E0F0;
    --noir-elegance: #2C1810;
}

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

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--creme);
    color: var(--noir-elegance);
    line-height: 1.7;
    padding-bottom: 75px;
}

/* ========== HEADER ========== */
.top-bar {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--rouge-passion) 100%);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.top-bar .phone-number {
    color: var(--or-clair);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}
.top-bar .phone-number span { opacity: 0.8; font-weight: 400; }

.nav-container {
    background: var(--blanc-nacre);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--or-antique);
    position: relative;
}
.nav-logo {
    font-family: 'Pinyon Script', cursive;
    font-size: 2rem;
    color: var(--bordeaux);
    text-decoration: none;
}
nav { display: flex; gap: 0.3rem; flex-wrap: wrap; justify-content: center; }
nav a {
    color: var(--bordeaux);
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
nav a:hover, nav a.active {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--rouge-passion) 100%);
    color: var(--blanc-nacre);
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--bordeaux);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--rouge-passion) 100%);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu.active { display: flex; opacity: 1; visibility: visible; }
.mobile-menu a {
    color: var(--blanc-nacre);
    text-decoration: none;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--or-clair); }
.mobile-menu-phones {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}
.mobile-menu-phones a {
    background: var(--or-antique);
    color: var(--noir-elegance);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--mauve-doux) 0%, var(--rose-tendre) 100%);
    padding: 3rem 2rem;
    text-align: center;
}
.page-header h1 {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    color: var(--bordeaux);
    margin-bottom: 0.5rem;
}
.page-header .subtitle {
    color: var(--or-antique);
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

/* ========== MAIN CONTENT ========== */
.main-content { padding: 3rem 2rem; max-width: 1400px; margin: 0 auto; }

/* ========== SECTION TITLES ========== */
.section-title { text-align: center; margin-bottom: 1rem; }
.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--bordeaux);
    margin-bottom: 0.5rem;
}
.section-title p { color: var(--rose-profond); font-size: 1.1rem; }
.ornament {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: var(--or-antique);
    margin: 1rem 0 2rem;
}
.ornament::before { content: "❧ ❦ ❧"; }

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--rouge-passion) 100%);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0 2rem;
}
.cta-section h2 {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.5rem;
    color: var(--or-clair);
    margin-bottom: 1rem;
}
.cta-section p { color: var(--blanc-nacre); font-size: 1.1rem; margin-bottom: 1.5rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--or-antique) 0%, var(--or-clair) 100%);
    color: var(--noir-elegance);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, var(--noir-elegance) 0%, var(--bordeaux) 100%);
    color: var(--blanc-nacre);
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--or-clair);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-section p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-section a {
    display: block;
    color: var(--blanc-nacre);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-section a:hover { color: var(--or-clair); }
.footer-numbers p { margin: 0.3rem 0; }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== FLOATING CALL BUTTON ========== */
.floating-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--rouge-passion) 100%);
    display: flex;
    justify-content: space-around;
    padding: 0.8rem 0.5rem;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}
.floating-call a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--blanc-nacre);
    font-size: 0.75rem;
    gap: 0.2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.floating-call a:hover { background: rgba(255,255,255,0.1); }
.floating-call .call-icon { font-size: 1.3rem; animation: pulse 2s infinite; }
.floating-call .call-price { font-weight: 700; color: var(--or-clair); }
.floating-call .cb-link { background: var(--or-antique); color: var(--noir-elegance); }
.floating-call .cb-link .call-price { color: var(--bordeaux); }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .nav-logo { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .page-header h1 { font-size: 2.5rem; }
    .page-header .subtitle { font-size: 1rem; }
    .section-title h2 { font-size: 1.8rem; }
    .main-content { padding: 2rem 1rem; }
    .cta-section { padding: 2rem 1rem; }
    .cta-section h2 { font-size: 2rem; }
    .cta-btn { padding: 0.8rem 1.5rem; font-size: 1rem; }
}

@media (max-width: 480px) {
    .page-header h1 { font-size: 2rem; }
    .nav-logo { font-size: 1.4rem; }
    .floating-call a { padding: 0.2rem 0.5rem; font-size: 0.7rem; }
    .floating-call .call-icon { font-size: 1.1rem; }
}

/* ========== DESKTOP FLOATING BUTTON ========== */
@media (min-width: 769px) {
    body { padding-bottom: 0; }
    .floating-call {
        bottom: 20px;
        left: auto;
        right: 20px;
        width: auto;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        border-radius: 20px;
    }
    .floating-call a {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
