:root {
    --primary-color: #dfa8a8; /* Soft pinkish tone based on "gals" theme/merch descriptions */
    --secondary-color: #2c3e50;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --accent-color: #e67e7e;
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.site-header {
    background-color: var(--card-bg);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.site-logo {
    max-width: 100%;
    max-height: 240px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: #666;
    margin-top: 1rem;
}

/* Main Content */
main {
    flex: 1;
    padding: 3rem 0;
}

.about-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Community Section */
.community-section {
    background-color: var(--card-bg);
    padding: 4rem 0;
    margin: 2rem 0;
}

.community-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.community-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    font-style: italic;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateY(-3px);
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature p {
    color: #555;
    line-height: 1.6;
}

/* Links Section */
.links-section .container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.link-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.link-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.link-card p {
    margin-bottom: 2rem;
    color: #555;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.link-card.facebook .button:hover {
    background-color: #1877F2; /* Facebook Blue on hover */
    color: white;
}

.link-card.swap-station .button:hover {
    background-color: #4a90e2; /* Map/Geography Blue on hover */
    color: white;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    margin-top: auto;
}

.site-footer p {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: white;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .site-header {
        padding: 2rem 0;
    }
    
    .site-logo {
        max-height: 150px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .links-section .container {
        flex-direction: column;
        align-items: center;
    }
    
    .link-card {
        width: 100%;
    }
    
    .community-features {
        grid-template-columns: 1fr;
    }
    
    .community-section {
        padding: 3rem 0;
    }
}

