/* || G E N E R A L _ S T Y L E S */
body {
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.2px;
  max-width: 1600px;
  margin: 0 auto; /* Centers the content */
  overflow-x: hidden; /* Prevents horizontal scrolling */
}

h1,
h2,
h3 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

h4,
h5 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

p {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
}

strong {
  font-weight: 400;
}

/* Styling all the image border */
img {
  /* border: 2px solid red; */
  border-radius: 3px;
}


/* || C A R O U S E L */
#carousel-section {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1600px; /* Limits width to 1600px */
  height: 100vh; /* Full viewport height */
  z-index: -1; /* Behind the menu */
  transform: translateX(-50%); /* Centers the carousel */
}

.carousel-item img {
  object-fit: cover; /* Προσαρμόστε την εικόνα να καλύπτει την περιοχή */
  width: 100%;
  height: 100vh; /* Ίδιο ύψος με το section */
}

#customCarousel .carousel-inner,
#customCarousel .carousel-item,
#customCarousel .carousel-item img {
  height: 100vh; /* 2/3 of the viewport height */
  object-fit: cover; /* Ensures images cover the area without stretching */
}


/* V I D E O   C A R O U S E L */

/* #video-events {
  margin: 0 !important;
  padding-top: 12%;
  padding-bottom: 5%;
  background-color: #000;
} */

#video-events {
  position: relative; /* Απαραίτητο για το absolute positioning του pseudo-element */
  margin: 0 !important;
  padding-top: 10%;
  padding-bottom: 2%;
  /* Δεν ορίζουμε background εδώ, γιατί το θα κάνει το pseudo-element */
  z-index: 1;
}

/* #video-events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #000;
  z-index: -1; 
} */

#video-events .container-fluid {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
#video-events .container-fluid .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#video-events .container-fluid .row > [class*="col-"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

  
/* V I D E O  C A R O U S E L B U T T O N S */
/* Τα interactive κουμπιά για desktop */
.carousel-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: none !important;
  background-image: none !important;
  border: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-block !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1.8); /* Αυξημένο scale */
  cursor: pointer !important;
  z-index: 100 !important;
  transition: color 0.3s ease, transform 0.2s ease !important;
  color: whitesmoke !important;
  font-size: 2rem !important; /* Αυξημένο font-size */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.carousel-btn:hover {
  color: black !important;
  transform: translateY(-50%) scale(2.2) !important; /* Αντιστοίχως για hover */
}

.carousel-btn:focus {
  outline: none !important;
}

/* Τοποθέτηση κουμπιού */
.left-btn {
  left: 0.8rem;
}
.right-btn {
  right: 0.8rem;
}

/* Στυλ για το SVG εικονίδιο */
.arrow-icon {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

/* V I D E O  C A R O U S E L B U T T O N S */

/* Ρυθμίσεις για το video-carousel container */
.video-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0; /* Χωρίς κενά μεταξύ των video cards */
  margin: 0;
  -webkit-overflow-scrolling: touch;
  /* background: #000; */
}

/* Αφαιρούμε το fixed height από την κάρτα */
.video-card {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
  padding: 0 3px;
}

/* Από 768px και πάνω: 2 εικόνες (κάθε κάρτα 50%) */
@media (min-width: 768px) {
  .video-card {
    flex: 0 0 50%;
  }
}

/* Από 992px και πάνω: 3 εικόνες (κάθε κάρτα 33.33%) */
@media (min-width: 1200px) {
  .video-card {
    flex: 0 0 33.33%;
  }
}

/* Ρυθμίζουμε το video να καταλαμβάνει όλο το πλάτος και να διατηρεί τις αναλογίες */
.video-card video {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain; /* ή cover/none, ανάλογα με το επιθυμητό αποτέλεσμα */
  margin: 15px auto 4px; /* 15px πάνω, auto αριστερά και δεξιά, 4px κάτω */
  max-width: 99%;       /* Περιορίζει το πλάτος στο 99% του γονέα */
}

