/* Template 40 - Sunset Boulevard / Warm Retro */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Libre+Franklin:wght@300;400;500;600&family=Crimson+Text:wght@400;600;700&display=swap');

:root {
    --sunset-orange: #ff6b35;
    --sunset-pink: #ff8f8f;
    --sunset-coral: #ff7f6e;
    --golden: #f7b538;
    --cream: #fff8e8;
    --sand: #f5e6d3;
    --terracotta: #c75000;
    --brown: #5c4033;
    --charcoal: #2d2d2d;
    --navy: #1a1a2e;
    --teal: #16697a;
}

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

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

body {
    font-family: 'Crimson Text', Georgia, serif;
    line-height: 1.75;
    color: var(--charcoal);
    background: var(--cream);
    font-weight: 400;
    font-size: 1.1rem;
}

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

/* Header - Retro diner style */
.site-header {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 15'%3E%3Cpath fill='%231a1a2e' d='M0,0 L50,15 L100,0 L100,0 L0,0 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 15px;
}

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

.site-logo a {
    font-family: 'Abril Fatface', cursive;
    font-size: 2rem;
    color: var(--golden);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 0 var(--terracotta);
}

.site-logo a:hover {
    color: var(--sunset-orange);
    text-shadow: 2px 2px 0 var(--golden);
}

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

.site-nav a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.site-nav a:hover {
    color: var(--golden);
    border-color: var(--golden);
}

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

.section.head::before {
    content: '\2605 \2605 \2605';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    color: var(--sunset-orange);
    letter-spacing: 1.5rem;
}

.section.head h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 4rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 0 var(--sand);
}

.section.head p {
    font-size: 1.2rem;
    color: var(--brown);
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--cream);
    border: 3px solid var(--terracotta);
    position: relative;
}

.section.head p::before,
.section.head p::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--sunset-orange);
}

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

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

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

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

.section header h2 {
    font-family: 'Abril Fatface', cursive;
    font-size: 2.5rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section header h2::before,
.section header h2::after {
    content: '\2014';
    color: var(--sunset-orange);
    margin: 0 0.75rem;
}

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

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.4rem;
    color: var(--terracotta);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 15'%3E%3Cpath fill='%231a1a2e' d='M0,15 L50,0 L100,15 L100,15 L0,15 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 15px;
}

.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(--sand);
    font-size: 1rem;
    line-height: 1.8;
}

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

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% { text-shadow: 3px 3px 0 var(--sand); }
    50% { text-shadow: 3px 3px 0 var(--sunset-pink); }
}

html, body {
    height: 100%;
}

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

main {
    flex: 1;
}
