/* Template 61 - Royal Velvet / Luxe Opulence */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --velvet-deep: #1a0a2e;
    --velvet-purple: #2d1b4e;
    --velvet-plum: #4a2c6a;
    --royal-gold: #d4a849;
    --gold-light: #f0d78c;
    --champagne: #f7f3e9;
    --ivory: #fffef9;
    --pearl: #e8e4dc;
    --rose: #c97b84;
    --burgundy: #722f37;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: var(--velvet-deep);
    background: var(--ivory);
    font-weight: 400;
}

/* Elegant pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a849' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

/* Header - Royal Style */
.site-header {
    background: var(--velvet-deep);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-gold), var(--gold-light), var(--royal-gold));
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.site-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--royal-gold);
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
}

.site-logo a::before,
.site-logo a::after {
    content: '♦';
    font-size: 0.6em;
    margin: 0 0.75rem;
    color: var(--gold-light);
    vertical-align: middle;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.site-nav a {
    color: var(--champagne);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--royal-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.site-nav a:hover {
    color: var(--royal-gold);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.section.head {
    padding: 8rem 0 6rem;
    text-align: center;
    background: linear-gradient(180deg, var(--velvet-deep) 0%, var(--velvet-purple) 50%, var(--ivory) 100%);
    position: relative;
}

.section.head::before {
    content: '❧';
    display: block;
    font-size: 2rem;
    color: var(--royal-gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(212, 168, 73, 0.5);
}

.section.head h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--champagne);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.section.head h1::first-letter {
    font-size: 5rem;
    color: var(--royal-gold);
    font-weight: 600;
    font-style: normal;
}

.section.head p {
    font-size: 1.125rem;
    color: var(--velvet-deep);
    max-width: 600px;
    margin: 0 auto;
    background: var(--ivory);
    padding: 2rem 3rem;
    border: 1px solid var(--royal-gold);
    position: relative;
}

.section.head p::before,
.section.head p::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--royal-gold);
}

.section.head p::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.section.head p::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

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

.section header::before {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
    margin: 0 auto 2rem;
}

.section header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--velvet-deep);
    margin-bottom: 1rem;
    font-style: italic;
}

.section header p {
    font-size: 1rem;
    color: var(--velvet-plum);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--velvet-purple);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--velvet-deep);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-about {
    max-width: 350px;
}

.footer-tagline {
    color: var(--pearl);
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--champagne);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '✧';
    margin-right: 0.5rem;
    color: var(--royal-gold);
    font-size: 0.7em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--royal-gold);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 168, 73, 0.2);
}

.footer-bottom::before {
    content: '♦';
    display: block;
    color: var(--royal-gold);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.copyright {
    color: var(--pearl);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.copyright a {
    color: var(--pearl);
    text-decoration: none;
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
