/* RESET */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9fafb;
}

/* NAVBAR */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c7a7b;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.nav {
    display: flex;
    gap: 15px;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 5px;
    transition: 0.2s;
}

.nav a:hover {
    background: rgba(255,255,255,0.2);
}

/* DONATE BUTTON */
.donate-btn {
    background: #e53e3e;
}

.donate-btn:hover {
    background: #c53030;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* HERO */
hero {
    /*background: none !important;
    background-image: none !important;*/
    background-color: #2c7a7b; /* or white if you prefer */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin-bottom: 20px;
}

/* CONTENT */
.container {
    max-width: 900px;
    margin: auto;
    padding: 30px 15px;
}

h1 {
    margin: 0;
}

h2 {
    color: #2c7a7b;
}

/* CARDS */
/*.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.card h3 {
    padding: 10px;
}

.card p {
    padding: 0 10px 15px;
}*/


/* CARDS */
.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.card h3 {
    padding: 10px;
}

.card p {
    padding: 0 10px 15px;
}

.card {
    display: block;              /* makes the whole card clickable */
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
    text-decoration: none;       /* removes underline */
    color: inherit;              /* keeps text colors normal */
    transition: all 0.2s ease;   /* smooth hover */
}


/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 18px;
    background: #2c7a7b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
}

/* FOOTER */
footer {
    background: #2c7a7b;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 60px;
        right: 0;
        background: #2c7a7b;
        flex-direction: column;
        width: 220px;
        display: none;
        padding: 10px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 10px;
    }
}