/* ==========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================== */

:root {
  --ink: #111214;
  --muted: #6d7075;
  --paper: #ffffff;
  --white: #fff;
  --line: rgba(17, 18, 20, 0.14);
  --accent: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --display: "Space Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}


/* ==========================================================================
   2. NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(77, 77, 77, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 17px var(--display);
  letter-spacing: 0.24em;
  color: #ffffff
}

.brand-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-mark {
  width: 25px;
  height: 25px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.brand-mark:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
}

.brand-mark:after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 7px;
  background: var(--paper);
}

.brand-mark i {
  display: none;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.nav-links a {
  color: var(--accent); /* Χρυσό χρώμα (#d4af37) */
  opacity: 0.9;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.nav-links a:hover {
  opacity: 1;
  color: #ffd900; /* Γίνεται λευκό στο hover για ωραίο εφέ */
}

.nav-cta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--accent); /* Χρυσή γραμμή */
  padding-bottom: 5px;
  color: var(--accent); /* Χρυσά γράμματα */
}

.nav-cta span,
.button span,
.email span {
  margin-left: 12px;
}

.menu {
  display: none;
  background: none;
  border: 0;
}


/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  position: relative;
  padding: 150px 5vw 50px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  overflow: hidden;
  
  /* Αλλαγή του γενικού χρώματος γραμματοσειράς σε λευκό */
  color: #ffffff; 
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: url("background.jpg");
  
  /* Προσαρμόζει αυτόματα την εικόνα χωρίς να την παραμορφώνει */
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  
  /* Αφαιρέσαμε το mask-image και το opacity */
  z-index: 0; 
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1 {
  /* ORIGINAL: font: 500 clamp(60px, 8.2vw, 135px) / 0.82 var(--display); */
  
  /* UPDATED (Smaller scale): */
  font: 500 clamp(40px, 5.5vw, 85px) / 0.85 var(--display);
  letter-spacing: -0.05em;
  margin: 24px 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6), 0 0 25px rgba(255, 255, 255, 0.3), 0 0 45px rgba(255, 255, 255, 0.15);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation: subtleDrift 7s ease-in-out infinite;
}

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

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

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 470px;
  color: #5e6165;
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid var(--ink);
  transition: 0.3s;
}

/* Base state for Primary Button */
.button.primary {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Hover state: Gold background with dark text for legibility */
.button.primary:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #111214;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
} 

.button.ghost {
  border-color: var(--line);
}

.button.ghost:hover {
  border-color: var(--ink);
}

/* Hero Orbit & Decorative Elements */
.hero-orbit {
  height: 560px;
  width: 560px;
  position: relative;
  justify-self: end;
  z-index: 1;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(17, 18, 20, 0.23);
  border-radius: 50%;
  inset: 8%;
}

.ring-2 {
  inset: 23%;
  border-style: dashed;
  animation: spin 22s linear infinite;
}

.center-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--ink);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 25px 70px rgba(255, 255, 255, 0.18);
}

.center-node-img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  animation: seamlessSpin 16s linear infinite;
  will-change: transform;
}

@keyframes seamlessSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.center-node span {
  font: 600 18px var(--display);
  letter-spacing: 0.22em;
}

.center-node small {
  margin-top: 7px;
  color: #aaa;
  letter-spacing: 0.18em;
}

.orbit-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.dot-1 {
  top: 12%;
  left: 50%;
}

.dot-2 {
  bottom: 20%;
  right: 15%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}

.orb-a {
  width: 300px;
  height: 300px;
  background: #d8c7a7;
  right: 8%;
  top: 25%;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: #d7c9c9;
  right: 32%;
  bottom: 5%;
}

.hero-bottom {
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 32px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}


/* ==========================================================================
   4. CONTENT SECTIONS & MANIFESTO
   ========================================================================== */

