/* General styling for the whole website */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

header p {
    font-size: 1.1em;
}

/* Navigation (if needed in future) */
nav ul {
    list-style: none;
    padding: 0;
}

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

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Section Styling */
section {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    margin-bottom: 10px;
}

h3 {
    margin-top: 0;
}

/* Lists */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 1rem;
}

/* Figures */
.figure {
    text-align: center;
    margin: 20px 0;
}

.figure img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.figure .caption {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}

/* Video Styling */
.video-container {
    text-align: center;
    margin: 20px 0;
}

.video-container video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Specific Sections (Academic, Articles, etc.) */
#academic .paper, #Articles .featured-article {
    margin-bottom: 2rem;
}

#academic .paper p, #Articles .featured-article p {
    margin: 0.5rem 0;
}

#academic .paper a, #Articles .featured-article a {
    color: #007BFF;
    text-decoration: none;
}

#academic .paper a:hover, #Articles .featured-article a:hover {
    text-decoration: underline;
}

/* Hobbies Section */
.hobbies-content {
    display: flex;
    flex-direction: column; /* Arrange text and images in a column */
    align-items: flex-start; /* Align items to the start of the flex container */
    gap: 1rem;
}

.hobbies-photos {
    display: flex;
    gap: 1rem; /* Space between images */
}

.hobbies-photos img {
    width: 150px; /* Adjusted size */
    height: auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
    margin-top: 20px;
}

footer p {
    margin: 0; /* Remove margin */
}

footer a {
    color: #fff; /* Dark text color for links */
    text-decoration: none; /* Remove underline from links */
}

footer a:hover {
    text-decoration: underline; /* Underline on hover for links */
}
