/* =========================================
   ΠΟΣΕΗ – style.css
   Aesthetic: Professional / Refined / Greek
   ========================================= */

:root {
  --blue-deep:   #1a4b8c;
  --blue-mid:    #2468c8;
  --blue-light:  #4a90d9;
  --orange:      #e8621a;
  --orange-soft: #f07c3a;
  --grey-dark:   #1c1c2e;
  --grey-mid:    #4a4a5e;
  --grey-light:  #8a8aa0;
  --cream:       #f7f6f2;
  --white:       #ffffff;
  --card-bg:     #ffffff;
  --shadow-card: 0 4px 28px rgba(26, 75, 140, 0.10);
  --shadow-hover: 0 10px 40px rgba(26, 75, 140, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background-color: var(--cream);
  color: var(--grey-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Background decorative lines ── */
.bg-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(36, 104, 200, 0.04) 120px
    );
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, var(--blue-deep) 0%, #0f2d5e 60%, #0a1f42 100%);
  padding: 64px 24px 56px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--orange), var(--blue-mid));
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: 20px;
  padding: 24px 36px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.28);
  animation: logoReveal 0.8s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes logoReveal {
  from { opacity: 0; transform: translateY(-24px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.logo {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  margin: 28px auto 20px;
  border-radius: 2px;
  animation: fadeIn 1s 0.4s both;
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.82rem, 2vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  line-height: 1.6;
  animation: fadeIn 1s 0.6s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MAIN CONTENT ── */
.content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

/* ── INTRO SECTION ── */
.intro-section {
  margin-bottom: 52px;
}

.intro-text {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 300;
  color: var(--grey-mid);
  max-width: 740px;
  border-left: 3px solid var(--blue-mid);
  padding-left: 20px;
  font-style: italic;
}

/* ── GOALS INTRO ── */
.goals-intro {
  margin-bottom: 52px;
}

.goals-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--grey-dark);
  margin-bottom: 24px;
  max-width: 740px;
}

/* ── PRINCIPLES LIST ── */
.principles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px;
}

.principles-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.97rem;
  color: var(--grey-dark);
}

.principles-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--orange));
  border-radius: 1px;
}

/* ── GOALS GRID ── */
.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

/* ── GOAL CARD ── */
.goal-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--blue-mid);
  display: flex;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.goal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.goal-card--wide {
  grid-column: 1 / -1;
  border-top-color: var(--orange);
}

.goal-number {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue-light);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.goal-card--wide .goal-number {
  color: var(--orange);
}

.goal-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
  margin-bottom: 12px;
  line-height: 1.4;
}

.goal-card--wide .goal-content h3 {
  color: var(--orange);
}

.goal-content p,
.goal-content li {
  font-size: 0.94rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

.goal-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.goal-content ul li {
  padding-left: 20px;
  position: relative;
}

.goal-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
  top: 2px;
}

/* ── ANIMATE IN ── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(26, 75, 140, 0.12);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--grey-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .goals-grid {
    grid-template-columns: 1fr;
  }
  .goal-card--wide {
    grid-column: 1;
  }
  .goal-card {
    flex-direction: column;
    gap: 8px;
  }
  .goal-number {
    font-size: 2rem;
  }
}
