/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url(/img/clklogonew.png);
    background-color: #f8f8f8;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding-top: 5rem;
    text-align: center;
    & a {
        color: black;
        text-decoration: none;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
    & a:hover {
        text-decoration: underline;
    }
    & .subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        font-weight: 300;
    }
}

/* Hero section */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    & h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: #4a5568;
    }
    & p {
        font-size: 1.2rem;
        color: #718096;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Meeting info cards */
.meeting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 4px solid #667eea;
    & h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: #4a5568;
    }
    & p {
        font-size: 1.1rem;
        color: #718096;
    }
}

/* Content sections */
section {
    padding: 1rem 2.5rem;
    & h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: #4a5568;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 0.5rem;
    }
    & h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #667eea;
    }
    & p {
        font-size: 1.1rem;
        color: #718096;
    }
}

/* Club focus list */
ul {
    list-style: none;
    margin: 1.5rem 0;
    & li {
        margin-bottom: 1rem;
        padding: 1rem;
        background: #f7fafc;
        border-radius: 8px;
        border-left: 4px solid #667eea;
        & strong {
            color: #4a5568;
        }
    }
}

/* Next meeting highlight */
.next-meeting {
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
    & em {
        font-size: 1.1rem;
        opacity: 0.9;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Accessibility improvements */
a:focus,
button:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background: white;
        color: black;
    }

    header {
        background: #000;
    }

    section {
        border: 2px solid #000;
    }
}
