/*
Theme Name: Alyssa Stratton
Theme URI: https://alyssastratton.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: A custom WordPress theme for Alyssa Stratton - Animation Writer & Storyteller. Features a playful, comic-style design with full Customizer integration.
Version: 1.0.3
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alyssa-stratton
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, theme-options, translation-ready

Alyssa Stratton WordPress Theme - Animation Writer & Storyteller
*/

/* ==========================================================================
   CSS Variables - All colors controlled via Customizer
   ========================================================================== */

:root {
    /* Light Mode Colors */
    --background: 12 100% 88%;
    --foreground: 0 0% 20%;
    --card: 213 100% 88%;
    --card-foreground: 0 0% 20%;
    --popover: 213 100% 88%;
    --popover-foreground: 0 0% 20%;
    --primary: 11 99% 65%;
    --primary-foreground: 0 0% 100%;
    --secondary: 213 80% 80%;
    --secondary-foreground: 0 0% 20%;
    --muted: 12 60% 92%;
    --muted-foreground: 0 0% 35%;
    --accent: 11 99% 65%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 0 0% 20%;
    --input: 0 0% 20%;
    --ring: 11 99% 65%;
    --radius: 0.75rem;
    --soft-pink: 12 100% 88%;
    --coral-orange: 11 99% 65%;
    --periwinkle: 213 100% 88%;
    --navy: 0 0% 20%;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    paint-order: stroke fill;
    line-height: 1.2;
}

.font-display {
    font-family: 'Fraunces', serif;
}

.text-primary {
    color: hsl(var(--primary));
    -webkit-text-stroke: 3px hsl(var(--foreground));
    text-stroke: 3px hsl(var(--foreground));
}

.text-secondary {
    color: hsl(var(--secondary));
    -webkit-text-stroke: 3px hsl(var(--foreground));
    text-stroke: 3px hsl(var(--foreground));
}

@media (max-width: 768px) {
    .text-primary,
    .text-secondary {
        -webkit-text-stroke: 1px hsl(var(--foreground));
        text-stroke: 1px hsl(var(--foreground));
    }
}

/* ==========================================================================
   Layout
   ========================================================================== */

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

