@charset "utf-8";
/* CSS Document */

/* Base Styles */
:root {
    --primary: #414751;
    --primary-dark: #2A2E34;
    --text: #414751;
    --text-light: #59616F;
    --bg: #f8fafc;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
	line-height: 1.6;
	background-color: var(--bg);
	margin: 0;
	padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero_uemi {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero_uemi-text {
    flex: 1;
    min-width: 300px;
}

.hero_uemi-text h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary-dark);
}

.highlight {
    color: var(--primary);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero_uemi-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.profile-img {
	max-width: 100%;
	object-fit: cover;
 	object-position: left 0;
	border-radius: 50%;
	width: 12em;
 	height: 12em;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.profile-img:hover {
    transform: scale(1.02);
}

/* About Section */
.about {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about h2 {
    color: var(--primary-dark);
    margin-top: 0;
    font-size: 1.8rem;
}

.about p {
    margin-bottom: 1.5rem;
}


/* Responsive Adjustments */
@media (max-width : 375px ){
    .hero_uemi {
        flex-direction: column;
        text-align: center;
    }

    .hero_uemi-text {
        margin-bottom: 2rem;
    }

    .hero_uemi-text h1 {
        font-size: 2rem;
    }
}
