@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

/* =====================================================
   1. VARIABLES & RESET
===================================================== */

:root {
  --bg: #f7f2ea;
  --cream: #fbf8f3;
  --ink: #1e1d1b;
  --red: #a3342d;
  --line: #d9d1c7;
  --muted: #756f68;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}


/* =====================================================
   2. HEADER
===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 76px;
  padding: 0 5vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(247, 242, 234, 0.96);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.55;
}

.menu-toggle {
  display: none;

  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 6px 0;

  background: var(--ink);
}


/* =====================================================
   3. HERO
===================================================== */

.hero {
  position: relative;

  min-height: calc(100vh - 76px);

  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-copy {
  min-height: calc(100vh - 76px);

  padding: 9vw 7vw 8vw 10vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 20px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;

  color: var(--red);
}

.hero h1 {
  margin: 0;

  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;

  font-weight: 700;
}

.hero h1 em {
  font-family: "Playfair Display", serif;
  font-weight: 500;

  color: var(--red);
}

.hero-text {
  max-width: 420px;

  margin: 28px 0 0;

  font-size: 14px;
  line-height: 1.8;

  color: var(--muted);
}


/* =====================================================
   4. HERO SLIDER
===================================================== */

.hero-image,
.hero-slider {
  position: relative;

  width: 100%;
  height: calc(100vh - 76px);
  min-height: 600px;

  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  opacity: 0;

  transition: opacity 1.5s ease-in-out;
}

.hero-slide:first-child {
  background-image: url("assets/hero-1.jpg");
}

.hero-slide:nth-child(2) {
  background-image: url("assets/hero-2.jpg");
}

.hero-slide.active {
  opacity: 1;
}

.photo-label {
  position: absolute;
  z-index: 10;

  left: 30px;
  bottom: 28px;

  color: white;

  font-size: 10px;
  letter-spacing: 0.25em;
}

.hero-dots {
  position: absolute;
  z-index: 10;

  right: 28px;
  bottom: 28px;

  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;

  border: 1px solid white;
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  transition: background 0.3s ease;
}

.hero-dot.active {
  background: white;
}

.scroll-hint {
  position: absolute;
  z-index: 20;

  left: 10vw;
  bottom: 24px;

  font-size: 9px;
  letter-spacing: 0.18em;

  color: var(--muted);
}


/* =====================================================
   5. GENERAL SECTIONS
===================================================== */

.section {
  padding: 110px 7vw;
}

.section h2 {
  margin: 0;

  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;

  font-weight: 600;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 50px;
}


/* =====================================================
   6. VIBES
===================================================== */

.vibe-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px;
}

.vibe-card {
  min-width: 0;

  display: flex;
  flex-direction: column;

  background: var(--cream);

  border: 1px solid var(--line);

  overflow: hidden;

  transition: transform 0.3s ease;
}

.vibe-card:hover {
  transform: translateY(-5px);
}

.card-image {
  position: relative;

  width: 100%;
  height: 270px;

  overflow: hidden;

  background-color: #ded6cc;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 20px 20px 24px;
}

.card-content > span {
  display: block;

  margin-bottom: 10px;

  font-size: 9px;
  font-weight: 700;

  color: var(--red);
}

.card-content h3 {
  margin: 0 0 12px;

  font-size: 21px;
  line-height: 1.05;

  letter-spacing: -0.035em;
}

.card-content h3 i {
  font-family: "Playfair Display", serif;
  font-weight: 500;

  color: var(--red);
}

.card-content p {
  margin: 0;

  font-size: 11px;
  line-height: 1.7;

  color: var(--muted);
}


/* =====================================================
   7. MOVE & FLOW SLIDER
===================================================== */

.move-slider {
  position: relative;

  width: 100%;
  height: 270px;

  overflow: hidden;
}

.move-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  opacity: 0;

  transition: opacity 1.5s ease-in-out;
}

.move-slide:first-child {
  background-image: url("assets/move1.jpg");
}

.move-slide:nth-child(2) {
  background-image: url("assets/move2.jpg");
}

.move-slide.active {
  opacity: 1;
}


/* =====================================================
   8. OTHER VIBE PHOTOS
===================================================== */

.photo-traditional {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.08)
    ),
    url("assets/traditonal.jpg");

  background-size: cover;
  background-position: center;
}

.photo-tango {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.08)
    ),
    url("assets/tango.jpg");

  background-size: cover;
  background-position: center;
}

/* Δεν υπάρχει αυτή τη στιγμή zumba.jpg στον φάκελο */
.photo-zumba {
  background:
    linear-gradient(
      135deg,
      #f3c87d,
      #e58d70
    );
}


/* =====================================================
   9. PROGRAM
===================================================== */

.program {
  border-top: 1px solid var(--line);
}

.program-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin-bottom: 55px;
}

.period {
  text-align: right;

  font-size: 10px;
  line-height: 1.8;

  letter-spacing: 0.12em;

  color: var(--muted);
}

.period strong {
  color: var(--red);
}

.schedule-row,
.schedule-block {
  display: grid;

  grid-template-columns: 110px repeat(5, minmax(0, 1fr));
}

.schedule-head > div {
  padding: 16px 8px;

  border-bottom: 1px solid var(--line);

  text-align: center;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.07em;
}

.schedule-block {
  min-height: 250px;

  border-bottom: 1px solid var(--line);
}

.schedule-block.afternoon {
  min-height: 540px;
}

