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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: linear-gradient(135deg, #181a10 0%, #1d1e18 100%);
    min-height: 100vh;
}

.container {
    margin: 0 auto;
    padding: 0;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 -20px;
    width: 100vw;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #f0f0f0;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-section {
    padding: 60px 0;
}

.image-container {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
}

.hero-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.image-caption {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 30px;
    font-size: 0.9rem;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.image-caption:hover {
    transform: rotate(0deg) scale(1.05);
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    border-left: 6px solid #667eea;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: #2d2d2d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.quote-author {
    text-align: right;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.story, .inspiration-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #667eea;
    margin-bottom: 25px;
    font-weight: 700;
}

p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

a {
    color: #764ba2;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

a:hover {
    border-bottom-color: #764ba2;
}

strong {
    color: #2d2d2d;
    font-weight: 600;
}

em {
    color: #667eea;
    font-style: italic;
}

.final-message {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 3px solid #667eea;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

footer {
    text-align: center;
    padding: 60px 20px 40px;
    color: #666;
    font-size: 0.95rem;
}

.moon-button {
    background: transparent;
    border: none;
    padding: 1rem 1rem 0;
    margin: 1rem 0 0;
    font-size: 1.5rem;
    color: purple;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10000px;    
    border: 1px solid transparent;

    &:hover {
        color: whitesmoke;
        border: 1px solid whitesmoke;
    }
}

article {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.6rem;
    margin: -1rem 0 1rem 0;

    span {
        color: white;
    }

    a {
        border: none;

        &:hover {
            img {
                transform: scale(1.5);
            }
        }
    }

    img {
        height: 1.6rem;
        transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 40px;
    }
    
    .main-section {
        padding: 40px 0;
    }
    
    .quote-block, .story, .inspiration-block {
        padding: 30px 25px;
    }
    
    .stats {
        gap: 20px;
    }
}
