body {
  font-family:'Times New Roman', Times, serif;
  background-color: darksalmon;
  margin: 0; padding: 0;
  line-height: 1.6; color: #333;
}

/* Κεφαλίδα */
header {
  position: relative;
  height: 100vh; 
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
 
  /* trunk-ignore(git-diff-check/error) */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;   left: 0;
  width: 100%;   height: 100%;
  object-fit: cover;   z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  font-size: 20px;
}

header p {
  margin: 5px 0 15px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Ενότητες */
section {
  max-width: 90%;
  margin: 30px auto;
  background: azure;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(90, 246, 39, 0.1);
}

section h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

/* Επικοινωνία */
a {
  color: #2980b9;
}

a:hover {
  color: #1c5d88;
}


section {
  max-width: 90%;
  margin: 40px auto;
  background-color: #ffffff; 
  padding: 3rem; 
  border-radius: 16px; 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Απαλή, μοντέρνα σκιά */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; 
}

section:hover {
  transform: translateY(-6px); /* Διακριτικό εφέ "ανύψωσης" κατά το hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}


#about {
  /* Ένα διακριτικό gradient δίνει βάθος */
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.4) 0%, #ffffff 100%);
}

#about .text-photo {
  gap: 3rem; /* Αυξάνουμε το κενό μεταξύ κειμένου και εικόνας */
}

/* Βελτιωμένο στυλ για την εικόνα προφίλ */
#about img {
  width: 100%;
  max-width: 500px; /* Ορίζουμε μέγιστο πλάτος για καλύτερη απόκριση */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* Πιο έντονη σκιά για να ξεχωρίζει */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#about img:hover {
  transform: scale(1.05); /* Εφέ ζουμ κατά το hover */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* Αναβάθμιση της τυπογραφίας */
#about h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50; /* Σκούρο μπλε-γκρι για ισχυρή αντίθεση */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

/* Διακοσμητική γραμμή κάτω από τον τίτλο για έμφαση */
#about h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #0056b3); /* Gradient για τη γραμμή */
  border-radius: 3px;
}

/* Καλύτερη οργάνωση του κειμένου μέσα στο .wrapper */
#about .wrapper .topline {
  font-size: 1.1rem;
  font-weight: 500;
  color: #6c757d; /* Ουδέτερο γκρι */
  letter-spacing: 2px;
  text-transform: uppercase;
}
#about .wrapper .topline::after {
    display: none; /* Αφαιρούμε την παλιά γραμμή */
}

/* Τα h2 και h1 μέσα στο wrapper λειτουργούν ως υπότιτλοι */
#about .wrapper h2 {
  font-size: 2rem;
  color: #343a40;
  margin-bottom: 8px;
  padding-bottom: 0;
  font-weight: 500;
}
#about .wrapper h2::after {
  display: none; /* Αφαιρούμε τη γραμμή από τους υπότιτλους */
}

#about .wrapper h1 {
  font-size: 2.2rem;
  color: #343a40;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Νέο, πιο ζωντανό χρώμα για το κείμενο που αλλάζει */
#about .multiText, #about .multiText2 {
  color: #007bff; /* Ένα φωτεινό, επαγγελματικό μπλε */
  text-transform: capitalize;
}

/* Βελτίωση αναγνωσιμότητας για τις παραγράφους */
#about p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #495057; 
}

#skills {
  background-image: url('../img/skills-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design - Για να φαίνεται τέλειο και σε κινητά */
@media (max-width: 992px) {
  #about .text-photo {
    flex-direction: column; /* Στοίχιση σε στήλη σε μικρές οθόνες */
    text-align: center; /* Κεντράρισμα του κειμένου */
  }

  #about .text-photo .flex-grow-1 {
    margin-right: 0 !important;
    margin-bottom: 2.5rem;
  }

  /* Κεντράρισμα της διακοσμητικής γραμμής */
  #about h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Υποσέλιδο */
footer {
  text-align: center;
  padding: 15px;
  background-color: #2c3e50;
  color: white;
  margin-top: 30px;
}
#skills {
  background-image: url('./img/skills-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
fouter {
  background-image: url('./img/skills-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 60px 20px;
  text-align: center;
  color: white;
  margin-top: 30px;
}

.photo-gallery {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.photo-gallery img {
  max-height: 800px;
  width: auto;
  border-radius: 10px;
}

/* Responsive σχεδίαση */
@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  section {
    margin: 20px;
  }
}

.hero-image {
  background-image: url('./img/img.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
}

#skills {
  background-image: url('../img/skills-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 60px 20px;
}

#skills h2 {
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

#skills ul li {
  background: rgba(145, 11, 105, 0.4);
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 5px;
}