.min-h-screen {
    min-height: 100vh;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.site-navigation.scrolled {
    background-color: hsl(var(--background));
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    position: relative;
    height: 2rem;
    width: 2.5rem;
}

.nav-logo img {
    height: 2rem;
    width: auto;
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
}

.nav-logo .logo-hover {
    opacity: 0;
}

.nav-logo:hover .logo-default {
    opacity: 0;
}

.nav-logo:hover .logo-hover {
    opacity: 1;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: hsl(var(--foreground));
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: hsla(var(--background), 0.7);
    backdrop-filter: blur(12px);
    border: 2px solid hsl(var(--border));
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.mobile-nav.open {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-link {
    font-weight: 500;
    color: hsl(var(--foreground));
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: hsl(var(--primary));
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-decoration {
    position: absolute;
    transition: transform 0.1s ease-out;
}

.hero-decoration svg {
    width: 100%;
    height: 100%;
}

.hero-decoration.top-left {
    top: 5rem;
    left: 2.5rem;
    color: hsl(var(--primary));
}

.hero-decoration.top-left svg {
    width: 3rem;
    height: 3rem;
    fill: currentColor;
}

.hero-decoration.top-right {
    top: 10rem;
    right: 5rem;
    color: hsl(var(--secondary));
}

.hero-decoration.top-right svg {
    width: 2.5rem;
    height: 2.5rem;
}

.hero-decoration.bottom-left {
    bottom: 10rem;
    left: 5rem;
    color: hsl(var(--primary));
}

.hero-decoration.bottom-left svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}

.hero-decoration.bottom-right {
    bottom: 5rem;
    right: 2.5rem;
    color: hsl(var(--secondary));
}

.hero-decoration.bottom-right svg {
    width: 3.5rem;
    height: 3.5rem;
    fill: currentColor;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsla(var(--foreground), 0.8);
    max-width: 48rem;
    margin: 0 auto 2rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    border: 4px solid hsl(var(--foreground));
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 4px 4px 0px 0px hsl(var(--foreground));
}

.btn-primary:hover {
    background-color: hsla(var(--primary), 0.9);
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    box-shadow: 4px 4px 0px 0px hsl(var(--foreground));
}

.btn-secondary:hover {
    background-color: hsla(var(--secondary), 0.9);
}

/* Bounce-hover overrides: bounce movement instead of background change (like Lovable) */
.btn-primary.bounce-hover:hover {
    background-color: hsl(var(--primary));
}
.btn-secondary.bounce-hover:hover {
    background-color: hsl(var(--secondary));
}

.bounce-hover:hover {
    animation: bounce-btn 0.5s ease-in-out;
}

@keyframes bounce-btn {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(-4px); }
    75% { transform: translateY(-6px); }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.comic-card {
    border: 4px solid hsl(var(--border));
    border-radius: 0.75rem;
    box-shadow: 4px 4px 0px 0px hsl(var(--border));
    transition: all 0.2s ease;
    background-color: hsl(var(--card));
}

.comic-card:hover {
    box-shadow: 6px 6px 0px 0px hsl(var(--border));
    transform: translateY(-4px);
}

.about-card {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem;
}

@media (min-width: 768px) {
    .about-card {
        padding: 3rem;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }
}

.about-photo {
    flex-shrink: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-photo {
        margin: 0;
    }
}

.about-photo img {
    width: 10rem;
    height: 10rem;
    border-radius: 1rem;
    border: 4px solid hsl(var(--foreground));
    box-shadow: 4px 4px 0px 0px hsl(var(--foreground));
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .about-photo img {
        width: 12rem;
        height: 12rem;
    }
}

.about-photo img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 8px 8px 0px 0px hsl(var(--foreground));
}

.about-text-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.about-text-header svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
    fill: currentColor;
    flex-shrink: 0;
}

.about-text-header h3 {
    font-size: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: hsla(var(--foreground), 0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-easter-egg {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: hsla(var(--primary), 0.1);
    border-radius: 0.75rem;
    border: 2px dashed hsl(var(--primary));
}

.about-easter-egg-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-easter-egg svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.about-easter-egg p {
    font-weight: 500;
    font-style: italic;
}

/* ==========================================================================
   Writing Room Section
   ========================================================================== */

.writing-section {
    padding: 5rem 0;
    background-color: hsla(var(--muted), 0.3);
}

.writing-intro {
    text-align: center;
    color: hsla(var(--foreground), 0.7);
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.tabs-container {
    max-width: 56rem;
    margin: 0 auto;
}

.tabs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--card));
    border: 4px solid hsl(var(--foreground));
    box-shadow: 3px 3px 0px 0px hsl(var(--foreground));
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-family: inherit;
}

.tab-btn svg {
    width: 1rem;
    height: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sticker-card {
    border: 4px solid hsl(var(--border));
    border-radius: 1rem;
    background-color: hsl(var(--card));
    padding: 1.5rem;
    box-shadow: 4px 4px 0px 0px hsl(var(--border));
    transition: all 0.2s ease;
    cursor: pointer;
}

.sticker-card:hover {
    box-shadow: 8px 8px 0px 0px hsl(var(--border));
    transform: translateY(-8px) scale(1.01);
}

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.project-icon {
    padding: 0.75rem;
    background-color: hsla(var(--primary), 0.2);
    border-radius: 0.75rem;
    color: hsl(var(--primary));
}

.project-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.project-info {
    flex: 1;
}

.project-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.project-title-row h4 {
    font-size: 1.25rem;
}

.badge {
    display: inline-block;
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border: 2px solid hsl(var(--foreground));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-description {
    color: hsla(var(--foreground), 0.8);
    margin-bottom: 1rem;
}

.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.contact-hint svg {
    width: 1rem;
    height: 1rem;
}

.view-details {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: hsl(var(--primary));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sticker-card:hover .view-details {
    opacity: 1;
}

.view-details svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* ==========================================================================
   Experience Section
   ========================================================================== */

.experience-section {
    padding: 5rem 0;
}

.experience-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.experience-intro svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.experience-intro p {
    color: hsla(var(--foreground), 0.7);
    font-weight: 500;
}

.experience-grid {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.experience-card {
    padding: 1.5rem;
}

.experience-logo {
    height: 4rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.experience-logo img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.experience-role {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.experience-company {
    color: hsl(var(--primary));
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.experience-project {
    display: inline-block;
    background-color: hsla(var(--primary), 0.2);
    color: hsl(var(--foreground));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 2px solid hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.experience-description {
    color: hsla(var(--foreground), 0.8);
}

/* ==========================================================================
   Substack Section
   ========================================================================== */

.substack-section {
    padding: 5rem 0;
    background-color: hsla(var(--muted), 0.3);
}

.substack-card {
    max-width: 48rem;
    margin: 0 auto;
    background-color: hsl(var(--card));
    border: 4px solid hsl(var(--foreground));
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 8px 8px 0px 0px hsl(var(--foreground));
}

.substack-header {
    background-color: hsl(var(--foreground));
    color: hsl(var(--background));
    padding: 1rem 1.5rem;
}

.substack-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.substack-header svg {
    width: 1.5rem;
    height: 1.5rem;
}

.substack-header span {
    font-family: 'Fraunces', serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.substack-content {
    padding: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .substack-content {
        padding: 3rem;
    }
}

.substack-logo {
    height: 3rem;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .substack-logo {
        height: 3.5rem;
    }
}

.substack-divider {
    width: 6rem;
    height: 4px;
    background-color: hsl(var(--primary));
    margin: 0 auto 1.5rem;
}

.substack-quote {
    font-size: 1.25rem;
    color: hsla(var(--foreground), 0.8);
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.substack-description {
    color: hsla(var(--foreground), 0.7);
    margin-bottom: 2rem;
}

.substack-footer {
    border-top: 4px dashed hsla(var(--foreground), 0.3);
    padding: 0.75rem 1.5rem;
    background-color: hsla(var(--muted), 0.5);
}

.substack-footer p {
    text-align: center;
    font-size: 0.875rem;
    color: hsla(var(--foreground), 0.6);
    font-weight: 500;
    white-space: nowrap;
}

/* ==========================================================================
   Footer / Contact Section
   ========================================================================== */

.site-footer {
    padding: 4rem 0;
    background-color: hsl(var(--foreground));
    color: hsl(var(--background));
}

.footer-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 3rem;
    }
}

.footer-title .text-primary {
    color: hsl(var(--primary));
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .contact-info {
        flex-direction: row;
        justify-content: center;
    }
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: hsl(var(--primary));
}

.contact-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-link:hover svg {
    animation: wiggle 1s ease-in-out infinite;
}

.contact-separator {
    display: none;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .contact-separator {
        display: block;
    }
}

.contact-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.contact-location svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--secondary));
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-link {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: 4px solid hsl(var(--background));
    box-shadow: 3px 3px 0px 0px hsl(var(--background));
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-4px);
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-divider {
    width: 100%;
    height: 4px;
    background-color: hsla(var(--background), 0.2);
    margin-bottom: 2rem;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: hsla(var(--background), 0.6);
}

.footer-credits svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
    fill: currentColor;
    display: inline;
    vertical-align: middle;
}

.footer-credits a {
    transition: color 0.2s ease;
}

.footer-credits a:hover {
    color: hsl(var(--primary));
}

/* ==========================================================================
   Modal / Dialog
   ========================================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: hsl(var(--background));
    border: 4px solid hsl(var(--foreground));
    border-radius: 0.75rem;
    max-width: 42rem;
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
    padding: 1.5rem;
    box-shadow: 8px 8px 0px 0px hsl(var(--foreground));
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0.25rem;
    border-radius: 0.25rem;
}

.modal-close:hover {
    opacity: 1;
}

.modal-close svg {
    width: 1rem;
    height: 1rem;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.modal-samples {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.sample-item {
    border-left: 4px solid hsl(var(--primary));
    padding-left: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.sample-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.sample-meta {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.75rem;
}

.sample-logline {
    color: hsla(var(--foreground), 0.9);
    line-height: 1.75;
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

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

.animate-wiggle {
    animation: wiggle 1s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================================================
   Screen Reader Only
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================================================
   Icon Styles
   ========================================================================== */

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.max-w-4xl {
    max-width: 56rem;
}
