/* Base Styles */
:root {
    --off-white: #f8f7f3;
    --text-color: #292929;
    --accent-color: #444444;
    --spacing-unit: 8px;
}

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

body {
    font-family: 'EB Garamond', serif;
    background-color: var(--off-white);
    color: var(--text-color);
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 650px;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 4) 0;
    text-align: left;
}

/* Typography */
h1 {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: calc(var(--spacing-unit) * 5);
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.3;
}

h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--accent-color);
    line-height: 1.4;
}

p {
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

/* Layout */
main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    margin-bottom: calc(var(--spacing-unit) * 6);
    text-align: left;
}

.logo img {
    max-width: 140px;
    height: auto;
}

header {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.description {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.description p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.schedule {
    margin-bottom: calc(var(--spacing-unit) * 6);
}

.schedule-item {
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-weight: 400;
}

.cta {
    margin: calc(var(--spacing-unit) * 8) 0;
    font-size: 1.2rem;
}

.cta a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.cta a:hover {
    border-color: var(--text-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-color);
    transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: var(--text-color);
    border-color: var(--text-color);
}

.hosts {
    margin-top: calc(var(--spacing-unit) * 8);
    font-size: 1rem;
    color: var(--accent-color);
}

/* Media Queries */
@media (max-width: 600px) {
    h1 {
        font-size: 2.1rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.05rem;
    }
    
    .description p {
        font-size: 1.1rem;
    }
    
    .container {
        width: 85%;
        padding: calc(var(--spacing-unit) * 3) 0;
    }
    
    .logo img {
        max-width: 120px;
    }
} 