/* Import custom font */
@font-face {
    font-family: 'Yohanan';
    src: url('./rsc/fonts/Yohanan.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Yohanan';
    src: url('./rsc/fonts/Yohanan-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Heebo", sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Fixed Logo */
.fixed-logo {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.fixed-logo:hover {
    transform: scale(1.05);
}

.fixed-logo img {
    width: 160px;
    height: auto;
}
 /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg,rgb(38, 129, 138) 0%,rgb(22, 125, 143) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 2rem;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-text h1, .hero-text h2, .hero-text h3 {
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            font-weight: 700;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-text h2 {
            font-size: 3rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            margin-bottom: 1.5rem;
        }

        .hero-text h3 {
            font-size: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .cta-button.primary {
            background-color: #FFD140;
            color: #2c3e50;
        }

        .cta-button.primary:hover {
            background-color: #ffcc00;
            transform: translateY(-2px);
        }

        .cta-button.secondary {
            background-color: transparent;
            color: white;
            border-color: white;
        }

        .cta-button.secondary:hover {
            background-color: white;
            color: #2c3e50;
            transform: translateY(-2px);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
        }

        .hero-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transform: rotate(-3deg);
            transition: transform 0.3s ease;
        }

        .hero-image-container:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .hero-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .image-overlay span {
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }
        }
/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-underline {
    width: 80px;
    height: 4px;
    background-color: #FFD140;
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

/* Author Section */
.author-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.author-content {
    max-width: 1000px;
    margin: 0 auto;
}

.author-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.story-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

.legacy-text {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.8;
}

.legacy-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.memorial-quote {
    background: linear-gradient(135deg,rgb(251, 192, 147) 0%,rgb(245, 208, 87) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    color: white;
    font-style: italic;
}

.memorial-quote strong {
    font-size: 1.2rem;
}
.memorial-quote p {
    margin: 0;
    font-weight: 500;
}

/* Support Section */
.support-section {
    padding: 6rem 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.support-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.support-card.popular {
    border-color: #FFD140;
    transform: scale(1.05);
}

.support-card.premium {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.support-card.flexible {
    border-color: #3498db;
}

.popular-badge,
.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFD140;
    color: #2c3e50;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.premium-badge {
    background-color: #e74c3c;
    color: white;
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.support-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.card-content p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.payment-button {
    background-color: #FFD140;
    color: #2c3e50;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.payment-button:hover {
    background-color: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 209, 64, 0.4);
}

.payment-cards {
    max-width: 180px;
}

.payment-footer {
    font-size: 0.75rem;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.paypal-logo {
    height: 0.875rem;
    vertical-align: middle;
}
/* Professional Updates Section */

        .updates-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .updates-grid {
            display: grid;
            gap: 32px;
            max-width: 800px;
            margin: 0 auto;
        }

        .update-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .update-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #FFD140, #e77619);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .update-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .update-card:hover::before {
            opacity: 1;
        }

        .update-card.latest {
            /* border: 2px solid #FFD140; */
            background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);

                border: 2px solid transparent;
    /* border-radius: 12px; */
        background:
            linear-gradient(white, white) padding-box, /* inner background */
            linear-gradient(to top right, #FFD140, #e77619) border-box; /* gradient border */
        }

        .update-card.latest::before {
            opacity: 1;
        }

        .update-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 24px;
        }

        .update-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #FFD140, #e77619);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
        }

        .update-icon img {
            width: 28px;
            height: 28px;
            filter: brightness(0) invert(1);
        }

        .update-meta {
            flex: 1;
        }

        .update-date {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0.025em;
        }

        .update-card.latest .update-date {
            color: #e77619;
            font-weight: 600;
        }

        .update-title {
            font-size: 1.375rem;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
            margin: 0;
        }

        .update-content {
            color: #4b5563;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .update-content p {
            margin-bottom: 16px;
        }

        .update-content p:last-child {
            margin-bottom: 0;
        }

        .update-content ul {
            list-style: none;
            margin-bottom: 16px;
        }

        .update-content li {
            padding: 8px 0;
            padding-right: 20px;
            position: relative;
        }

        .update-content li::before {
            content: '•';
            color: #FFD140;
            font-weight: bold;
            position: absolute;
            right: 0;
            font-size: 1.2em;
        }

        .latest-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: linear-gradient(135deg, #FFD140, #e77619);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.025em;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .updates-section {
                padding: 60px 0;
            }

            .container {
                padding: 0 16px;
            }

            .update-card {
                padding: 24px;
            }

            .update-header {
                gap: 16px;
                margin-bottom: 20px;
            }

            .update-icon {
                width: 40px;
                height: 40px;
            }

            .update-icon img {
                width: 24px;
                height: 24px;
            }

            .update-title {
                font-size: 1.25rem;
            }

            .updates-grid {
                gap: 24px;
            }
        }

        /* Animation for loading */
        .update-card {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .update-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #FFD140, #e77619);
            transform-origin: left;
            transform: scaleX(0);
            z-index: 1000;
            transition: transform 0.3s ease;
        }

/* Clean Taatic styling */
taatic {
    font-family: 'Yohanan', 'Times New Roman', serif;
    font-weight: 500;
    font-size: 1.1em;
    background: #f1f3f4;
    padding: 3px 6px;
    border-radius: 4px;
    border: 1px solid #e1e8ed;
    display: inline-block;
    margin: 0 1px;
    transition: all 0.2s ease;
    line-height: 1;
}

h3 taatic {
    background: none;
    padding: 1px;
    border-radius: 4px;
    border: 0;
    display: inline-block;
    margin: 0 1px;
    transition: all 0.2s ease;
}

taatic:hover {
    background: #e3f2fd;
    border-color: #90caf9;
}

h3 taatic:hover {
    background: none;
}

taatic b {
    font-weight: 700;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section.updates {
        padding: 3rem 0;
    }

    .section.updates h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .update {
        flex-direction: column;
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .update img {
        align-self: center;
        width: 50px;
        height: 50px;
    }

    .text p strong {
        font-size: 1rem;
    }

    taatic {
        font-size: 1rem;
    }

    .update:first-of-type::before {
        top: 0.75rem;
        left: 0.75rem;
    }
}

@media (max-width: 480px) {
    .update {
        padding: 1.25rem;
    }

    .section.updates h2 {
        font-size: 1.6rem;
    }

    .text p {
        font-size: 0.95rem;
    }

    taatic {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 150px;
    opacity: 0.8;
}

.footer-text p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-image {
        height: 350px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .author-story {
        grid-template-columns: 1fr;
    }

    .legacy-text {
        padding: 2rem;
        font-size: 1rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-card.popular {
        transform: none;
    }

    .update-card {
        flex-direction: column;
        text-align: center;
    }

    .update-icon {
        align-self: center;
    }

    .fixed-logo {
        top: 10px;
        right: 10px;
        padding: 5px 15px;
    }

    .fixed-logo img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .story-card,
    .legacy-text {
        padding: 1.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-card,
.support-card,
.update-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for better interactivity */
.story-card:hover .story-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.support-card:hover .price {
    color: #FFD140;
    transition: color 0.3s ease;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.text-center {
    text-align: center;
}

/* Updated Funding Progress */



.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.progress-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.progress-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.progress-circle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.progress-bg {
    stroke: #e9ecef;
}

.progress-bar {
    stroke: #FFD140;
    stroke-dasharray: 314;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-circle .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 1.8rem;
    color: #2c3e50;
}

/* Linear progress bar under title */
.progress-bar-linear {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill {
    height: 100%;
    background: #FFD140;
    border-radius: 4px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .funding-progress {
        padding: 2rem;
    }

    .progress-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .progress-circle {
        width: 100px;
        height: 100px;
        order: 0;
    }

    .progress-content h3 {
        font-size: 1.5rem;
        order: 1;
    }

    .progress-circle .center {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .funding-progress {
        padding: 1.5rem;
    }

    .progress-content h3 {
        font-size: 1.3rem;
    }

    .progress-circle {
        width: 80px;
        height: 80px;
    }

    .progress-circle .center {
        font-size: 1.3rem;
    }
}
