* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* ή όσο ψηλό είναι το navbar σου */
  }

    /* Footer */
.footer {
    background-color: #343a40;
    position: relative;
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: #fff;
  }
  
  .footer-link {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-link:hover,
  .footer-link.active {
    color: #ffc107;
    font-weight: bold;
    text-decoration: underline;
  }

    .logo {
    width: 250px;
    height: 70px;
    border-radius: 70px; 
    object-fit: cover; /* Καλύπτει το πλαίσιο χωρίς παραμόρφωση */
    object-position: center; /* Εστιάζει στο κέντρο */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Ομαλή μετάβαση */
    cursor: pointer; /* Δείχνει ότι είναι κλικ-άμπλ */
    }

    .logo:hover {
        transform: scale(1.1); /* Ελαφρύ zoom */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Προσθήκη σκιάς */
    }


    .navbar-nav .nav-link {
        color: #fff !important;
    }
    .navbar-nav .nav-link:hover {
        color: #ffc107 !important;
    }
    .navbar-toggler {
        border-color: #ffc107;
    }


    /* Αφαιρεί το περίγραμμα όταν το πατάς */
    .navbar-toggler:focus {
      box-shadow: none;
    } 

    .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .hero-section {
    padding: 20px;
    text-align: center;
  }

  .hero-section img {
    max-width: 80%;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 10px 20px;
  }
}


    /* Form Section */
.form-section {
    padding: 2rem;
    border-radius: 10px;
    margin-top: 4rem;
  }


  /* Form Fields Styling */
.form-label {
    color: rgb(3, 3, 3);
  }
  
  /* Buttons */
  button[type="submit"] {
    width: 100%;
  }

  /* Make the form inputs responsive */
@media (max-width: 768px) {
    .form-section {
      padding: 1rem;
      margin-top: 2rem;
    }
  
    .deadline {
      font-size: 1rem;
    }
  
    .form-label {
      font-size: 0.9rem;
    }
  
    .form-control, .form-select {
      font-size: 0.9rem;
    }
  }

/* Στοιχίζουμε το κείμενο του About μέσα στην εικόνα */
#about {
  height: 100vh;  /* Ορίζουμε ύψος για το τμήμα */
  background: url('https://montana.gr/wp-content/uploads/2020/08/montana-hotel-spa-karpenisi-evritania-2-1024x768.jpg') center/cover no-repeat;
  position: relative;
  color: white;
}

#about .position-absolute {
  background-color: rgba(0, 0, 0, 0.6);  /* Σκοτεινό overlay για αντίθεση */
}

.text-overlay {
  position: relative;
  z-index: 2;  /* Εξασφαλίζουμε ότι το κείμενο θα είναι πάνω από το overlay */
  padding-left: 30px;  /* Δίνουμε λίγο απόσταση από την αριστερή πλευρά */
  max-width: 60%;  /* Περιορίζουμε το πλάτος του κειμένου */
}

.about-text {
  text-align: left;  /* Στοιχίζουμε το κείμενο αριστερά */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);  /* Προσθήκη σκιάς για καλύτερη αντίθεση */
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.about-text p {
  font-size: 1.2rem;
}

#countdown {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffc107;
  text-shadow: 2px 2px 4px #000;
  animation: pulse 2s infinite;
}

/* Optional: pulsing animation */
@keyframes pulse {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.8; transform: scale(1); }
}


.card.h-100 {
  max-width: 280px;
  margin: 0 auto;
  border-radius: 1rem; /* πιο στρογγυλεμένες γωνίες */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.card-body {
  padding: 1rem;
  min-height: 180px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#highlights .carousel-inner .carousel-item img {
  height: 60vh;           /* 30% του ύψους οθόνης */
  object-fit: cover;
}


.blog-content h3 {
  margin-top: 20px;
  color: #333;
}

.blog-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.button {
  background-color: #0088cc;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #005fa3;
}

/* ===== Shared UI/UX enhancements ===== */

/* Consistent section rhythm */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  color: #6c757d;
  font-size: 1.1rem;
}

/* Hero */
.hero-content {
  max-width: 760px;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  max-width: 560px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #f1f1f1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-cta .btn {
  border-radius: 999px;
}

.countdown-label {
  color: #f1f1f1;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Scroll cue at bottom of hero */
.scroll-cue {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  text-decoration: none;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-cue:hover {
  color: #ffc107;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Blog intro */
.blog-intro {
  text-align: center;
  max-width: 760px;
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
}

/* Feature / info cards */
.info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.75rem;
}

.info-card p,
.info-card li {
  color: #555;
  line-height: 1.6;
}

.info-card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.info-card ul li {
  margin-bottom: 0.4rem;
}

.info-card--cta {
  background: linear-gradient(135deg, #fff8e1, #fff);
  border-color: #ffe7a3;
}

/* Carousel controls visibility */
#highlights .carousel-control-prev,
#highlights .carousel-control-next {
  width: 6%;
}

#highlights .carousel-control-prev-icon,
#highlights .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  padding: 1.1rem;
  background-size: 50%;
}

/* Social icons */
.social-icon {
  display: inline-flex;
  transition: transform 0.25s ease;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.1);
}

/* Friendlier form focus state (used on register page) */
.form-control:focus,
.form-select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
