* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c1810;
    background: #f5f0e8;
}

header {
    background: linear-gradient(135deg, #6f4e37 0%, #4a3428 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4a574;
}

main {
    min-height: calc(100vh - 200px);
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(rgba(111, 78, 55, 0.85), rgba(74, 52, 40, 0.85)), 
                url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1600') center/cover;
    color: white;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.btn-contact {
    display: inline-block;
    background: #d4a574;
    color: #2c1810;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.about, .activity, .ugandan-coffee {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.about h2, .activity h2, .ugandan-coffee h2 {
    font-size: 2.2rem;
    color: #6f4e37;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about p, .ugandan-coffee p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.activity-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(111, 78, 55, 0.2);
}

.activity-item h3 {
    color: #6f4e37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ugandan-coffee {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.1);
}

.contact-section {
    max-width: 600px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-section h1 {
    text-align: center;
    color: #6f4e37;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #6f4e37;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #d4a574;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6f4e37;
}

button {
    background: #6f4e37;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover {
    background: #5a3e2c;
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

footer {
    background: linear-gradient(135deg, #6f4e37 0%, #4a3428 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}