/* Overlay για το caption, που θα καλύπτει περίπου το 33% του ύψους του container */
.video-caption {
  background-color: rgba(0, 0, 0, 0.85);
  box-sizing: border-box;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Κεντράρει το περιεχόμενο */
  overflow: hidden;
  margin-top: 3px;
  max-width: 99%;       /* Περιορίζει το πλάτος στο 80% του γονέα */
  margin-left: auto;    /* Κεντράρει οριζόντια */
  margin-right: auto;
  border-radius: 2px;   /* Στρογγυλεμένες γωνίες */
}

.video-caption h4,
.video-caption p {
  text-align: center;
}

/* Ρυθμίζουμε τα margin των στοιχείων για να μη προσθέτουν περιττό κενό */
.video-caption .heading-4,
.video-caption p {
  margin: 0;
  padding: 0;
}

/* Στυλ για το κείμενο στο caption */
.video-caption .heading-4 {
  color: #639ecb;
  font-size: 1rem;
  font-weight: 400;
  margin: 0; /* Αν θέλετε να μην υπάρχει επιπλέον απόσταση */
}

/* να μην εμφανίζεται το type effect */
.video-caption .heading-4 span {
  opacity: 1 !important;
  transition: none !important;
  margin: 0; /* Αφαιρέστε το 15rem, αν δεν το χρειάζεστε */
}

.video-caption p {
  color: #ffffffb7;
  font-size: 0.9rem;
  margin: 0.1rem 0 0;
}
  
/* να μην εμφανίζεται το type effect */
.video-caption .heading-4 span {
  opacity: 1 !important;
  transition: none !important;
}

/* M o d a l  O v e r l a y */
.video-modal {
  display: none; /* Από προεπιλογή κρυφό */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Ημιδιαφανές μαύρο */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.5rem; /* Σταθερό κενό από κάτω */
}

/* Κεντρικό περιεχόμενο modal */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: transparent;
}

/* Το video στο modal να είναι responsive */
.video-modal video {
  width: 100%;
  height: auto;
  display: block;
}

/* Κουμπί κλεισίματος modal */
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.6); /* Λευκό με διαφάνεια */
  border: none;
  font-size: 2.5rem; /* Μεγαλύτερο X */
  line-height: 1;
  padding: 0.3rem 0.7rem; /* Μειωμένο vertical padding για λιγότερο ψηλό κουμπί */
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

@supports (-webkit-touch-callout: none) {
  /* Αυτό το rule θα ισχύει σε iOS Safari */
  .video-modal-close {
    display: none;
  }
}
.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.8);
}


/* Αφαίρεση scroll bar για browsers που το υποστηρίζουν (προαιρετικό) */
.video-carousel::-webkit-scrollbar {
  display: none;
}
.video-carousel {
  -ms-overflow-style: none;  /* IE και Edge */
  scrollbar-width: none;  /* Firefox */
}

@media (max-width: 768px) {
  .video-carousel {
    margin-left: -5%;
    margin-right: -5%;
    width: calc(100% + 10%);
  }
}





/* || HIDE IMAGE IN MOBILE */

@media (max-width: 991px) {
  .head-image-small {
    display: none;
  }

  .head-image-large {
    display: none;
  }
}

@media (min-width: 992px) {
  .head-image-small {
    display: block !important; /* Ensures override of conflicting styles */
  }

  .head-image-large {
    display: block !important;
    padding-top: 10px; /* Adds padding to the top of the large image */
  }
}

/* || H E A D I N G S */
.heading-1 {
  font-size: 2.027rem;
  line-height: 1.3;
  color: #264e69;
  margin-bottom: 15px;
}

/* .heading-1 {
  font-size: 2.027rem;
  line-height: 1.3;
  color: #264e69;
  margin-bottom: 15px; 
} */

.heading-2 {
  font-size: 1.802rem;
  line-height: 1;
  margin-top: 0; /* Αν θέλεις να μην υπάρχει επιπλέον από πάνω */
  color: #52616b;
  margin-bottom: 25px; /* Adjust as needed for spacing after heading-2 */
}

.heading-3 {
  font-size: 1.602rem;
  line-height: 1.5;
}

/* .heading-4 {
  font-size: 1.424rem;
  line-height: 1.3;
} */

