﻿/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #4a4a4a; /* Softer, warm charcoal */
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

/* Layout */
main {
    max-width: 700px;
    width: 100%;
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400; /* Lighter weight for elegance */
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    color: #2d2d2d; /* Slightly darker for contrast against background */
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 4rem; /* increased spacing */
    letter-spacing: 0.01em;
}

.content p {
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.05rem;
    color: #333;
}

.content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    body {
        padding: 1.5rem;
    }
}
