/* Monica page — extends light-theme.css */

.section-full {
    width: 100%;
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container-std {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.profile-img-main {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(31, 38, 135, 0.14);
    margin-bottom: 30px;
}

h1.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--body-text));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent-yellow);
}

p.text-body {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 20px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    h1.hero-title {
        font-size: 2.5rem;
    }
}
