/* === DRRP: CLEAN MINIMAL DESIGN === */
/* Burgundy ONLY for buttons and text accents */
/* Last updated: 2026-06-28 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
    --parchment: #f8f1e2;
    --parchment-light: #fdfbf7;
    --burgundy: #8b2138;
    --gold: #bf8c34;
    --text: #2d2520;
    --text-mid: #4a3f38;
    --text-light: #6b5e54;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Spectral', Georgia, serif;
    background: var(--parchment);
    color: var(--text);
    line-height: 1.75;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--text); /* Dark text, NOT burgundy */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-top: 2rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; color: var(--text-mid); }

/* Gold divider under h2 */
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0.8rem 0 1.5rem;
}

.text-center h2::after { margin-left: auto; margin-right: auto; }

/* ─── LAYOUT ─── */
.container, main, .page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

section { padding: 3rem 0; }

/* ─── HERO SECTION ─── */
.hero {
    padding: 4rem 1.5rem;
    text-align: center;
    background: var(--parchment-light);
    border-bottom: 2px solid rgba(191,140,52,0.2);
}

.hero h1 {
    color: var(--text);
    margin-bottom: 1rem;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    color: var(--text-mid);
}

/* ─── IMAGES ─── */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 6px;
}

/* ─── BUTTONS: ONLY BURGUNDY HERE ─── */
.btn, button, .cta, [type="submit"] {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--burgundy); /* BURGUNDY ONLY FOR BUTTONS */
    color: var(--parchment);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--burgundy);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 0.5rem;
}

.btn:hover, button:hover, .cta:hover {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn-secondary:hover {
    background: var(--burgundy);
    color: var(--parchment);
}

/* ─── NAVIGATION ─── */
nav, .navbar {
    background: var(--parchment-light);
    border-bottom: 2px solid var(--gold);
    padding: 1rem 1.5rem;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover { color: var(--burgundy); }

/* ─── CARDS ─── */
.card {
    background: var(--parchment-light);
    border: 1px solid rgba(191,140,52,0.2);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1rem 0;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ─── FORMS ─── */
input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--parchment-light);
    border: 1.5px solid rgba(139,33,56,0.2);
    border-radius: 4px;
    font-family: 'Spectral', serif;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
}

label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ─── BLOCKQUOTE ─── */
blockquote {
    background: rgba(191,140,52,0.08);
    border-left: 3px solid var(--gold);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-mid);
}

/* ─── LISTS ─── */
ul, ol { margin: 1rem 0 1rem 1.5rem; color: var(--text-mid); }
li { margin-bottom: 0.5rem; }

/* ─── LINKS ─── */
a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

nav a, .btn { border-bottom: none; }

/* ─── FOOTER ─── */
footer {
    background: var(--parchment-light);
    color: var(--text-mid);
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 2px solid var(--gold);
    margin-top: 3rem;
}

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

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    .container, main { padding: 1.5rem 1rem; }
    .hero { padding: 3rem 1rem; }
    nav ul { gap: 1rem; }
    nav a { font-size: 0.8rem; }
    .btn { width: 100%; max-width: 300px; }
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }


/* === LUXURY FLOATING CONTACT WIDGET === */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 24px;
}
.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.whatsapp-btn {
    background: #25D366;
    color: white;
}
.call-btn {
    background: var(--burgundy);
    color: var(--parchment);
    border: 2px solid var(--gold);
}
@media (max-width: 768px) {
    .floating-contact { bottom: 16px; right: 16px; }
    .floating-btn { width: 50px; height: 50px; font-size: 20px; }
}
