/* Polish Community Australia - No JavaScript, Pure CSS */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.site-header {
    background-color: #dc2626;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: white;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.main-nav a:hover {
    border-bottom-color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: white;
    color: #dc2626;
    border-color: white;
}

.btn-primary:hover {
    background-color: #f3f4f6;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #dc2626;
}

.btn-outline {
    background-color: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

.btn-outline:hover {
    background-color: #dc2626;
    color: white;
}

/* Section Styles */
.featured-section,
.events-section,
.stats-section {
    padding: 3rem 0;
}

.events-section {
    background-color: #f9fafb;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.business-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.business-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.business-card h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.business-category {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.business-description {
    margin-bottom: 1rem;
}

.business-details p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Events List */
.events-list {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.event-date {
    background-color: #dc2626;
    color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.date-month {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.event-details h3 {
    margin-bottom: 0.5rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
}

.stat-card h3 {
    margin-bottom: 0.5rem;
    color: #dc2626;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
}

/* CTA Section */
.cta-section {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-form input[type="email"] {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: 1px solid #374151;
    background-color: #1f2937;
    color: white;
    min-width: 300px;
}

.cta-form input[type="email"]::placeholder {
    color: #9ca3af;
}

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #374151;
    background-color: #111827;
    color: white;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #b91c1c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom a {
    color: #d1d5db;
    text-decoration: none;
}

/* Utility Classes */
.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .cta-form input[type="email"] {
        min-width: 100%;
    }
}