/* ========================================
   CSS Variables - Triadic Color Scheme
   ======================================== */
:root {
    /* Primary Triadic Colors */
    --primary-color: #FF6B35;
    --secondary-color: #4ECDC4;
    --tertiary-color: #FFD23F;
    
    /* Darker variants */
    --primary-dark: #E55A2B;
    --secondary-dark: #3DB5AD;
    --tertiary-dark: #E6BD35;
    
    /* Lighter variants */
    --primary-light: #FF8B5F;
    --secondary-light: #6FD9D1;
    --tertiary-light: #FFE070;
    
    /* Neutral Colors */
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --text-muted: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A2E;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(78, 205, 196, 0.9) 100%);
    --gradient-dark: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-retro: 8px 8px 0px rgba(255, 107, 53, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Responsive Font Sizes */
    --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
    --fs-h1: clamp(2rem, 4vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 3.5vw, 3rem);
    --fs-h3: clamp(1.5rem, 3vw, 2.5rem);
    --fs-h4: clamp(1.25rem, 2.5vw, 2rem);
    --fs-h5: clamp(1.125rem, 2vw, 1.5rem);
    --fs-body: clamp(1rem, 1.5vw, 1.125rem);
    --fs-small: clamp(0.875rem, 1.25vw, 1rem);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ========================================
   Global Styles & Reset
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

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

/* ========================================
   Global Button Styles
   ======================================== */
.btn,
.button,
button,
input[type="submit"] {
    font-family: var(--font-heading);
    font-size: var(--fs-body);
    padding: 0.875rem 2rem;
    border: 3px solid var(--text-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.btn-retro,
.button.is-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--text-dark);
}

.btn-retro:hover,
.button.is-primary:hover {
    background: var(--primary-dark);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.button.is-light {
    background: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.button.is-light:hover {
    background: var(--bg-light);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.button.is-small {
    padding: 0.5rem 1.25rem;
    font-size: var(--fs-small);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.button.is-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 4px solid var(--primary-color);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.navbar-item {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-item:hover {
    color: var(--primary-color);
}

.navbar-item:hover::after {
    width: 80%;
}

.navbar-burger {
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: var(--radius-sm);
}

.navbar-burger:hover {
    background-color: var(--primary-light);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 2;
}

.hero-body {
    position: relative;
    z-index: 3;
    padding: var(--spacing-xl) var(--spacing-md);
}
.title{
    width: 100%;
   text-align: center;
}
.hero-title {
    font-size: var(--fs-hero);
    color: var(--text-light);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: var(--fs-h2);
    color: var(--tertiary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: var(--fs-h4);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
}



.section-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-body);
    font-weight: 400;
}

.section-about {
    background: var(--bg-light);
}

.section-projects {
    background: var(--bg-white);
}

.section-awards {
    background: var(--bg-light);
}

.section-resources {
    background: var(--bg-white);
}

.section-faq {
    background: var(--bg-light);
}

.section-contact {
    background: var(--bg-white);
}

/* ========================================
   About Section
   ======================================== */
.about-content {
    padding: var(--spacing-md);
}

.about-text {
    font-size: var(--fs-body);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-retro);
    border: 4px solid var(--text-dark);
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Statistics Section */
.stats-section {
    margin-top: var(--spacing-xl);
}

.stat-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-retro);
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px rgba(255, 107, 53, 0.4);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: var(--fs-body);
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--text-dark);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 1.5s ease;
    width: 0;
}

/* ========================================
   Projects Section
   ======================================== */
.gallery-grid {
    margin-top: var(--spacing-lg);
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid var(--text-dark);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-retro);
    transition: all var(--transition-normal);
    height: 100%;
    background: var(--bg-white);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 12px 12px 0px rgba(78, 205, 196, 0.4);
}

.project-card .card-image {
    width: 100%;
}

.project-card .image-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.project-card .card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.project-card .title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.project-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   Awards Section
   ======================================== */
.award-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-retro);
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 10px 10px 0px rgba(255, 210, 63, 0.4);
}

.award-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.1));
}

.award-card .title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.award-org {
    font-size: var(--fs-small);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.award-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   Resources Section
   ======================================== */
.resource-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-retro);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px rgba(78, 205, 196, 0.4);
}

.resource-card .title {
    margin-bottom: var(--spacing-sm);
}

.resource-card .title a {
    color: var(--secondary-color);
    transition: color var(--transition-fast);
}

.resource-card .title a:hover {
    color: var(--secondary-dark);
}

.resource-card p {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    color: var(--text-muted);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 4px solid var(--text-dark);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-retro);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: 8px 8px 0px rgba(255, 107, 53, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question .title {
    margin: 0;
    color: var(--text-dark);
    font-size: var(--fs-h5);
}

.toggle-icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-info {
    padding: var(--spacing-md);
}

.info-item {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 3px solid var(--text-dark);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.info-item .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.info-item p,
.info-item a {
    color: var(--text-dark);
    font-size: var(--fs-body);
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-retro);
}

.contact-form .label {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: var(--fs-body);
    margin-bottom: var(--spacing-xs);
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
    border: 3px solid var(--text-dark);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: all var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
    border-color: var(--primary-color);
    box-shadow: 4px 4px 0px rgba(255, 107, 53, 0.2);
    outline: none;
}

.contact-form .checkbox {
    color: var(--text-dark);
}

.contact-form .checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
    border-top: 6px solid var(--primary-color);
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--tertiary-color);
    font-size: var(--fs-h4);
    margin-bottom: var(--spacing-md);
}

.footer-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-light);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: var(--radius-sm);
    border: 3px solid var(--text-light);
    font-family: var(--font-heading);
    font-size: var(--fs-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.8;
}

/* ========================================
   Scroll-based Animations
   ======================================== */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Success Page Styles
   ======================================== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: var(--spacing-md);
}

.success-content {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 5px solid var(--text-dark);
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
}

.success-content .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.success-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Privacy & Terms Pages
   ======================================== */
.content-page {
    padding-top: 100px;
    min-height: 100vh;
}

.content-page .section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.content-page .content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 4px solid var(--text-dark);
    box-shadow: var(--shadow-retro);
}

.content-page h2 {
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.content-page h3 {
    color: var(--secondary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.content-page p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.content-page li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

/* ========================================
   Read More Links
   ======================================== */
.read-more,
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    font-family: var(--font-heading);
    font-size: var(--fs-small);
}

.read-more::after,
.learn-more::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.read-more:hover,
.learn-more:hover {
    color: var(--primary-dark);
    gap: 1rem;
}

.read-more:hover::after,
.learn-more:hover::after {
    transform: translateX(5px);
}

/* ========================================
   Responsive Design
   ======================================== */
@media screen and (max-width: 1024px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }
    
    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .navbar-menu {
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        border-top: 3px solid var(--primary-color);
    }
    
    .navbar-item {
        border-bottom: 1px solid var(--bg-light);
    }
    
    .stats-section .column {
        margin-bottom: var(--spacing-md);
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .project-card .image-container {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .button.is-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stat-card {
        padding: var(--spacing-md);
    }
    
    .award-card,
    .resource-card {
        padding: var(--spacing-md);
    }
    
    .contact-form-container {
        padding: var(--spacing-md);
    }
    
    .project-card .image-container {
        height: 200px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-retro {
    box-shadow: var(--shadow-retro);
}

.border-retro {
    border: 4px solid var(--text-dark);
    border-radius: var(--radius-md);
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .navbar,
    .hero-buttons,
    .footer,
    .contact-form {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}