/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
:root {
    --bg-color: #47585e;
    --text-color: #eeeeee;
    --accent-color: #88C057;
    --secondary-color: #333;
    --font-body: 'Oswald',sans-serif;
}
* {box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
a { text-decoration: none; color: var(--accent-color); }
h1, h2, h3, .logo {
    font-family: var(--font-body);
    text-transform: uppercase;
}
nav {
    padding: 20px 0;
    border-bottom: 2px solid var(--accent-color);
    background: var(--bg-color); /* Ensures nav isn't transparent on overlay */
    z-index: 50;
    position: relative;
}
.logo {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;         
    align-items: center;   
    justify-content: center;
    gap: 10px;             
}
.menu { list-style: none; }
.menu li { display: inline-block; margin: 0 10px; }
.menu a { color: white; font-weight: bold; font-size: 0.8rem; }
.menu a:hover { color: var(--accent-color); }
hero { padding: 60px 0; }
.hero h1 { font-size: 1.5rem; margin-bottom: 15px; color: var(--accent-color); line-height: 1.4; }
.section { padding: 60px 0; }
.alt-bg { background-color: #252525; }
.Υπηρεσίες-Λίστα {list-style: none;}