.period-label {
  padding: 28px 10px;

  border-right: 1px solid var(--line);

  text-align: center;

  font-size: 11px;
  line-height: 2;

  color: var(--red);
}

.afternoon .period-label {
  color: #536577;
}

.day-stack {
  padding: 16px 8px;

  border-right: 1px solid var(--line);

  display: flex;
  flex-direction: column;

  gap: 7px;
}

.class-card {
  min-height: 52px;

  padding: 8px;

  border-radius: 8px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 3px;

  text-align: center;
}

.class-card b {
  font-size: 9px;
  letter-spacing: 0.05em;
}

.class-card span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}


/* =====================================================
   10. CLASS COLORS
===================================================== */

.class-card.move,
.mobile-item.move {
  background: #f4dfdb;
}

.class-card.orth,
.mobile-item.orth {
  background: #e1e6eb;
}

.class-card.traditional,
.mobile-item.traditional {
  background: #e9e4de;
}

.class-card.tango,
.mobile-item.tango {
  background: #eadbd8;
}

.class-card.yoga,
.mobile-item.yoga {
  background: #e3dceb;
}

.class-card.zumba,
.mobile-item.zumba {
  background: #f2e1b8;
}

.class-card.creative,
.mobile-item.creative {
  background: #e0e6da;
}


/* =====================================================
   11. MOBILE SCHEDULE
===================================================== */

.mobile-schedule {
  display: none;
}

.mobile-day {
  background: var(--cream);

  border: 1px solid var(--line);

  padding: 20px;
}

.mobile-day h3 {
  margin: 0 0 16px;

  font-size: 12px;

  letter-spacing: 0.1em;
}

.mobile-group {
  margin-top: 18px;
}

.mobile-group > strong {
  display: block;

  margin-bottom: 8px;

  font-size: 9px;
  letter-spacing: 0.14em;

  color: var(--red);
}

.mobile-group.af > strong {
  color: #536577;
}

.mobile-items {
  display: grid;
  gap: 7px;
}

.mobile-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  padding: 11px 10px;

  border-radius: 8px;

  font-size: 10px;
  font-weight: 600;
}

.mobile-item b {
  font-size: 9px;
}


/* =====================================================
   12. CONTACT
===================================================== */

.contact {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 70px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;

  gap: 14px;
}

.contact-info > a {
  font-size: 20px;

  letter-spacing: -0.035em;
}

.contact-info p {
  margin: 0;

  font-size: 12px;

  color: var(--muted);
}

.socials {
  display: flex;

  gap: 20px;

  margin-top: 25px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.1em;

  color: var(--red);
}


/* =====================================================
   13. FOOTER
===================================================== */

footer {
  padding: 22px 5vw;

  border-top: 1px solid var(--line);

  display: flex;
  justify-content: space-between;

  gap: 20px;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.1em;

  color: var(--muted);
}


/* =====================================================
   14. TABLET & MOBILE
===================================================== */

@media (max-width: 900px) {

  .site-header {
    height: 68px;
  }

  .nav {
    display: none;
  }

  .nav.open {
    position: absolute;

    top: 68px;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    gap: 20px;

    padding: 25px 6vw;

    background: var(--bg);

    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }


  /* HERO */

  .hero {
    min-height: auto;

    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    min-height: auto;

    padding: 75px 7vw 55px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-image,
  .hero-slider {
    display: block;

    width: 100%;
    height: 55vh;
    min-height: 380px;
  }

  .hero-slide {
    display: block;

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
  }

  .scroll-hint {
    display: none;
  }


  /* SECTIONS */

  .section {
    padding: 80px 6vw;
  }

  .section h2 {
    font-size: 46px;
  }


  /* VIBES */

  .vibe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-image,
  .move-slider {
    height: 260px;
    min-height: 260px;
  }

  .move-slider {
    position: relative;
    overflow: hidden;
  }

  .move-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
  }


  /* PROGRAM */

  .program-head {
    display: block;
  }

  .period {
    margin-top: 25px;

    text-align: left;
  }

  .desktop-schedule {
    display: none;
  }

  .mobile-schedule {
    display: grid;

    gap: 14px;
  }


  /* CONTACT */

  .contact {
    display: block;
  }

  .contact-info {
    margin-top: 55px;
  }


  /* FOOTER */

  footer {
    flex-direction: column;

    gap: 10px;
  }

}


/* =====================================================
   15. SMALL MOBILE
===================================================== */

@media (max-width: 560px) {

  .site-header {
    padding: 0 5vw;
  }

  .brand {
    font-size: 10px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }


  /* HERO */

  .hero-copy {
    padding: 65px 7vw 48px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 13px;
    line-height: 1.75;
  }

  .hero-image,
  .hero-slider {
    height: 420px;
    min-height: 420px;
  }

  .photo-label {
    left: 20px;
    bottom: 20px;
  }

  .hero-dots {
    right: 20px;
    bottom: 20px;
  }


  /* SECTIONS */

  .section {
    padding: 65px 5vw;
  }

  .section h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .section-intro {
    margin-bottom: 35px;
  }


  /* VIBES */

  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .vibe-card {
    width: 100%;
  }

  .card-image,
  .move-slider {
    width: 100%;
    height: 250px;
    min-height: 250px;
  }

  .move-slide {
    width: 100%;
    height: 100%;
  }

  .card-content {
    padding: 18px 20px 22px;
  }

  .card-content h3 {
    font-size: 22px;
  }


  /* CONTACT */

  .contact-info > a {
    font-size: 16px;
  }

  .socials {
    flex-wrap: wrap;
  }

}