/* Στυλ για τον τίτλο (ή παραγράφους) που θα έχει το effect */
.heading-4 {
  /* Αν θέλετε το wrapping να γίνεται φυσικά, μην χρησιμοποιείτε white-space: nowrap */
  display: inline; /* ή block, ανάλογα με την διάταξη */
}

/* Στυλ για τα μεμονωμένα spans που θα περιέχουν κάθε χαρακτήρα */
.heading-4 span {
  opacity: 0; /* Ξεκινάμε με αόρατους τους χαρακτήρες */
  /* Ορισμός ελαφριάς μετάβασης για την εμφάνιση */
  transition: opacity 0.05s linear;
}

h4 + p {
  margin-top: 10px; /* Adjust the margin value as needed */
}

.heading-1.masked-text {
  margin-bottom: 20px; /* Το κενό κάτω από το h1 */
}

.card-body p {
  margin-bottom: 20px; /* Adjust as needed for spacing after paragraphs inside card body */
}

/* || TEXT INDENT for bullets etc */
.indent-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
}

.indent-text p {
  text-indent: 0; /* Remove the indent for the first line */
  margin: 10px 0; /* Adjust the margin as needed */
}

.indent-text ul {
  margin: 0;
  padding: 0; /* Remove default padding */
}

.indent-text li {
  text-indent: 0px; /* Set negative indent to align with the text */
  margin: 10px 0; /* Adjust the margin as needed */
}

/* || RESPONSIVE IMAGES used in INDEX */

.image-pair {
  display: flex;
  justify-content: space-between;
  gap: 10px; /* Μικρότερο κενό ανάμεσα στις εικόνες */
  margin: 30px 0; /* Απόσταση πριν και μετά τις εικόνες */
}

.image-pair img {
  width: 49%; /* Ελαφρώς μεγαλύτερο ποσοστό ώστε να γεμίζει ο χώρος */
  border-radius: 3px;
}

@media (max-width: 992px) {
  .image-pair {
    flex-direction: column;
    align-items: center;
  }

  .image-pair img {
    width: 100%;
    margin-bottom: 10px; /* Μικρότερο κενό μεταξύ των εικόνων στο mobile */
  }
}

/* || MASKED TEXT */
.masked-text {
  font-size: 3rem; /* Αυξήθηκε το μέγεθος */
  font-weight: 700;
  margin-bottom: 50px;
  color: transparent;
  background-image: url("/hellenic-cultural-center-img/text-background.jpg");
  background-size: 200%;
  /* Enlarged for smooth animation */
  background-position: 0 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-background 7s infinite alternate linear;
}

