/* Template 89 - Silk Road / Eastern Bazaar */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
    --spice-gold: #d4a574;
    --turmeric: #e4b363;
    --saffron: #f4a259;
    --paprika: #bc6c25;
    --cinnamon: #8b4513;
    --deep-purple: #5c3d6e;
    --royal-blue: #264653;
    --cream-silk: #fef9ef;
    --parchment: #f5ebe0;
    --ink: #2c2c2c;
    --jade: #2d6a4f;
}

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

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

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream-silk);
    font-weight: 400;
    overflow-x: hidden;
}

/* Decorative pattern background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30 Z' fill='none' stroke='%23d4a574' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: var(--royal-blue);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--saffron) 0px,
        var(--saffron) 10px,
        var(--turmeric) 10px,
        var(--turmeric) 20px,
        var(--spice-gold) 20px,
        var(--spice-gold) 30px,
        var(--paprika) 30px,
        var(--paprika) 40px
    );
}

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

.site-logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--spice-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.site-logo a::before {
    content: '✧';
    font-size: 1.5rem;
    color: var(--turmeric);
}

.site-logo a::after {
    content: '✧';
    font-size: 1.5rem;
    color: var(--turmeric);
}

.site-logo a:hover {
    color: var(--turmeric);
}

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

.site-nav a {
    color: var(--parchment);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--spice-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.site-nav a:hover::before {
    width: 80%;
}

/* Hero Section */
.section.head {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--parchment) 0%, var(--cream-silk) 100%);
    position: relative;
    text-align: center;
}

.section.head::before {
    content: '❧';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--spice-gold);
}

.section.head h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.section.head h1::first-letter {
    font-size: 5rem;
    color: var(--paprika);
    float: left;
    line-height: 0.85;
    margin-right: 0.5rem;
}

.section.head p {
    font-size: 1.15rem;
    color: var(--ink);
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem 2.5rem;
    border: 2px solid var(--spice-gold);
    position: relative;
}

.section.head p::before,
.section.head p::after {
    content: '✦';
    position: absolute;
    color: var(--spice-gold);
    font-size: 1.25rem;
}

.section.head p::before {
    top: -0.75rem;
    left: 2rem;
    background: white;
    padding: 0 0.5rem;
}

.section.head p::after {
    bottom: -0.75rem;
    right: 2rem;
    background: white;
    padding: 0 0.5rem;
}

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

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

.section header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal-blue);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.section header h2::before,
.section header h2::after {
    content: '❖';
    color: var(--spice-gold);
    margin: 0 1rem;
    font-style: normal;
}

.section header p {
    font-size: 1.1rem;
    color: var(--cinnamon);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Footer */
.footer {
    background: var(--royal-blue);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--deep-purple) 0px,
        var(--deep-purple) 15px,
        var(--spice-gold) 15px,
        var(--spice-gold) 30px,
        var(--jade) 30px,
        var(--jade) 45px
    );
}

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

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    color: var(--parchment);
    line-height: 1.8;
    font-style: italic;
}

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

.footer-links a {
    color: var(--spice-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '◈';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::before {
    transform: rotate(45deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
}

.copyright a {
    color: var(--parchment);
    font-size: 0.9rem;
}

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

.fade-in {
    opacity: 0;
    animation: floatIn 0.6s ease forwards;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

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

main {
    flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--cinnamon);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
    font-style: italic;
}
