@font-face {
  font-family: "MyCustomFont";
  src: url("font.otf") format("opentype");
}
body {
  margin: 0;
  /* font-family: "Cormorant", serif; */
  font-family: "MyCustomFont", sans-serif;
}

.navbar {
  top: 0;
  width: 100%;
  background-color: #fff;
  color: #575757;
}

.navbar-nav > li > a {
  color: #2a3583;
}

header {
  position: relative;
  height: 85dvh;
  background: url("images/outside4.png") no-repeat center center/cover;
  color: white;
  text-align: center;
}

.bi-star-fill {
  color: #ffd700;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

header .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

header button {
  background-color: transparent;
  color: white;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 0; /* Αφαιρεί το radius */
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease; /* Ομαλή μετάβαση */
}

header button:hover {
  background-color: white;
  color: #2a3583; /* Αλλάζει το χρώμα των γραμμάτων */
  transform: scale(1.1); /* Κάνει το κουμπί μεγαλύτερο */
}

.floating-button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border: 2px solid black;
  border-radius: 0;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.floating-button:hover {
  color: #2a3583;
  transform: scale(1.1);
}

a {
  all: unset; /* Removes all default styles */
  color: inherit; /* Inherits the text color from the parent */
  text-decoration: none; /* Ensures no underline */
  cursor: pointer; /* Ensures the link looks clickable */
}

.scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  color: white;
}

.scroll-arrow p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.scroll-arrow svg {
  color: white;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease;
}

.scroll-arrow:hover svg {
  transform: scale(1.2);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

section {
  padding: 40px 20px;
  /* text-align: center; */
  margin: auto;
  max-width: 1200px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

section p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fully cover their container without distortion */
}

.fixed-height {
  height: 250px; /* Adjust this height to fit your design */
}

.large-image {
  height: 500px; /* Adjust this height as needed */
}
.gallery {
  text-align: center;
}
.gallery {
  text-align: center;
}

.slick-prev {
  left: 10px; /* Move the arrow 10px from the left edge */
  z-index: 1; /* Ensure the arrow is above the images */
}

.slick-next {
  right: 10px; /* Move the arrow 10px from the right edge */
  z-index: 1; /* Ensure the arrow is above the images */
}

/* Optional: Style the arrows */
.slick-prev:before,
.slick-next:before {
  color: #fff; /* Arrow color */
  font-size: 24px; /* Arrow size */
}

footer {
  background: #fef9f2;
  color: black;
  padding: 20px;
  text-align: center;
}

footer ul {
  list-style-type: none; /* Removes the bullets */
  padding-left: 0; /* Optional: Removes default padding */
}

footer ul li a {
  color: #2a3583;
  text-decoration: none;
}

footer ul li a:hover {
  text-decoration: underline;
}
