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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff; /* White base */
    background-image:
        linear-gradient(rgba(255, 140, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    min-height: 100vh;
}

header {
    background-color: lab(71.09% 33.39 50.14); /* light orange */
    color: #fff;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
}

nav {
    background-color: #FF8C00; /* Dark orange */
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #FFA500;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.1); /* Subtle dark overlay for minimalism */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

section h2 {
    color: #FF4500; /* Red-orange for headings */
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

section ul {
    list-style-position: inside;
    margin-left: 1rem;
}

section p {
    margin-bottom: 1rem;
}

/* Profile photo frame */
.profile-photo {
    width: 150px;
    height: 200px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 5px solid #FF4500;
    object-fit: cover;
    margin-right: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* About section layout */
.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    nav ul li {
        display: block;
        margin: 0.5rem 0;
    }
    
    main {
        padding: 1rem;
    }
}
