/* HERO SECTION */



  .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
    color: #22252A;
}




.hero {
    width: 100%;
    height: 95vh;
    min-height: 450px;

    background-image: url("../images/hero.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-end;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    z-index: 1;
}

.hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 11vw;
  padding-bottom: 12vh;
  max-width: 600px;
  position: relative;
  z-index: 2;

}


.hero-overlay h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 6.5rem;
  font-weight: 700;
  color: #22252A;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.02em;
  line-height: 1.09;
}

.hero-overlay p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.7rem;
    color: #22252A;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
}

/* HERO SECTION */

/* CURATED SECTION */

.curated {
  width: 100%;
  background: #ffffff;
  padding: 100px 0 60px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.curated-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 6vw;
    text-align: center;
  }


  .curated-inner p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin: 0 auto 20px;
    max-width: 900px;
  }

/* CURATED SECTION */

/* CORE SECTION */

.core {
    padding: 80px 10vw;
    background: #f8f7f5;
}



.core-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.core-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.core-card {
    background: #f1efed;
    padding: 28px;
    border-radius: 16px;
}

.core-image {
    width: 100%;
    height: 260px;
    position: relative;
    background-image: url("../images/core.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 16px;   
}

.core-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
  border-radius: 16px;
}

/* CORE SECTION */

/* WHY SECTION */

.why {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

.why-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* TITLE */
.why h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
  position: relative;
  padding-left: 22px;
}

/* custom bullet */
.why-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #22252A;
  font-size: 1.2rem;
}

/* bold part */
.why-list strong {
  font-weight: 600;
  color: #111;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-list li {
    font-size: 1.05rem;
  }
}

/* WHY SECTION */

/* GROWTH SECTION */
.growth {
  width: 100%;
  background: #f7f5f2;
  padding: 70px 0 60px;
}

.growth-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* TITLE */


/* LEAD TEXT */
.growth .lead {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #222;
  max-width: 700px;
  margin-bottom: 60px;
}

/* GRID */
.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}

/* BLOCK */


.growth-block h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.growth-block p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
}

.growth-block {
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.15); /* πιο έντονο */
  }
  
  /* να μην έχει γραμμή το πρώτο */
  .growth-block:first-child {
    border-top: none;
    padding-top: 0;
  }

/* MOBILE */
@media (max-width: 768px) {
  .growth-grid {
    grid-template-columns: 1fr;
  }
}


/* GROWTH SECTION */

/* PARTNERSHIP SECTION */

.partnership {
    width: 100%;
    background: #ffffff;
    padding: 100px 0 100px;
  }
  
  .partnership-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6vw;
  }
  
  /* TITLE */

  .partnership h2 {
    margin-bottom: 80px;
  }

  /* GRID */
  .partnership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 40px;
  }
  
  /* CARD */
  .partnership-card {
    background: #f7f5f2;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.2s ease;
  }
  
  /* HOVER (πολύ subtle) */
  .partnership-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,0,0,0.12);
  }
  
  /* TITLE */
  .partnership-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #111;
  }
  
  /* TEXT */
  .partnership-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .partnership-grid {
      grid-template-columns: 1fr;
    }
  }

  /* CONTACT SECTION */

  .contact {
    width: 100%;
    background: #f7f5f2;
    padding: 100px 0 70px;
    text-align: center;
  }

  .contact-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* TITLE */

  /* TEXT */
  .contact-text {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 25px;
  }

  /* EMAIL (CTA) */
  .contact-email {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    margin-bottom: 30px;
    transition: opacity 0.2s ease;
  }

  .contact-email:hover {
    opacity: 0.6;
    text-decoration: underline;
  }

  /* LOCATION */
  .contact-location {
    font-size: 1rem;
    color: #777;
  }

    /* CONTACT SECTION */


/* FOOTER */

.footer {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 70px 0 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* LEFT */
.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  transform: translateY(8px);

}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.footer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #22252A;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #777;
  max-width: 280px;
  line-height: 1.6;
}

/* RIGHT */
.footer-contact p {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.footer-contact a {
  font-size: 1.05rem;
  color: #111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-contact a:hover {
  opacity: 0.6;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 6vw;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #999;
}


/* MOBILE */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }
}