/* ============================================
   THEME: SOFT_PASTEL
   Generated by SiteKit Theme Engine
   ============================================ */

/* CSS Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Nunito', -apple-system, sans-serif;
    color: #4a4a4a;
    background-color: #fffbf7;
    overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', -apple-system, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 12px;
    line-height: 1.7;
}

small {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Layout & Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

/* Hero Section */
.hero {
    padding: 96px 0;
    text-align: center;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: #a8d8ea;
    color: #fffbf7;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #a8d8ea;
    border: 2px solid #a8d8ea;
}

.btn-secondary:hover {
    background-color: #a8d8ea;
    color: #fffbf7;
}

/* Card Styles */
.card {
    background-color: #fffbf7;
    border: 1px solid #f7dcda;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: #4a4a4a;
    margin-bottom: 12px;
}

.card p {
    color: #d4c5f9;
}

/* Navigation */
nav {
    padding: 24px 0;
    background-color: #fffbf7;
    border-bottom: 1px solid #f7dcda;
}

nav a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    margin: 0 12px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #a8d8ea;
}

/* Footer */
footer {
    background-color: #4a4a4a;
    color: #fffbf7;
    padding: 96px 0;
    margin-top: 96px;
}

footer a {
    color: #fffbf7;
    opacity: 0.8;
}

footer a:hover {
    opacity: 1;
}

/* Grid System */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.space-y > * + * {
    margin-top: 24px;
}

.space-y-small > * + * {
    margin-top: 12px;
}

.space-y-large > * + * {
    margin-top: 40px;
}

/* Color Utilities */
.bg-primary {
    background-color: #a8d8ea;
}

.text-primary {
    color: #a8d8ea;
}

.border-primary {
    border-color: #a8d8ea;
}

.bg-secondary {
    background-color: #d4c5f9;
}

.text-secondary {
    color: #d4c5f9;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .card {
        padding: calc(40px * 0.75);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Theme-Specific Layout & Overrides */

/* Default Layout */