.section {
  padding: 150px 5vw;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.manifesto {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 5vw;
  border-top: 1px solid var(--line);
}

.manifesto h2,
.about h2,
.contact h2 {
  font: 500 clamp(55px, 7vw, 105px) / 0.9 var(--display);
  letter-spacing: -0.065em;
  margin: 0 0 30px;
}

.manifesto h2 span {
  font-family: var(--serif);
  font-weight: 400;
}

.manifesto > div:nth-child(2) > p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 80px;
}

.feature-grid article {
  padding: 25px 22px 0 0;
  border-right: 1px solid var(--line);
}

.feature-grid article:not(:first-child) {
  padding-left: 22px;
}

.feature-grid b {
  font-size: 9px;
  color: var(--accent);
}

.feature-grid h3 {
  font: 500 25px var(--display);
  margin: 32px 0 10px;
}

.feature-grid p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}


/* ==========================================================================
   5. EVENTS SECTION
   ========================================================================== */

.events {
  border-top: 1px solid var(--line);
  background: #eceae5;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 55px;
}

.section-head p {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.section-head h2 {
  color: #ffffff; 
}

.event-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 650px;
  background: #111;
  color: #fff;
}

.event-visual {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 58%, #5a5349 0%, #252525 23%, #111 60%);
}

.event-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
}

.event-halo {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  left: 19%;
  top: 10%;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.08);
}

.event-booth {
  position: absolute;
  z-index: 2;
  width: 240px;
  height: 90px;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  letter-spacing: 0.22em;
  font: 600 15px var(--display);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(5px);
}

.event-booth small {
  color: var(--accent);
  font-size: 9px;
}

.event-crowd {
  position: absolute;
  z-index: 1;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 35%;
  background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.2), #080808 70%);
  filter: blur(4px);
}

.event-info {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-number {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #999;
}

.event-info h2 {
  font: 500 clamp(55px, 7vw, 95px) / 0.85 var(--display);
  letter-spacing: -0.07em;
  margin: 25px 0 50px;
}

.event-info h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.event-meta {
  border-top: 1px solid #333;
  margin-bottom: 45px;
}

.event-meta div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding: 14px 0;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.event-meta span {
  color: #777;
}


/* ==========================================================================
   6. STATEMENT & ABOUT SECTIONS
   ========================================================================== */

.statement {
  min-height: 80vh;
  background: #101112;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement p {
  font: 500 clamp(55px, 8vw, 130px) / 0.84 var(--display);
  letter-spacing: -0.07em;
  position: relative;
  z-index: 2;
}

.statement strong {
  font-family: var(--serif);
  font-weight: 400;
}

.statement-orbit {
  position: absolute;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(183, 155, 107, 0.08);
}

.about {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 5vw;
  border-bottom: 1px solid var(--line);
}

.about-copy {
  max-width: 900px;
}

.about-copy .large {
  font: 400 clamp(32px, 4vw, 60px) / 1.05 var(--display);
  letter-spacing: -0.045em;
  margin: 0 0 55px;
}

.about-copy .large em {
  font-family: var(--serif);
}

.about-copy > p:last-child {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
}


/* ==========================================================================
   7. GALLERY SECTION
   ========================================================================== */

.gallery {
  padding-top: 110px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 320px 480px;
  gap: 12px;
}

.tile {
  position: relative;
  overflow: hidden;
  background: #d7d5ce;
}

.tile:before {
  content: "";
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(17, 18, 20, 0.35);
  border-radius: 50%;
  left: 22%;
  top: 20%;
  box-shadow: 0 0 70px rgba(183, 155, 107, 0.18);
}

.tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.5));
}

.tile span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.tile-2 {
  background: #111;
  color: #fff;
}

.tile-2:before {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.08);
}

.tile-3 {
  background: linear-gradient(135deg, #cfc7b8, #ebe8e0);
}

.tile-4 {
  background: #e3e5e6;
}

.tile-4:before {
  width: 30%;
  left: 35%;
  top: 28%;
}


/* ==========================================================================
   8. CONTACT & FOOTER
   ========================================================================== */

.contact {
  background: #e8e5dd;
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 5vw;
}

.contact h2 {
  margin: 30px 0 60px;
}

.email {
  font: 500 clamp(20px, 3vw, 40px) var(--display);
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
  display: inline-flex;
}

footer {
  padding: 30px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background: #111;
  color: #fff;
}

footer p {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.17em;
  color: #777;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #aaa;
}

.contact > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;    /* Centers items horizontally */
  text-align: center;      /* Centers heading text */
}

