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

body {
    font-family: 'Source Serif Pro', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #34495e;
    letter-spacing: -0.02em;
}

/* Main content */
main {
    flex: 1;
}

section {
    margin-bottom: 3rem;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.description {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Link styling */
a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Contact section */
.contact {
    text-align: center;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #2980b9;
    text-decoration: underline;
}

.contact-email:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: auto;
    padding-top: 2rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .contact {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .contact-email {
        font-size: 1rem;
    }
} 