@keyframes animate-background {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* || SCROLL TRIGER Fade-In/Slide-In Effect για παραγράφους */
/* Τα στοιχεία με την κλάση .fade-in ξεκινούν αόρατα */
.fade-in {
  opacity: 0; /* Ξεκινά εντελώς διάφανο */
  transform: translateY(
    60px
  ); /* Το στοιχείο ξεκινά 80px πιο κάτω για να φαίνεται ότι ανεβαίνει */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Ομαλή μετάβαση διάρκειας 0.8s */
}

/* Όταν το στοιχείο γίνει ορατό, προστίθεται η κλάση .visible */
.fade-in.visible {
  opacity: 1; /* Το στοιχείο γίνεται πλήρως ορατό */
  transform: translateY(0); /* Επιστρέφει στην κανονική του θέση */
}

/* || BOARD MEMBERS IMAGE */
.board-member {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  padding-top: 45px;
  padding-bottom: 20px;
  /* padding-left: 20px;
  padding-right: 20px; */
}

.board-member-image {
  flex: 0 0 25%; /* Image occupies 1/4 of the page */
  margin-right: 20px; /* Adjust the margin as needed */
  padding-bottom: 30px; /* Add padding to the image */
  padding-top: 8px; /* Add padding to the image */
}

.board-member-image img {
  width: 100%;
  height: auto;
}

.board-member-info {
  flex: 1;
}

@media (min-width: 481px) {
  .board-member-image {
    position: -webkit-sticky;
    position: sticky;
    top: 85px;
  }
}

@media (max-width: 480px) {
  .board-member {
    flex-direction: column; /* Change flex direction to column for smaller screens */
    align-items: center; /* Center items in the column */
  }

  .board-member-image {
    margin-right: 0; /* Remove margin for smaller screens */
    margin-bottom: 10px; /* Add margin between image and text */
  }
}

/* || BOARD MEMBERS ROW COLOR CHANGE */
/* Για τα odd board-members (π.χ. 1ο, 3ο, 5ο, ...) */
/* .board-member:nth-child(odd) {
  background-color: #f4f4f4; 
} */

/* Για τα even board-members (π.χ. 2ο, 4ο, 6ο, ...) */
/* .board-member:nth-child(even) {
  background-color: #ffffff; 
} */

/* || GRAYSCALE ROLLOVER */
.img-gray {
  filter: none;
  -webkit-filter: grayscale(0);
}

.img-gray:hover {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

/* || M I S C */
/* Hide things */
.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

@media (min-width: 992px) {
  /* Hide footer links */
  .hide-row {
    display: none;
  }
  /* change photo in index page */
  /* .head-image-small {
    display: block !important; 
  }
  .head-image-large {
    display: block !important;
    padding-top: 10px;
  } */
}

/* Make links inactive */
.inactive-link {
  pointer-events: none;
  cursor: default; /* Optional: Set cursor to default to indicate it's not clickable */
  /* color: ; Optional: Change the color to visually indicate it's inactive  */
}

/* Make image sticky */
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* || C O N T A I N E R S */

.container-fluid {
  padding-top: 0;
  padding-right: 5%;
  padding-bottom: 0;
  padding-left: 5%;
  overflow: visible; /* Διασφαλίζει ότι το sticky δουλεύει σωστά */
}

.container-fluid .content-wrapper {
  padding-top: 0;
  padding-right: 5%;
  padding-bottom: 0;
  padding-left: 5%;
}

@media (max-width: 992px) {
  .container-fluid {
    padding: 0 5%;
  }
}

/* || S E C T I O N S */
#main-section {
  padding: 5% 0px;
  /* overflow: hidden; */
  background-color: #fff;
  color: #52616b;
}

#main-carousel {
  margin-top: 100vh;
  /* Τοποθετείται ακριβώς κάτω από το carousel */
  padding: 5% 0;
  /* padding: 5% 20px; */
  background-color: #fff;
  color: #52616b;
}

.album {
  /* background-color: #52616b; */
  padding-top: 120px;
}

/* || N A V I G A T I O N _ B A R */
/* || N A V I G A T I O N _ B A R */
/* || N A V I G A T I O N _ B A R */
/* || N A V I G A T I O N _ B A R */
.logo-mob {
  width: 230px;
  position: relative;
  padding-top: 8px;
}

.logo-desk {
  width: 100%;
  padding-top: 15px;
}

/* Δημιουργία πλήρους πλάτους φόντου */
.navbar {
  height: 80px; /* Ρυθμίστε το ύψος όπως επιθυμείτε */
  position: sticky;
  margin: 0;
  padding: 0;
  z-index: 1000;
  backdrop-filter: blur(10px); /* Εφέ θολώματος */
  /* box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); */
}

/* Φόντο πλήρους πλάτους */
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%; /* Αρχικό σημείο */
  transform: translateX(-50%); /* Κεντράρει το φόντο */
  width: 100vw; /* Καλύπτει το πλήρες πλάτος του browser */
  height: 100%; /* Ίδιο ύψος με το navbar */
  background-color: rgba(255, 255, 255, 0.92); /* Φόντο με διαφάνεια */
  backdrop-filter: blur(10px) !important; /* Εφέ θολώματος */
  z-index: -1; /* Πίσω από το περιεχόμενο */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  margin-top: 1%;
  margin-bottom: 2%;
}

/* .nav-item {
	padding: 18px 5px 0;
} */

.nav-link {
  color: #000;
  font-size: 1rem;
  font-family: "Ubuntu";
  font-weight: 400;
  text-decoration: none;
  padding: 18px 5px 0;
  position: relative;
  display: inline-block;
  transition: color 1s ease-in-out;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
}

