/* --------- GLOBAL --------- */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial;
  background: #000;
  min-height: 100vh;
  box-sizing: border-box;
}

/* padding πάνω για να μη μπαίνει το περιεχόμενο κάτω από το fixed menu
   και κάτω για το fixed footer */
body {
  padding-top: 80px;    /* ύψος menu */
  padding-bottom: 70px; /* ύψος footer */
}

/* --------- BACKGROUND VIDEO --------- */
#myVideo {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* --------- PAGE SECTIONS --------- */
.section {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
  font-size: 18px;
  text-align: justify;
}

/* Απόσταση μεταξύ sections */
.section + .section {
  margin-top: 20px;
}

/* --------- MENU FIXED --------- */
.section.menu {
  background: rgba(0,0,0,0.8);
  padding: 5px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

/* --------- NAVBAR --------- */
.topnav {
  text-align: center;
  overflow: hidden;
  background: transparent;
}

.topnav a {
  display: inline-block;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
}

.topnav a:hover {
  background: #fff;
  color: #000;
}

/* DROPDOWN */
.dropdown {
  display: inline-block;
}

.dropdown .dropbtn {
  font-size: 25px;
  padding: 14px 16px;
  background: inherit;
  border: none;
  color: white;
  cursor: pointer;
}

/* MENU CONTENT */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  background: rgba(0,0,0,0.8);
  z-index: 3;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #fff;
  color: #000;
}

.show {
  display: block;
}

/* ICON BUTTON (MOBILE) */
.topnav .icon {
  display: none;
}

/* -------- RESPONSIVE NAV -------- */
@media screen and (max-width: 600px) {

  /* Κρύβουμε όλα εκτός από το πρώτο link (OmbR) και το icon */
  .topnav a:not(:first-child),
  .topnav .dropdown {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {

  .topnav {
    position: relative;
    text-align: left;
  }

  .topnav.responsive {
    position: relative;
  }

  /* Κρατάμε το MENU ≡ πάνω δεξιά, δεν πέφτει κάτω */
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
  }

  /* Τα links & dropdown ανοίγουν από κάτω σε κάθετη λίστα */
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .topnav.responsive .dropdown {
    display: block;
    width: 100%;
  }

  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 14px 16px;
  }

  .topnav.responsive .dropdown-content {
    position: relative;
  }
}

/* -------- LINKS WITH ICONS -------- */
.section:not(.menu) a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.section:not(.menu) a::before {
  content: "👊";
  margin-right: 5px;
}

.section:not(.menu) a::after {
  content: "👊";
  margin-left: 5px;
}

/* -------- RESPONSIVE IMAGES -------- */
img.responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------- FOOTER -------- */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width:100%;
  text-align:center;
  font-size:14px;
  background:rgba(0,0,0,0.6);
  color:#fff;
  padding:10px 0;
  z-index:9999;
}

/* -------- GOOGLE TRANSLATE WIDGET -------- */

/* Θέση widget */
#google_translate_element {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
}

/* Κρύβουμε την άσχημη πάνω μπάρα */
.goog-te-banner-frame,
iframe[id^="goog-te-banner-frame"] {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
}

/* Κρύβουμε overlay */
body > .skiptranslate {
  display: none !important;
}

/* Μην αφήνουμε margin-top από το script */
html {
  margin-top: 0 !important;
}
