/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #7f8c8d;
    --background-color: #f9f9f9;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-weight: 300;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s ease;
}

h2:hover:after {
    transform: scaleX(1);
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    margin: 2rem 0;
    color: var(--secondary-color);
}

/* Layout */
header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

main {
    flex-grow: 1;
}

section {
    margin-bottom: 3rem;
}

.intro {
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Under Construction Pun */
.coming-soon h2 {
    margin-bottom: 0.2rem;
    display: block;
    text-align: center;
}

.under-construction {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 2rem;
    display: block;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--secondary-color);
}

.coming-soon {
    text-align: center;
}

.construction-line {
    width: 80px;
    margin: 0.5rem auto;
    border: none;
    height: 1px;
    background-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
}

/* Subtle animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header, section {
    animation: fadeIn 1s ease-out;
}

section:nth-child(2) {
    animation-delay: 0.3s;
}

footer {
    animation: fadeIn 1s ease-out;
    animation-delay: 0.6s;
}
