/*
Theme Name: Barcelona Simply Gaza
Theme URI: https://barcelonasimply.com
Author: Your Name
Author URI: https://barcelonasimply.com
Description: Solidarity campaign platform for Gaza. Collects supporter info, displays stats, and showcases global support.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: barcelona-simply-gaza
*/

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #ffffff;
}

a {
    color: #d32f2f;
    text-decoration: none;
}

a:hover {
    color: #b71c1c;
}

.site-header {
    background: #d32f2f;
    padding: 15px 0;
}

.site-header .site-logo {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    color: white;
    font-weight: 500;
}

.site-footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.btn {
    background-color: #d32f2f;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #b71c1c;
}

.hero-section {
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.content-section {
    padding: 60px 0;
}

.content-section.section-alt {
    background: #f5f5f5;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.two-column > div {
    flex: 1;
    min-width: 300px;
}

.supporters-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.supporter-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.supporter-name {
    font-weight: bold;
}

.supporter-country,
.supporter-message,
.supporter-date {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #555;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.stat-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #d32f2f;
}

.stat-label {
    font-size: 1rem;
    margin-top: 5px;
    color: #333;
}

/* Responsive */
@media(max-width: 900px) {
    .two-column {
        flex-direction: column;
    }
}
