/* -----------------------------------------------------
   VARIABLES & GLOBAL RESET
----------------------------------------------------- */
:root {
  --red: #b00020;
  --dark-red: #7a0015;
  --gold: #f4c542;
  --green: #0a7d3b;
  --bg: #f5f5f8;
  --text: #222;
  --white: #fff;
  --shadow-soft: 0 8px 20px rgba(0,0,0,0.08);
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* -----------------------------------------------------
   TYPOGRAPHY / SECTIONS
----------------------------------------------------- */
.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.8rem;
}

/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.btn-primary {
  background: var(--gold);
  color: #3b1700;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  color: var(--white);
}

/* -----------------------------------------------------
   HEADER / NAV
----------------------------------------------------- */
.site-header {
  background: linear-gradient(90deg, var(--dark-red), var(--red));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

/* main nav */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.1rem;
  font-weight: 600;
  color: var(--white);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* mobile toggle */
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}


/* -----------------------------------------------------
   HERO / LARGE IMAGE SLIDER
----------------------------------------------------- */
/* -----------------------------------------------------
   HERO / LARGE IMAGE SLIDER
----------------------------------------------------- */
#hero {
  background: none;
  padding: 0;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 700px;  /* ρυθμίζεις εσύ */
  overflow: hidden;
}

/* κάθε slide */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;  /* ώστε να μην φαίνεται κενό */
}

.slide.active {
  opacity: 1;
}

/* ΤΟ ΣΗΜΑΝΤΙΚΟ: η εικόνα */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ΔΕΝ κόβει τίποτα */
  display: block;
}


/* indicators κάτω στο κέντρο */
.slide-indicators {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.3);
  cursor: pointer;
}

.indicator.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 22px;
}

/* responsive ύψος για κινητά */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .hero-slideshow {
    height: 240px;
  }
}


/* -----------------------------------------------------
   WELCOME
----------------------------------------------------- */
#welcome {
  padding: 2.8rem 0 2.2rem;
}

.welcome-layout {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.welcome-image,
.welcome-text {
  flex: 1;
  min-width: 260px;
}

#welcome ul {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
}

#welcome li {
  margin-bottom: 0.25rem;
}

/* -----------------------------------------------------
   WORKSHOPS
----------------------------------------------------- */
#workshops {
  padding: 2.8rem 0 2.6rem;
  background: linear-gradient(180deg, #f9f3ff, #ffe9f0);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.workshop-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.workshop-thumb {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.workshop-body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.workshop-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 700;
}

.workshop-title {
  font-size: 1.02rem;
  font-weight: 700;
}

.workshop-meta {
  font-size: 0.84rem;
  color: #555;
}

.workshop-footer {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge-pill {
  display: inline-flex;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(10,125,59,0.08);
  border: 1px solid rgba(10,125,59,0.3);
  font-size: 0.78rem;
  color: var(--green);
}

.badge-pill a {
  color: inherit;
  text-decoration: none;
}

/* -----------------------------------------------------
   SCHEDULE
----------------------------------------------------- */
#schedule {
  padding: 2.8rem 0 2.6rem;
  background: #fffdf6;
}

.schedule-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.schedule-day {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.3rem 1.4rem;
}

.schedule-day-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.schedule-day-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.9rem;
}

.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.schedule-list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.5rem 0.4rem;
  border-radius: 10px;
  background: rgba(244, 197, 66, 0.08);
}

.schedule-time {
  font-weight: 700;
  color: var(--dark-red);
  font-size: 0.88rem;
  white-space: nowrap;
}

.schedule-info {
  font-size: 0.9rem;
}

.schedule-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.schedule-desc {
  color: #555;
}

/* -----------------------------------------------------
   SPACES
----------------------------------------------------- */
#space {
  padding: 2.8rem 0 2.6rem;
  background: linear-gradient(180deg, #f9f3ff, #ffe9f0);
}
#space td{
    padding: 15px;
}

/* -----------------------------------------------------
   MAP
----------------------------------------------------- */
#map {
  padding: 2.8rem 0 2.6rem;
  background: #fffdf6;
}

/* -----------------------------------------------------
   GALLERY
----------------------------------------------------- */
#gallery {
  padding: 2.8rem 0 2.6rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.35rem 0.6rem;
  font-size: 0.78rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  color: #fff;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.site-footer {
  background: #111111;
  color: #eeeeee;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-right {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: #f4c542;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 900px) {
  .slide {
    flex-direction: column;
  }
  .slide-image {
    flex: none;
    height: 220px;
  }
  .slide-content {
    padding: 1.4rem 1.6rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--dark-red);
    display: none;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 0.6rem 1.2rem 0.9rem;
    gap: 0.7rem;
  }
  .nav-container {
    position: relative;
  }
  .main-nav.open {
    display: block;
  }

  .welcome-layout {
    flex-direction: column;
  }

  .schedule-list li {
    grid-template-columns: 1fr;
  }
  .schedule-time {
    margin-bottom: 0.15rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.4rem;
  }
  .slide-title {
    font-size: 1.45rem;
  }
}