.nav-link:hover {
  animation: color-wheel80 3s linear infinite;
  /* font-weight: 500; */
}

.navbar-toggler {
  border-color: none;
}

@keyframes color-wheel80 {
  0% {
    color: #264e69;
  }
  20% {
    color: red;
  }
  40% {
    color: #b0c4cd;
  }
  60% {
    color: #809ba6;
  }
  80% {
    color: #4d6979;
  }
  100% {
    color: #264e69;
  }
}


/* .to-right {
	padding-left: 60px;
} */

.navbar-light .navbar-toggler {
  border: 0;
  margin-bottom: 10px;
}

@media (min-width: 993px) {
  .navbar {
    position: sticky;
    top: 0;
  }
}

/* N A V I G A T I O N _ B A R _ R E S P O N S I V E */
@media (max-width: 992px) {
  .navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 0;
  }

  .navbar-collapse {
    position: fixed; /* Το dropdown fixed ώστε να καλύπτει ολόκληρη την οθόνη */
    top: 80px; /* Ξεκινάει κάτω από το header (navbar) */
    left: calc((100% - 100vw) / 2);
    width: 100vw;
    height: calc(
      100vh - 80px
    ); /* Ολόκληρο το ύψος του viewport μείον το header */
    z-index: 1001; /* Πάνω από το background του navbar */
    background-color: rgba(255, 255, 255, 0.94); /* Φόντο με διαφάνεια */
    backdrop-filter: blur(10px) !important; /* Εφέ θολώματος */
    transform: translateY(-20px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  /* Όταν ανοίγει το collapse (Bootstrap προσθέτει την κλάση .show) */
  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
  }

  .navbar-collapse.collapsing {
    transition: none;
  }

  .navbar-nav {
    display: block; /* Γυρνάμε σε block layout */
    text-align: right; /* Στοιχίζουμε το περιεχόμενο δεξιά */
    padding-right: 40px; /* Ρύθμισε όπως θέλεις */
  }

  .nav-item {
    display: block;
    text-align: right; /* Εξασφαλίζει ότι το περιεχόμενο του item στοιχίζεται δεξιά */
    padding: 0;
    margin-left: auto; /* Align to the right */
    border-top: 0;
    border: none;
    /* border-bottom: 1px solid;
    border-left: 0;
    border-right: 0;
    border-color: #264e69; */
  }

  /* Τα δύο τελευταία items (το .to-right και το αμέσως επόμενο) να είναι inline-block */
  .nav-item.to-right,
  .nav-item.to-right + .nav-item {
    display: inline-block;
    width: auto;
    margin: 0;
    vertical-align: middle;
  }
  .nav-item.to-right + .nav-item {
    margin-left: 30px;
  }

  .logo-desk {
    width: 100%;
    padding-top: 0;
  }

  .to-right {
    padding: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    font-family: "Ubuntu";
    font-weight: 400;
  }
}

/* @media (max-width: 540px) {
  .navbar-brand {
    padding-top: 20px;
    width: 80%;
  }
} */

/* || Hamburger Animation */
.animated-icon1,
.animated-icon2,
.animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span,
.animated-icon2 span,
.animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #000;
}

