* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3a3a3a;
    --secondary-color: #545454;
    --light-gray: #fdf7f7;
    --lighter-gray: #ffffff;
    --white: #ffffff;
    --border-color: #f4e6e6;
    --accent-color: #d4a4a4;
    --text-dark: #3a3a3a;
    --baby-pink: #f8e8e8;
}

body {
    font-family: 'PT Serif', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    font-family: 'PT Serif', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
    padding: 120px 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-family: 'PT Serif', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.cta-button {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'PT Serif', serif;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3rem;
}

.berlin-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    filter: grayscale(30%);
    opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.berlin-image:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Featured Products */
.featured-products {
    padding: 0 0 60px;
    background-color: var(--light-gray);
}

.section-title {
    font-family: 'PT Serif', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.products-showcase {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.products-image {
    flex: 1;
}

.showcase-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.showcase-image:hover {
    filter: grayscale(0%);
}

.products-list {
    flex: 1;
}

.product-item {
    background-color: var(--white);
    border-radius: 0;
    padding: 0.8rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.product-item:hover {
    background-color: var(--lighter-gray);
    padding-left: 1rem;
}

.product-item:last-child {
    border-bottom: none;
}

.product-name {
    font-family: 'PT Serif', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.product-description {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.4;
}

.product-price {
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-color);
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2px;
}

/* Fundraising Info */
.fundraising-info {
    margin: 1.5rem 0;
}

.marathon-text {
    color: var(--secondary-color);
    font-size: 1rem;
    font-style: italic;
    text-align: left;
}

/* Fundraising Impact Section */
.fundraising-impact {
    padding: 80px 0;
    background-color: var(--baby-pink);
    text-align: center;
}

.impact-title {
    font-family: 'PT Serif', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 400;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    font-family: 'PT Serif', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-align: center;
    line-height: 1.3;
}

/* Footer */
.footer {
    background-color: var(--white);
    color: var(--secondary-color);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
}

.footer a:hover {
    text-decoration: underline;
}

.citation {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: var(--accent-color);
}

.vibe-credit {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: var(--accent-color);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
        position: relative;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0 15px;
    }
    
    .nav-logo h1 {
        font-size: 1.1rem;
        margin: 0;
        padding: 0.3rem 0;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.8rem;
        margin: 0;
        padding: 0.2rem 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px 20px;
        min-height: auto;
    }
    
    .hero-image {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .hero-placeholder {
        font-size: 8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .products-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .showcase-image {
        height: 300px;
    }
    
    .icons-row {
        gap: 1rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.2rem 0;
    }
    
    .nav-logo h1 {
        font-size: 0.9rem;
    }
    
    .nav-menu {
        font-size: 0.7rem;
        gap: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-placeholder {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
}