@font-face {
  font-family: 'Mileast';
  src: url('../assets/fonts/Mileast.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
    --bg-color: #fff;
    --text-color: #000;
    --border-color: #000;
}

body.dark {
    --bg-color: #121212;
    --text-color: #eee;
    --border-color: #eee;
}

body {
    margin: 0;
    font-family: 'Mileast', Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    height: 100vh;
    transition: background 0.3s, color 0.3s;
}

.container {
    border: 3px solid var(--border-color);
    border-radius: 10px;
    margin: 20px;
    height: 95%;
    display: flex;
    flex-direction: column;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--border-color);
    padding: 15px 20px;
    font-weight: bold;
}

.top-bar a {
    color: inherit;
    text-decoration: none;
}

.top-right {
    display: flex;
    gap: 20px;
    font-size: 18px;
    align-items: center;
    cursor: pointer;
}

.about-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
}

.about-section h2,
.about-section p,
.about-section a.resume-link {
    width: 50%;
    text-align: left;
    margin-bottom: 25px;
}

.about-section h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-section p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1.7;
}

.about-section a.resume-link {
    font-size: 18px;
    text-decoration: underline;
    cursor: pointer;
    color: var(--text-color);
    margin-bottom: 0;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 12px;
    flex-shrink: 0;
}

.footer-center a {
    margin: 0 10px;
    color: var(--text-color);
    text-decoration: underline;
}

.container.arabic .about-section h2,
.container.arabic .about-section p,
.container.arabic .about-section a.resume-link {
  direction: rtl;
  text-align: right;
}