:root {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --secondary: #64748b;
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-light: #F5F5F5;
    --border: #cbd5e1;
}

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

body {
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: white;
}

/* Navigation */
nav {
    background: var(--text-dark);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    letter-spacing: 0.3px;
}

nav a.nav-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

nav a.nav-logo img,
nav a.nav-logo svg {
    width: 30px;
    height: 30px;
    display: block;
}

nav a:hover {
    opacity: 0.8;
}

/* Hamburger menu button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile responsive nav */
@media (max-width: 768px) {
    nav {
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--text-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
        z-index: 99;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        font-size: 1rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        position: relative;
        z-index: 101;
    }
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    padding: 2.5rem 0 0 0;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-family: 'Crimson Pro', Georgia, "Times New Roman", system-ui, serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.btn {
    background: #CB2987;
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: 0 2px 8px rgba(232, 34, 42, 0.3);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn:hover {
    background: #DA3795;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 34, 42, 0.4);
}

.btn.btn-secondary {
    background: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn.btn-secondary:hover {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.verified {font-size:14px; color:#858585; text-align:center; padding:1rem 5px 20px}

.info-link {color:#858585; font-weight:bold}

/* Donation Progress Section */
.donation-progress {
    text-align: center;
    padding: 1.5rem 0 2rem 0;
    margin: 0 auto;
    max-width: 400px;
}

.donation-goal {
    font-family: 'Crimson Pro', Georgia, "Times New Roman", system-ui, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.1;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0099cc 0%, #06b6d4 100%);
    border-radius: 10px;
    transition: width 1s ease-out;
    min-width: 5%;
}

.progress-bar.progress-initial {
    width: 0%;
    min-width: 5%;
}

.donation-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.donation-raised {
    font-size: 1rem;
    color: var(--text-light);
}

.donation-raised strong {
    color: var(--text-dark);
    font-weight: 700;
}

.donation-separator {
    color: var(--text-light);
    font-size: 0.8rem;
}

.donation-donors {
    font-size: 1rem;
    color: var(--text-light);
}

.donation-update-info {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .donation-progress {
        padding: 1rem 0 1.5rem 0;
    }
    
    .donation-goal {
        font-size: 2.25rem;
    }
    
    .donation-raised,
    .donation-donors {
        font-size: 0.9rem;
    }
}

/* Content Section */
.content-section {
    padding: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
    scroll-margin-top: 5rem; /* prevent sticky nav from covering section header when scrolling to anchor */
}

.content-section h2 {
    font-family: 'Crimson Pro', Georgia, "Times New Roman", system-ui, serif;
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.content-section .subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Grid of boxes */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.text-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.text-box h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.text-box p {
    text-align: left;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}


.image-box {
    background: linear-gradient(135deg, var(--primary) 0%, #06b6d4 100%);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: white;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}


/* Cuboid Grid */
.cuboid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.cuboid-box {
    background: linear-gradient(135deg, var(--primary) 0%, #06b6d4 100%);
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: white;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.cuboid-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cuboid-box .frosted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    z-index: 1;
}

.cuboid-box .frosted-overlay .icon {
    font-size: 1.5rem;
}

.cuboid-box .frosted-overlay .label {
    font-size: 0.85rem;
    font-weight: 500;
}

.cuboid-box .frosted-overlay .label.warning-hint {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: -0.25rem;
}

.cuboid-box.revealed .frosted-overlay {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.cuboid-box .title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cuboid-box.revealed .title-overlay {
    opacity: 1;
}

.cuboid-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}


@media (max-width: 900px) {
    .cuboid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cuboid-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .cuboid-box .frosted-overlay .icon {
        font-size: 1.25rem;
    }
    
    .cuboid-box .frosted-overlay .label {
        font-size: 0.7rem;
    }
    
    .cuboid-box .frosted-overlay .label.warning-hint {
        font-size: 0.6rem;
    }
}

/* Image Cards */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.image-card {
    background: #F5F5F5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.image-card > img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: center center;
}


.image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, #06b6d4 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: 'Crimson Pro', Georgia, "Times New Roman", system-ui, serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.social-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

/* Image card social icons: 30x30px, 5px gap */
.image-card .social-buttons {
    gap: 5px;
}

.image-card .btn-round {
    width: 30px;
    height: 30px;
}

.image-card .btn-round svg {
    width: 30px;
    height: 30px;
    display: block;
}

.btn-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    background: transparent;
    text-decoration: none;
}

.btn-round img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.btn-round:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.image-card .text-box {
    margin: 0;
    border-radius: 0;
}

/* Share Section */
.share-section {
    background: #F5F5F5;
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 1rem;
}

.share-section p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: var(--text-light);
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-bottom: 0;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: none;
    padding: 0;
    color: white;
    font-size: 1.25rem;
}

.btn-share:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-share.facebook { background: #1877f2; }
.btn-share.twitter { background: #000000; }
.btn-share.whatsapp { background: #25d366; }
.btn-share.email { background: #ea4335; }
.btn-share.copy { background: #6b7280; }

.btn-share svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.btn-placeholder {
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: none;
    background: #000000;
    padding: 0;
}

.btn-placeholder:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Vertical Line Divider */
.arrow-divider {
    text-align: center;
    margin: 3rem auto 2.5rem auto;
    width: 2px;
    height: 125px;
    background: var(--secondary);
}

/* Large Grid */
.large-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.large-box {
    background: var(--bg-light);
    border-radius: 8px;
    min-height: 280px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.large-box h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.large-box p {
    text-align: left;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.large-box ul {
    margin: 0.75rem 0 0 0;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.large-box ul li {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.large-box ul li:last-child {
    margin-bottom: 0;
}


@media (max-width: 600px) {
    .large-grid {
        grid-template-columns: 1fr;
    }
    
    .large-box {
        min-height: auto;
        padding: 1.5rem;
    }
}

/* Attention Box */
.attention-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.attention-box-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.attention-box h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.5px;
}

.attention-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.attention-box ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.attention-box ul li::before {
    content: "✓";
    color: #0099cc;
    font-weight: 700;
    margin-right: 0.5rem;
}

@media (max-width: 600px) {
    .attention-box {
        padding: 2rem 1.5rem;
    }
    
    .attention-box-content {
        text-align: left;
    }
    
    .attention-box h4 {
        font-size: 1.1rem;
    }
    
    .attention-box ul li {
        font-size: 0.9rem;
        display: flex;
        align-items: flex-start;
    }
    
    .attention-box ul li::before {
        flex-shrink: 0;
    }
}

/* Footer */
footer {
    background: var(--text-dark);
    padding: 1.5rem 2rem;
    margin-top: 0;
    text-align: center;
}

footer nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

footer nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

footer nav a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    footer {
        padding: 1.25rem 1rem;
    }
    
    footer nav {
        gap: 0.75rem 1.25rem;
    }
    
    footer nav a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Centered text */
.centered-text {
    text-align: center;
    margin: 3rem 0 1rem 0;
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Questions text */
.questions-text {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Final section adjustments */
.content-section.final {
    padding-bottom: 0;
    margin-top: 3rem;
}

.content-section.final .subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.share-section.compact {
    margin-top: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.share-section.compact p {
    margin-top: 0;
}

/* Button link style */
.btn-link {
    text-decoration: none;
}

/* Ripple animation for buttons */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}



@font-face {
    font-family: 'Crimson Pro';
    src: local('Crimson Pro Bold'), local('CrimsonPro-Bold'),
url('font/CrimsonPro-Bold.woff2') format('woff2'),
url('font/CrimsonPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Crimson Pro';
    src: local('Crimson Pro Regular'), local('CrimsonPro-Regular'),
url('font/CrimsonPro-Regular.woff2') format('woff2'),
url('font/CrimsonPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Crimson Pro';
    src: local('Crimson Pro SemiBold'), local('CrimsonPro-SemiBold'),
url('font/CrimsonPro-SemiBold.woff2') format('woff2'),
url('font/CrimsonPro-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: local('DM Sans Bold'), local('DMSans-Bold'),
url('font/DMSans-Bold.woff2') format('woff2'),
url('font/DMSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: local('DM Sans Medium'), local('DMSans-Medium'),
url('font/DMSans-Medium.woff2') format('woff2'),
url('font/DMSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: local('DM Sans Regular'), local('DMSans-Regular'),
url('font/DMSans-Regular.woff2') format('woff2'),
url('font/DMSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

