:root {
    --accent-color: #F59E0B; /* Tailwind Amber 500 */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FDFDFD;
    color: #1a1a1a;
    /* Padding to prevent content from being hidden behind the fixed header */
    padding-top: 88px; 
}

.font-heading {
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.accent-text {
    color: var(--accent-color);
}

.accent-bg {
    background-color: var(--accent-color);
}

.section-padding {
    padding: 6rem 1rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 8rem 1.5rem;
    }
}

/* --- Header Styles --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, padding 0.3s ease-in-out;
}

#main-header.scrolled {
    background-color: rgba(253, 253, 253, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* --- Hero Section Styles (Homepage) --- */
#hero-section {
    position: relative;
    overflow: hidden;
    background-color: #F9FAFB; /* Light gray background for hero */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* --- Animation Styles --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: var(--delay);
}

.animated-item.is-visible {
     opacity: 1;
    transform: translateY(0);
}

/* --- Prose Styles for Blog Post --- */
.prose-lg p {
    margin-bottom: 1.5em;
}
