/* Import Google Fonts for Minimalist Style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Montserrat:wght@400;700&family=Lora:wght@400;600&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.8;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 28px;
    height: 28px;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.social-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Branding Text */
.art-text {
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    color: #222;
    flex-grow: 1;
}

/* Navigation Menu */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
    padding: 10px;
}

nav ul li a:hover {
    color: #007bff;
    transform: translateY(-2px);
}

/* Ensure content is not hidden under the fixed header */
body {
    padding-top: 100px;
}

/* Main Content */
main {
    padding: 100px 40px 40px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* Section Titles */
.title-container {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-size: 3em;
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.subtitle-container {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.2em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Education Section */
.education-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.education-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.education-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.edu-degree {
    font-size: 1.2em;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.edu-date {
    font-size: 1em;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}

.edu-school {
    font-size: 1em;
    font-weight: 600;
    color: #333;
}

.edu-location {
    font-size: 0.9em;
    font-style: italic;
    color: #666;
}

/* Footer Styles */
footer {
    background: #f8f8f8;
    color: #333;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    font-size: 1em;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

footer a:hover {
    text-decoration: underline;
    color: #0056b3;
}