/* ==================== CSS Variables ==================== */
:root {
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg: #fdfbf7;
    --color-accent: #8b7355;
    --color-accent-light: #c9b8a8;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

/* ==================== Container ==================== */
.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

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

/* ==================== Header ==================== */
.header {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-accent-light);
}

.name {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-text-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ==================== About Section ==================== */
.about {
    margin-bottom: 3rem;
}

.about-content {
    margin-bottom: 4rem;
}

.intro {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.8;
}

/* ==================== Passions ==================== */
.passions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.passion-item {
    padding: 2rem;
    transition: transform var(--transition);
}

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

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.passion-item h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.passion-item p {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 300;
}

/* ==================== Footer ==================== */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-accent-light);
}

.footer p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 300;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }
    
    .header {
        margin-bottom: 3rem;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .intro {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .passions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 16px;
    }
    
    body {
        padding: 1rem;
    }
    
    .name {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
}
