/* Basic variables */
:root {
    --bg-light: #FFFBF7;
    --text-dark: #0C3A3E;
    --primary-blue: #1E5A6E;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Sora', 'Lora', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5vh 0;
}
.nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: rgba(255, 251, 247);
    padding: 15px 40px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 20px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.nav-inner > ul{
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-inner a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}
.nav-inner a:hover{
    text-decoration: none;
}

.dropdown {
    position: relative;
}

/*  */
.dropdown-menu {
    /* Invisible at the start, fadein/out transition */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transition-delay: 0.1s;

    box-shadow: 0 20px 10px rgba(0,0,0,0.1);

    position: absolute;
    top: 30px;
    left: -40px;
    background:  var(--bg-light);
    list-style: none;
    padding: 15px 15px 20px 15px;
    min-width: 200px;
    border-radius: 0 0 20px 20px;
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    position: relative;
    white-space: nowrap;
}

.dropdown-menu li a::before {
    content: '';
    display: block;
    width: 2px;
    height: 1.5em;  /* matches text height */
    background: var(--text-dark);
    border-radius: 2px;
    flex-shrink: 0;
}

.dropdown-menu li a:hover::before {
    width: 3px;
}

/* dropdown becomes visible when hovered */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    /* this forces it to appear fast but lets the earlier delay still happen */
    transition-delay: 0s;
}


/* Hero section */
.hero-section {
    position: relative;
    height: 95vh;
    margin: 2.5vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
    padding-left: 5%;
}
.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--hero-color, #ffffff); /* Variable with white as default */
    margin-bottom: 30px;
    line-height: 1.2;
}

.site-footer {
    background-color: var(--text-dark);
    color: #8B8B8B;
    padding: 60px 0 20px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}


.fundraiser-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fundraiser-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #d9cdb4; /* beige card */
    border-radius: 50px;
    padding: 12px 24px;
}

.fundraiser-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 6px 12px;
    min-width: 55px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1a3d3d;
    line-height: 1.3;
}

.event-time {
    color: #1a3d3d;
    font-size: 1rem;
    min-width: 80px;
}

.event-name {
    color: #1a3d3d;
    font-size: 1rem;
    font-weight: 500;
}