/* ==========================================================================
   AGONA NSABA TRADITIONAL COUNCIL - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & ROOT
   -------------------------------------------------------------------------- */
:root {
    /* Primary Colors */
    --color-royal-gold: #D4A017;
    --color-deep-gold: #A17C0B;

    /* Secondary Colors */
    --color-royal-green: #0A5A2C;
    --color-deep-forest: #053A1C;

    /* Neutral Colors */
    --color-charcoal: #232323;
    --color-warm-gray: #F4F1EA;
    --color-light-gray: #f8f8f8;
    --color-white: #FFFFFF;
    --color-text-muted: #666666;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 80px;
    --container-width: 1200px;
    --border-radius: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--color-royal-green);
    transition: var(--transition);
}

a:hover {
    color: var(--color-royal-gold);
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.text-gold { color: var(--color-royal-gold); }
.text-green { color: var(--color-royal-green); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-gray {
    background-color: var(--color-warm-gray);
}

.section-green {
    background-color: var(--color-royal-green);
}

.section-dark {
    background-color: var(--color-charcoal);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    flex: 1;
}

.col-2 { width: 50%; flex: none; }
.col-3 { width: 33.333%; flex: none; }
.col-4 { width: 25%; flex: none; }

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-top {
    background-color: var(--color-royal-green);
    color: var(--color-white);
    padding: 8px 0;
    font-size: 14px;
}

.header-top a {
    color: var(--color-royal-gold);
}

.header-top a:hover {
    color: var(--color-white);
}

.header-main {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-royal-gold);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--color-charcoal);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-royal-gold);
    background-color: var(--color-warm-gray);
}

/* Dropdown */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--color-royal-gold);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--color-charcoal);
    font-size: 14px;
}

.dropdown a:hover {
    background-color: var(--color-warm-gray);
    color: var(--color-royal-green);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 58, 28, 0.9) 0%, rgba(10, 90, 44, 0.8) 50%, rgba(212, 160, 23, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-royal-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-royal-gold);
    border-color: var(--color-royal-gold);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-deep-gold);
    border-color: var(--color-deep-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-royal-green);
    border-color: var(--color-royal-green);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-deep-forest);
    border-color: var(--color-deep-forest);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-royal-gold);
    color: var(--color-royal-gold);
}

.btn-outline:hover {
    background-color: var(--color-royal-gold);
    color: var(--color-white);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-royal-green);
}

/* --------------------------------------------------------------------------
   8. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

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

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-royal-gold), var(--color-royal-green));
    margin: 20px auto;
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   9. CARDS
   -------------------------------------------------------------------------- */
.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-gold-top {
    border-top: 4px solid var(--color-royal-gold);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Icon Cards */
.icon-card {
    text-align: center;
    padding: 30px 25px;
}

.icon-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-royal-gold);
    background-color: var(--color-warm-gray);
    border-radius: 50%;
    transition: var(--transition);
}

.icon-card:hover .icon {
    background-color: var(--color-royal-gold);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   10. WELCOME SECTION
   -------------------------------------------------------------------------- */
.welcome-section {
    padding: var(--section-padding) 0;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.welcome-text h2 {
    margin-bottom: 15px;
}

.welcome-text .divider {
    width: 80px;
    height: 4px;
    background-color: var(--color-royal-gold);
    margin-bottom: 25px;
}

.welcome-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.welcome-signature {
    margin-top: 30px;
}

.welcome-signature strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-charcoal);
}

.welcome-signature em {
    color: var(--color-royal-gold);
}

/* --------------------------------------------------------------------------
   11. QUICK LINKS
   -------------------------------------------------------------------------- */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-link-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    border-top: 4px solid var(--color-royal-gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-link-card .icon {
    font-size: 40px;
    color: var(--color-royal-gold);
    margin-bottom: 20px;
}

.quick-link-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.quick-link-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. NEWS SECTION
   -------------------------------------------------------------------------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 25px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--color-royal-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card h4 a {
    color: var(--color-charcoal);
}

.news-card h4 a:hover {
    color: var(--color-royal-gold);
}

.news-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   13. FEATURED PROJECT
   -------------------------------------------------------------------------- */
.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-project-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-royal-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.featured-project h2 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.featured-project .divider {
    width: 80px;
    height: 4px;
    background-color: var(--color-royal-gold);
    margin-bottom: 25px;
}

.featured-project p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-project img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   14. EVENTS SECTION
   -------------------------------------------------------------------------- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-card .icon {
    font-size: 40px;
    color: var(--color-royal-gold);
    margin-bottom: 20px;
}

.event-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-card .event-type {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-royal-green);
    margin-bottom: 15px;
}

.event-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   15. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 25px;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-royal-gold);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-royal-gold);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-royal-gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--color-royal-gold);
    margin-top: 4px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-royal-gold);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   17. PAGE HEADER (Inner Pages)
   -------------------------------------------------------------------------- */
.page-header {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    margin-top: 90px;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 58, 28, 0.85);
}

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

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--color-royal-gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   18. TEAM/LEADERSHIP SECTION
   -------------------------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card-body {
    padding: 25px;
}

.team-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--color-royal-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   19. FORMS
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-charcoal);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-royal-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   20. BACK TO TOP
   -------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-royal-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-royal-green);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE STYLES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid,
    .events-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .welcome-content,
    .featured-project {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quick-links,
    .news-grid,
    .events-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        padding-right: 0;
    }

    .col-2, .col-3, .col-4 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .page-header {
        padding: 80px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------------------
   22. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