/* 2. Adjust Eyebrow spacing if needed */
.contact .eyebrow {
  justify-content: center;
}

/* 3. Center the social links row */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the icons relative to each other */
  gap: 24px;
  margin-top: 32px;
  width: 100%;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon {
  width: 38px;
  height: 38px;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 0.75;
}

/* ==========================================
   PACKAGES / PRICING CARDS
   ========================================== */

/* Section Title Centering */
.section-head.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

/* Subtle glowing effect on the gold accent text */
.section-head.text-center h2 span {
  color: #d4af37; /* Base gold color */
  text-shadow: 
    0 0 12px rgba(212, 175, 55, 0.4),
    0 0 24px rgba(212, 175, 55, 0.2);
  transition: text-shadow 0.3s ease;
}

/* Optional: Subtle extra glow on hover */
.section-head.text-center h2 span:hover {
  text-shadow: 
    0 0 16px rgba(212, 175, 55, 0.6),
    0 0 32px rgba(212, 175, 55, 0.35);
}

/* Grid Layout */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Card */
.package-card {
  position: relative;
  background: #141518;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

/* Highlighted "Most Popular" Card */
.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.12);
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 32px;
  background: var(--accent);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card Elements */
.card-icon {
  font-size: 32px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.package-card h3 {
  font: 600 26px var(--display);
  margin: 0 0 10px;
}

.price {
  font: 700 36px var(--display);
  color: var(--accent);
  margin-bottom: 12px;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
}

.card-desc {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Feature List */
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-features li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #dddddd;
}

.package-features li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1;
  top: -1px;
}

/* Button Adjustments */
.button.width-100 {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* Mobile Responsive Layout */
@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure the section acts as the positioning anchor */
.events.section {
  position: relative;
  overflow: hidden;
  background: #0d0e10; /* Dark premium background */
}

/* Background Canvas positioning */
#sparks-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicks to pass through to cards/buttons */
  z-index: 0;
}

/* Ensure content stays layered on top of particles */
.events .section-head,
.events .packages-grid {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   9. ANIMATIONS & INTERACTION UTILITIES
   ========================================================================== */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.cursor-glow {
  position: fixed;
  z-index: 30;
  pointer-events: none;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 155, 107, 0.10), transparent 65%);
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
  mix-blend-mode: multiply;
}


/* ==========================================================================
   10. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

/* Tablet & Smaller Screens (max-width: 900px) */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .menu span {
    width: 24px;
    height: 1px;
    background: var(--ink);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

  .hero-orbit {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -210px;
    top: 45%;
    opacity: 0.4;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-bottom span:nth-child(2),
  .hero-bottom span:nth-child(3) {
    display: none;
  }

  .manifesto,
  .about,
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0 !important;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-visual {
    min-height: 480px;
  }

  .event-info {
    padding: 45px 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 280px);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  footer p {
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }

  .cursor-glow {
    display: none;
  }
}

/* Mobile Screens (max-width: 560px) */
@media (max-width: 560px) {
  .nav {
    height: 68px;
    padding: 0 20px;
  }

  .section {
    padding: 90px 20px;
  }

  .hero {
    padding: 110px 20px 40px;
    min-height: 900px;
  }

  .hero-bottom {
    left: 20px;
    right: 20px;
  }

  .hero-bottom span:nth-child(4) {
    margin-left: auto;
  }

  .hero-orbit {
    width: 400px;
    height: 400px;
    right: -190px;
    top: 50%;
  }

  h1 {
    font-size: 58px;
  }

  .hero-text {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .event-info h2 {
    font-size: 65px;
  }

  .statement {
    min-height: 70vh;
  }

  .statement p {
    font-size: 60px;
  }

  .gallery-grid {
    grid-template-rows: repeat(4, 230px);
  }
}