/* CSS Variables for easy theming */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #95a5a6;
    --background-start: #ecf0f1;
    --background-end: #bdc3c7;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--background-start) 0%, var(--background-end) 100%);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

/* Header styles */
.header {
    margin-bottom: 3rem;
}

.title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    animation: slideDown 1s ease-out;
}

.subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--secondary-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: slideUp 1s ease-out 0.2s backwards;
}

/* Main content styles */
.main-content {
    margin-bottom: 4rem;
}

.welcome-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: scaleIn 1s ease-out 0.4s backwards;
}

.welcome-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.divider {
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    margin: 2rem auto;
    animation: expandWidth 1s ease-out 0.8s backwards;
}

.quote {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.8;
    margin-top: 2rem;
    position: relative;
    padding: 0 1rem;
}

.quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.5;
    position: absolute;
    left: -10px;
    top: -10px;
}

/* Footer styles */
.footer {
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.8;
    animation: fadeIn 1.5s ease-in-out 1s backwards;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .welcome-section {
        padding: 2rem 1.5rem;
    }

    .quote::before {
        font-size: 2rem;
        left: -5px;
        top: -5px;
    }
}

@media (max-width: 480px) {
    .header {
        margin-bottom: 2rem;
    }

    .main-content {
        margin-bottom: 3rem;
    }

    .welcome-section {
        padding: 1.5rem 1rem;
    }

    .divider {
        width: 60px;
    }
}

/* Subtle hover effect on welcome section */
.welcome-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

