:root {
    /* --primary-color: #B14141; */
    --primary-color: #D14343;
    --text-color: #ececec;
    --bg-color: #1a1a1a;
    --card-bg: #1f1f1f;
    --navbar-bg: #1a1a1acb;
    --footer-bg: #1a1a1a;
}
main {
    padding-top: calc(40px + 72px); /* announcement (40px) + navbar height (padding + content) */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
}

.announcement-banner{
    background-color: #b9b9b9;
    border: dashed rgb(0, 0, 0) 2px;
    color: rgb(0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 40px;
}

.announcement-banner h2{
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    word-spacing: 5px;
    line-height: 6vh;
    font-style: italic;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.navbar {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 40px; /* announcement banner's height.. */
    z-index: 1000;
    border-bottom: 3px solid #DFBBB1;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.hero {
    text-align: center;
    margin-top: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), #FA6161);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1a1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    height: 8vh;
}

.fundraiser-btn{
    color: #000000;
    background-color: #FDD835;
    border: solid 5px #e8ac07;
    border-radius: 90px;
    box-shadow: 0px 0px 20px #FDD835;
    height: 100%;
    width: 10rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.fundraiser-btn:hover{
    cursor: pointer;
    box-shadow: 0px 0px 40px #FDD835;
    transition: 0.7s;
}

@media(max-width: 768px){
    .fundraiser-btn{
        height: 8vh;
    }
}

.marquee-section {
    position: relative;
    padding: 3rem 0;
    background: var(--card-bg);
    overflow: hidden;
    border-top: 3px solid #AA98D4;
    border-bottom: 3px solid #AA98D4;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--card-bg), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--card-bg), transparent);
}

.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 20%,
        black 80%,
        transparent
    );
}

.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    will-change: transform;
}


.marquee-content span {
    padding: 0 3rem;
    color: var(--text-color);
    font-size: 0.925rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.65;
    transition: opacity 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
}

.marquee-content span:hover {
    opacity: 1;
}

.marquee-content span:not(:last-child)::after {
    content: '•';
    margin-left: 3rem;
    opacity: 0.3;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-section {
        padding: 2rem 0;
    }
    
    .marquee-content span {
        padding: 0 2rem;
        font-size: 0.875rem;
    }
}
.stats-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #a1a1a1;
}

.faq-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center;    
    height: 100vh;            
    padding: 0 1.5rem;    
    background: linear-gradient(
        180deg,
        var(--bg-color) 0%,
        rgba(var(--card-bg-rgb), 0.5) 100%
    );
}

.faq-container {
    max-width: 900px;
    width: 100%;              
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;     
}

.faq-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}


.gradient-text {
    background: linear-gradient(
        45deg,
        rgb(var(--primary-rgb)) 0%,
        rgba(var(--primary-rgb), 0.8) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(var(--card-bg-rgb), 0.5);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    align-items: left;
}

.faq-item:hover {
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.2);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-trigger:hover {
    color: rgb(var(--primary-rgb));
}

.faq-icon {
    min-width: 24px;
    transition: transform 0.3s ease;
}

.faq-item[data-open="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[data-open="true"] .faq-content {
    height: auto;
    opacity: 1;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.faq-trigger:hover .faq-icon {
    color: rgb(var(--primary-rgb));
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-trigger {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

.cta {
    background: linear-gradient(45deg, var(--bg-color), var(--card-bg));
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: #a1a1a1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator sl-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.footer {
    background-color: var(--footer-bg);
    padding: 6rem 0 2rem;
    border-top: 3px solid #6CC3A4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: #a1a1a1;
    margin: 1rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a1a1a1;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a1a1a1;
    font-size: 0.9rem;
}

sl-button::part(base) {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

sl-button[variant="primary"]::part(base) {
    background-color: var(--primary-color);
    color: #000;
    border: none;
}

sl-button[size="large"]::part(base) {
    padding: 0 2rem;
    height: 3rem;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link-fullscreen {
        display: none;
    }

    .features h2, .tools h2, .cta-content h2 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: rotate(-45deg);
    left: -50%;
    top: -50%;
}

.gradient-blur-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, #fa616127, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(40px);
}

.gradient-blur-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, #fa616127, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;   
    background: #6cc3a527;
    color: #6CC3A4;
    padding: 0.3rem 0.8rem;
    font-size: 0.875rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    border: 1px solid #6cc3a546;
}


.hero-badge sl-icon {
    font-size: 1.2rem;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), #FA6161);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1a1;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.secondary-btn::part(base) {
    background: #fa616127;
    border: none;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(31, 31, 31, 0.5);
    backdrop-filter: blur(10px);
    border: 3px solid #6CC3A4;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats:hover {
    box-shadow: 
        0 10px 30px -15px #fa616127,
        0 0 0 1px #fa616115;
}


.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.accent {
    color: var(--primary-color);
}

.stat-label {
    color: #a1a1a1;
    font-size: 0.9rem;
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .divider {
        width: 80%;
        height: 1px;
    }
    
    .hero-cta {
        flex-direction: column;
        padding: 0 1rem;
    }
}


.branches {
    position: relative;
    padding: 6rem 0;
    background-color: var(--bg-color);
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(
        circle at center,
        rgba(62, 207, 142, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
    animation: rotateGlow 20s linear infinite;
}

.branches-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 0.8s ease forwards;
}

.branches h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.branches-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.branch-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(62, 207, 142, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.branch-card:hover .card-glow {
    opacity: 1;
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.branch-card:hover .card-shine {
    transform: translateX(100%);
}

.branch-card:hover {
    transform: translateY(-5px);
    border-color: #fa61613a;
    box-shadow: 
        0 10px 30px -15px #fa616123,
        0 0 0 1px #fa616118;
}

.icon-container {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        #fa616127 0%,
        #fa616110 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.branch-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

.branch-card sl-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.branch-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.branch-card p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .branches {
        padding: 4rem 0;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .branch-card {
        padding: 2rem;
    }
}

.branch-card i {
    font-size: 1.22rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .announcement-content {
        padding: 0 1rem;
    }
    
    .announcement-content p {
        font-size: 0.85rem;
    }
}