/* Template 14 - Sunset Gradient / Warm Modern */
@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=General+Sans:wght@400;500;600&display=swap');

:root {
    --sunset-peach: #ffe8d6;
    --sunset-coral: #ff8066;
    --sunset-orange: #ff6b35;
    --sunset-magenta: #c9184a;
    --sunset-purple: #7b2cbf;
    --bg-warm: #fff9f5;
    --bg-white: #ffffff;
    --text-dark: #2d1810;
    --text-medium: #5c4033;
    --text-light: #8b7355;
}

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

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

body {
    font-family: 'General Sans', -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-warm);
    font-weight: 400;
}

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

/* Header - Split Colorful Bar */
.site-header {
    background: var(--bg-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
}

.site-header::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--sunset-peach) 0%, 
        var(--sunset-coral) 25%, 
        var(--sunset-orange) 50%, 
        var(--sunset-magenta) 75%, 
        var(--sunset-purple) 100%
    );
}

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

.site-logo a {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.4s ease;
}

.site-logo a:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

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

.site-nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.site-nav a:hover {
    background: linear-gradient(135deg, var(--sunset-coral), var(--sunset-orange));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.section.head {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section.head::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 128, 102, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.section.head::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(201, 24, 74, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section.head h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.section.head h1 span {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-magenta), var(--sunset-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section.head p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.section header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-coral), var(--sunset-orange));
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

/* Footer - Gradient Bottom */
.footer {
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--sunset-peach) 100%);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, var(--bg-warm), transparent);
    pointer-events: none;
}

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

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

.footer-tagline {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

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

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--bg-white);
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-links a:hover {
    background: linear-gradient(135deg, var(--sunset-coral), var(--sunset-orange));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 24, 16, 0.1);
    position: relative;
    z-index: 1;
}

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

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

.fade-in {
    opacity: 0;
    animation: floatUp 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

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: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 18px;
    margin-bottom: 12px;
    text-align: left;
    font-weight: 600;
}
