@font-face {
  font-family: 'MyHeadingFont';
  src: url('../fonts/heading-font.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MyBodyFont';
  src: url('../fonts/body-font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Για τον κεντρικό τίτλο Distant Vision */
.brand-title {
  font-family: 'MyHeadingFont', sans-serif !important;
  font-size: 90px !important;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

/* Για όλο το υπόλοιπο κείμενο */
body, .slogan, .option-card p {
  font-family: 'MyBodyFont', sans-serif;
}


:root {
  --bg-dark: #0a0a0a;
  --text-light: #f5f4f0;
  --accent-gold: #c5a059;
  --overlay-color: rgba(10, 10, 10, 0.82);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Background Collage */
.collage-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  filter: grayscale(100%) contrast(120%) brightness(0.7);
  z-index: -2;
  overflow: hidden;
}

.collage-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(27, 27, 27, 0.3) 10%, rgba(10, 10, 10, 0.6) 100%);
  z-index: -1;
}

/* Main Hero */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 1;
  max-width: 800px;
}

.logo-img {
  width: 240px;
  height: 240px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
}

.slogan {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d1d1cf;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Explore Button */
.btn-explore {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--text-light);
  padding: 14px 42px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.btn-explore:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Pop-up Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 90%;
  max-width: 650px;
  padding: 40px 30px;
  position: relative;
  text-align: center;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
}

.close-btn:hover {
  color: var(--text-light);
}

.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.branch-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.option-card {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.option-card:hover {
  border-color: var(--accent-gold);
  background: #252525;
  transform: translateY(-3px);
}

.option-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.option-card p {
  font-size: 0.8rem;
  color: #999;
  line-height: 1.4;
}

/*/* ============================================================
   MOBILE RESPONSIVE FIXES (INDEX / HOME PAGE)
   ============================================================ */
@media (max-width: 768px) {

  /* 1. Αποτροπή οριζόντιου scroll & διόρθωση overflow για modal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    min-height: 100svh;
    padding: 20px;
    align-items: center;
  }

  /* 2. Hero Content */
  .hero-content {
    padding: 10px;
    width: 100%;
  }

  /* 3. Logo resize για οθόνες κινητών */
  .logo-img {
    width: 130px;
    height: 130px;
    margin-bottom: 18px;
  }

  /* 4. Κεντρικός τίτλος προσαρμοσμένος στο viewport */
  .brand-title {
    font-size: clamp(2.2rem, 9vw, 3.4rem) !important;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  /* 5. Slogan */
  .slogan {
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  /* 6. Explore Button */
  .btn-explore {
    padding: 12px 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  /* 7. Modal & Branch Options σε 1 στήλη */
  .modal-card {
    padding: 30px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-title {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .branch-options {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .option-card {
    padding: 20px 15px;
  }
}