/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #F9FAFB; overflow-x: hidden; }

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive sizing */
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #4B5563;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.italic { font-style: italic; }

/* Simple Button Styling */
.hero-cta { display: flex; gap: 1rem; justify-content: center; }
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s ease;
}
.btn-primary { background: #111827; color: white; }
.btn-secondary { border: 1px solid #D1D5DB; color: #374151; }
/* Prompt Section Styling */
.prompt-section {
    padding: 100px 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.prompt-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.prompt-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #111827;
}

.prompt-subtext {
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    margin-bottom: 30px;
}

.prompt-form textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    resize: none;
    outline-color: #111827;
}

.prompt-form .btn-primary {
    width: 100%;
    cursor: pointer;
    border: none;
    font-weight: 500;
}
.archive-section {
    padding: 80px 24px;
    background-color: #fcfcfc;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.archive-card {
    padding: 32px;
    border-bottom: 1px solid #e5e7eb;
    transition: transform 0.2s ease;
}

.archive-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: #111827;
}

.archive-card p {
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 20px;
}

.text-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-link:hover {
    text-decoration: underline;
}
/* Copyright Footer */
.site-footer {
    padding: 60px 24px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    background-color: #F9FAFB;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #9ca3af;
    letter-spacing: 0.03em;
}

.license-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #4b5563;
    text-transform: uppercase;
}