.animated-icon1 span:nth-child(1) {
  top: 0;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/* || END Hamburger Animation */

/* || I N D E X _ P A G E */
.head-image {
  width: 100%;
  margin-bottom: 6%;
  /* margin: 20px; */
}

@media (max-width: 540px) {
  .head-image {
    margin-bottom: 13%;
  }
}

/* || S E R V I C E S _ P A G E */

.services-row {
  margin-bottom: 50px;
}

@media (min-width: 481px) {
  .img-services {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 95px;
  }
}

@media (max-width: 992px) {
  .img-services {
    width: 100%;
    padding-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .img-services {
    width: 100%;
  }
}

/* || P R O J E C T S */
.project-card {
  border: none;
}

.project-card .heading-4 {
  font-size: 1.266rem;
  margin-bottom: 2px;
}

.project-card p {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

/* colorize on hover image */
.colorize {
  position: relative;
  padding: 10px 3px 30px 3px;
}

/* class of the image */
.card-img-top {
  cursor: pointer;
}

/* || P R O J E C T _ P A G E */
.figure-caption {
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .figure-caption {
    text-align: left !important;
  }
}

/* || C O N T A C T _ P A G E */
/* map iframe */
iframe {
  border: 0;
}

.contact-row {
  padding-bottom: 20px;
}

.contact-info {
  padding-left: 20px;
}

.map-container {
  overflow: hidden;
  margin-top: 20px;
  padding-bottom: 56.25%;
  position: relative;
  height: 500px;
}

.map-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.form-group {
  font-size: 0.9rem;
  color: red;
}

.form-control {
  font-size: 1rem;
}

.text-muted {
  font-size: 0.9rem;
}

.donation-row {
  background-color: #f8f9fa; /* Ανοιχτό γκρι */
  padding: 60px 0;
  border-radius: 5px; /* Προαιρετικό για rounded corners */
}

/* Στυλ για τη λίστα δωρεών */
.donation-row ol {
  list-style: none;          /* Κατάργηση αριθμημένης λίστας */
  padding: 0;
  margin: 0 auto;            /* Κεντράρισμα της λίστας */
  max-width: 600px;          /* Περιορισμός πλάτους για καλύτερη εμφάνιση */
  text-align: center;        /* Κεντράρισμα του κειμένου */
}

/* Στυλ για κάθε στοιχείο της λίστας */
.donation-row li {
  background-color: #ffffff; /* Απαλό, ανοιχτό χρώμα φόντου */
  padding: 20px;             /* Εσωτερικό περιθώριο */
  margin-bottom: 20px;       
  border-radius: 8px;        /* Στρογγυλεμένες γωνίες */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Ελαφριά σκιά για βάθος */
  font-family: 'Ubuntu', sans-serif;
  line-height: 1.2;
}

/* Στυλ για τις έντονες επικεφαλίδες μέσα στα στοιχεία */
.donation-row li strong {
  display: block;
  margin-bottom: 0; /* Αφαίρεση του επιπλέον κενού */
  font-size: 1.3rem;
  color: #264e69;
  line-height: 1; /* Μειωμένο line-height για πιο στενή διάταξη */
}


/* Στυλ για τους συνδέσμους (αν υπάρχουν) */
.donation-row li a {
  color: #007bff;
  text-decoration: none;
}




/* Styling the list in contact donation page */
ol {
  margin-bottom: 20px; /* Adjust as needed */
}

ol li {
  margin-bottom: 20px; /* Adjust as needed */
}

/* Custom Button Styles */
.btn-custom {
  background-color: rgba(
    0,
    0,
    0,
    0.3
  ); /* Set your preferred background color */
  color: #fff; /* Set your preferred text color */
  font-size: small;
  padding: 5px 30px; /* Set padding as needed */
  text-decoration: none;
  border-radius: 3px; /* Set border radius for rounded corners */
  transition: background-color 0.3s ease; /* Add a smooth transition effect */
}

.btn-custom:hover {
  background-color: #264e69; /* Change background color on hover */
  color: #fff; /* Set your preferred text color */
}

/* C O N T A C T _ R E S P O N S I V E */
@media (max-width: 992px) {
  .map-container {
    margin-bottom: 40px;
    margin-top: 20px;
    height: 300px;
  }
}

/* || F O O T E R */
.footer {
  background-color: #fff;
  margin: 0 5% 2% 5%;
  border-top: 1px solid;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-color: #52616b;
}

.btn-link {
  color: #52616b;
  text-decoration: none;
  padding: 0 0 20px 0;
  font-size: 0.889rem;
}

.btn-link:active {
  text-decoration: none;
  outline: none;
}

.btn-link:hover {
  text-decoration: none;
  color: #000;
}

.btn-link:focus {
  outline: none;
  text-decoration: none;
  box-shadow: none;
}

.alignments {
  text-align: left;
}

.btn-copyright {
  font-size: 0.702rem;
  font-weight: 300;
  text-align: left;
}

@media (max-width: 992px) {
  .btn-copyright {
    text-align: center;
  }

  .alignments {
    text-align: center;
  }
}
