/* Base Styles */

@font-face {
    font-family: 'Extra-light';
    src: url('fonts/Poppins-ExtraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Light';
    src: url('fonts/Poppins-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Medium';
    src: url('fonts/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Regular';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Bold';
    src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
}

/* Coral font color */
.text-coral {
    color: #F08717;
}

/* Deep blue font color */
.text-blue {
    color: #2264AD;
}

body {
    font-family: 'Medium', sans-serif;
    margin: 0;
    padding: 0;
    color: #2264AD;
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* Header */
header {
    background-color:#ffffff;
    color: #2264AD;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

header h1 {
    font-family: 'Regular';
    color: #F08717;
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin: 5px 0;
    color: #F08717;
}



nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #003366;
    padding: 10px 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

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

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

section p, section ul {
    font-size: 1.1em;
    line-height: 1.8;
}

ul {
    list-style: square;
    margin-left: 20px;
}


/* About Section Container */
.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}


/* Logo Container */
.logo-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px
}

.logo-box {
	width: 80px;
	height: 80px;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 8px;
	bakcground-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}


/* Text Section */
.about-text {
    flex: 2; /* Takes up 2 parts of the space */
}

/* Logo Space */
.logo-space {
    text-align: center;
    margin-bottom: 10px;
}

.logo-space img {
    max-width: 120px; /* Adjust size as needed */
    height: auto;
}

/* Header Content */
.header-content {
    text-align: center;
    color: white;
}


/* Picture Section */
.about-picture {
    flex: 1; /* Takes up 1 part of the space */
    text-align: center;
}

.about-picture img {
    max-width: 150px; /* Adjust size as needed */
    border-radius: 50%; /* Makes it circular */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Publications */
.publi-entry {
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 5px solid #2264AD;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.publi-type {
  font-weight: bold;
  color: #2264AD;
  font-size: 0.9rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.publi-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 15px;
}

