/* Template 38 - Cotton Candy / Pastel Dream */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&family=Nunito:wght@300;400;600&display=swap');

:root {
    --pink-light: #ffd6e0;
    --pink: #ffafc5;
    --pink-dark: #ff85a2;
    --blue-light: #d0f4fc;
    --blue: #a2d2ff;
    --blue-dark: #7ec8e3;
    --lavender: #e0c3fc;
    --mint: #c1f0db;
    --peach: #ffd6a5;
    --yellow: #fff5ba;
    --white: #ffffff;
    --cream: #fffef9;
    --text-dark: #5a5a7a;
    --text-light: #8888a8;
}

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

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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 50%, var(--lavender) 100%);
    background-attachment: fixed;
    font-weight: 400;
    font-size: 1.05rem;
    min-height: 100vh;
}

/* Floating bubbles background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.4) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.3) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
    animation: floatBubbles 15s ease-in-out infinite;
}

@keyframes floatBubbles {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Header - Soft cloud-like */
.site-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 40px 40px;
    margin: 0 1rem;
    box-shadow: 0 10px 40px rgba(162,210,255,0.3);
}

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

.site-logo a {
    font-family: 'Comfortaa', cursive;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.site-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.site-nav a:hover {
    background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,175,197,0.4);
}

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

.section.head h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--lavender) 50%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: colorShift 5s ease infinite;
}

@keyframes colorShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
}

.section.head p {
    font-size: 1.15rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.7);
    padding: 1.5rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

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

.section header h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--pink-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

/* Footer */
.footer {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 40px rgba(162,210,255,0.2);
}

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

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

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--mint) 0%, var(--blue-light) 100%);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--pink-light);
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

html, body {
    height: 100%;
}

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

main {
    flex: 1;
}
