body {
  margin: 0;
  font-family: Arial;
  background: #000;
  color: white;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

nav a {
  color: gold;
  margin: 0 10px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: radial-gradient(circle, #1a1a1a, #000);
}

.center {
  text-align: center;
  z-index: 2;
}

.logo-main {
  width: 400px;
  filter: drop-shadow(0 0 20px gold);
}

.center h1 {
  font-size: 50px;
  color: gold;
}

.btn {
  background: gold;
  border: none;
  padding: 12px 30px;
  border-radius: 20px;
  cursor: pointer;
}

/* COFFEE */
.coffee {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
}

.left { left: 10%; }
.right { right: 10%; }

.coffee img {
  width: 250px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  text-align: center;
}

/* FEATURES */
.features {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.box {
  max-width: 300px;
}

.box img {
  width: 100%;
  border-radius: 10px;
}

/* MAP */
iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  padding: 20px;
  background: #000;
}

.smoke {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}

.smoke span {
  position: absolute;
  width: 8px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: smoke 5s linear infinite;
}

.smoke span:nth-child(1) { left: -20px; animation-delay: 0s; }
.smoke span:nth-child(2) { left: 0px; animation-delay: 1s; }
.smoke span:nth-child(3) { left: 20px; animation-delay: 2s; }
.smoke span:nth-child(4) { left: 40px; animation-delay: 3s; }
.smoke span:nth-child(5) { left: 60px; animation-delay: 4s; }

@keyframes smoke {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-200px) scale(2);
    opacity: 0;
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);

  z-index: 999;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.logo span {
  color: gold;
}

/* NAV LINKS */
nav a {
  position: relative;
  margin-left: 25px;
  text-decoration: none;
  color: gold;
  font-size: 16px;
  transition: 0.3s;
}

/* HOVER GLOW */
nav a:hover {
  color: white;
  text-shadow: 0 0 10px gold;
}

/* UNDERLINE ANIMATION */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: gold;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
nav a.active {
  color: white;
}

/* MOBILE */
@media (max-width: 768px) {
  nav {
    display: none;
  }
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo span {
  color: gold;
  text-shadow: 0 0 10px gold;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, gold, transparent);
  opacity: 0.4;
}

nav a {
  position: relative;
  margin-left: 30px;
  font-size: 15px;
  letter-spacing: 1px;
}

/* πιο smooth hover */
nav a:hover {
  color: #fff;
  text-shadow: 0 0 15px gold;
}

nav {
  margin-right: 40px;
}
nav a {
  margin-left: 20px;
}
.navbar {
  padding: 20px 60px; /* πριν είχες 80px */
}
.navbar {
  box-shadow: 0 10px 30px rgba(255,215,0,0.05);
	
}

.navbar {
  padding: 20px 80px;
}

.logo:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.navbar {
  padding: 20px 60px;
  max-width: 1800px;
  margin: auto;
}

header {
  width: 100%;
}

.features {
  padding: 100px 20px;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: gold;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.card {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  transition: 0.4s;
  border: 1px solid rgba(255,215,0,0.2);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255,215,0,0.2);
}

/* TEXT */
.card h3 {
  color: gold;
  margin-bottom: 10px;
}

.card p {
  opacity: 0.7;
  margin-bottom: 20px;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.experience {
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle, #111, #000);
}

/* CONTAINER */
.exp-container {
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.experience h2 {
  font-size: 36px;
  color: gold;
  margin-bottom: 15px;
}

/* SUBTITLE */
.subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.desc {
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BADGES */
.badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.badges span {
  background: #111;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,215,0,0.2);
  transition: 0.3s;
}

.badges span:hover {
  background: gold;
  color: black;
}
.experience h2 {
  text-shadow: 0 0 15px rgba(255,215,0,0.3);
}

.experience {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a, #000);
  overflow: hidden;
}

/* GOLD LINES */
.lux-line {
  width: 200px;
  height: 1px;
  margin: 40px auto;
  background: linear-gradient(to right, transparent, gold, transparent);
  opacity: 0.5;
}

/* LIGHT GLOW BACKGROUND */
.experience::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

/* TITLE */
.experience h2 {
  font-size: 38px;
  color: gold;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
  margin-bottom: 15px;
}

/* SUBTITLE */
.subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* TEXT */
.desc {
  max-width: 600px;
  margin: auto;
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* BADGES */
.badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badges span {
  padding: 12px 25px;
  border-radius: 30px;
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

/* HOVER EFFECT */
.badges span:hover {
  background: gold;
  color: black;
  transform: translateY(-5px);
  box-shadow: 0 0 20px gold;
}

/* FLOAT ANIMATION */
.badges span {
  animation: floatBadge 4s ease-in-out infinite;
}

.badges span:nth-child(2) {
  animation-delay: 1s;
}

.badges span:nth-child(3) {
  animation-delay: 2s;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.place {
  padding: 100px 20px;
  text-align: center;
}

.place-gallery {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.place-gallery img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.place-gallery img:hover {
  transform: scale(1.05);
}

.footer {
  background: #000;
  padding: 60px 20px 20px;
  border-top: 1px solid rgba(255,215,0,0.2);
}

/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* COLUMNS */
.footer-col {
  flex: 1;
  margin: 10px;
}

.footer-col h3,
.footer-col h4 {
  color: gold;
  margin-bottom: 10px;
}

.footer-col p {
  opacity: 0.7;
  margin: 5px 0;
}

/* SOCIAL ICONS */
.social img {
  width: 30px;
  margin-right: 10px;
  transition: 0.3s;
}

.social img:hover {
  transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  opacity: 0.5;
  font-size: 14px;
}

.social img {
  width: 35px;
  filter: drop-shadow(0 0 10px gold);
  transition: 0.3s;
}

.social img:hover {
  transform: scale(1.2);
}

.social img {
  width: 35px;
  filter: drop-shadow(0 0 10px gold);
  transition: 0.3s;
}

.social img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px gold);
}

.about-lux {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a, #000);
  overflow: hidden;
}

/* GLOW BACKGROUND */
.about-lux::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.08), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

/* CONTAINER */
.about-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.about-lux h2 {
  font-size: 34px;
  color: gold;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
  margin-bottom: 20px;
}

/* TEXT */
.about-text {
  font-size: 17px;
  opacity: 0.7;
  line-height: 1.6;
}

/* LUX LINE */
.about-lux::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, gold, transparent);
  margin: 30px auto 0;
  opacity: 0.5;
}

.about-lux {
  animation: fadeUp 1s ease;
}

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

.place-lux {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a, #000);
  overflow: hidden;
}

/* GLOW BACKGROUND */
.place-lux::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.08), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

/* CONTAINER */
.place-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

/* TITLE */
.place-lux h2 {
  font-size: 34px;
  color: gold;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
  margin-bottom: 15px;
}

/* TEXT */
.place-text {
  opacity: 0.7;
  margin-bottom: 40px;
}

/* GALLERY */
.place-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* IMAGE STYLE */
.place-gallery img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;

  border: 1px solid rgba(255,215,0,0.2);
  transition: 0.4s;
}

/* HOVER EFFECT */
.place-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,215,0,0.3);
}

/* GOLD LINE */
.place-lux::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, gold, transparent);
  margin: 40px auto 0;
  opacity: 0.5;
}
.place-gallery img {
  animation: fadeUp 1s ease;
}

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

.footer {
  position: relative;
  background: radial-gradient(circle at center, #111, #000);
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(255,215,0,0.2);
  overflow: hidden;
}

/* GLOW BACKGROUND */
.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.08), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
}

/* CONTAINER */
.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* TITLES */
.footer-col h3,
.footer-col h4 {
  color: gold;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

/* TEXT */
.footer-col p {
  opacity: 0.7;
}

/* LINKS */
.footer-col a {
  color: gold;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: white;
  text-shadow: 0 0 10px gold;
}

/* SOCIAL ICONS */
.social img {
  width: 35px;
  margin-right: 12px;
  transition: 0.4s;
  filter: drop-shadow(0 0 8px gold);
}

/* HOVER ICON */
.social img:hover {
  transform: scale(1.2) translateY(-5px);
  filter: drop-shadow(0 0 20px gold);
}

/* BOTTOM TEXT */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  opacity: 0.5;
  font-size: 14px;
}

/* GOLD LINE */
.footer::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background: linear-gradient(to right, transparent, gold, transparent);
  margin: 40px auto 0;
  opacity: 0.4;
}





.social img {
  animation: floatIcon 4s ease-in-out infinite;
}

.social img:nth-child(2) {
  animation-delay: 1s;
}

.social img:nth-child(3) {
  animation-delay: 2s;
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}


.center {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: auto;
  padding: 100px 20px;
}

/* GLOW BACKGROUND (ΔΕΝ ΠΕΙΡΑΖΕΙ LOGO) */
.center::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: 0;
}

/* ΦΕΡΝΟΥΜΕ TEXT ΜΠΡΟΣΤΑ */
.center h3,
.center p {
  position: relative;
  z-index: 2;
}

/* TITLE EFFECT */
.center h3 {
  font-size: 28px;
  color: gold;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
  margin-bottom: 15px;
}

/* TEXT */
.center p {
  opacity: 0.7;
  margin-bottom: 10px;
}

/* SUBTLE LINE */
.center::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, gold, transparent);
  margin: 30px auto 0;
  opacity: 0.5;
}

.center {
  animation: fadeUp 1s ease;
}

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


/* HERO */
.about-hero {
  padding: 140px 20px;
  text-align: center;
  background: radial-gradient(circle, #1a1a1a, #000);
}

.about-hero h1 {
  color: gold;
  font-size: 40px;
}

.about-hero p {
  opacity: 0.7;
}

/* STORY */
.about-story .container {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px;
}

.about-story img {
  width: 100%;
  border-radius: 10px;
}

/* PHILOSOPHY */
.about-philosophy {
  text-align: center;
  padding: 100px 20px;
}

/* GALLERY */
.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.gallery img {
  width: 250px;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 100px 20px;
}

/* Logo glow + color boost */
.logo-main {
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(255,215,0,0.5));
  transition: 0.4s;
}

/* Hover effect */
.logo-main:hover {
  transform: scale(1.05);
  filter: brightness(1.4) drop-shadow(0 0 25px gold);
}



.about-hero {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  background: radial-gradient(circle, #1a1a1a, #000);
}

/* glow */
.about-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
}

/* title */
.about-hero h1 {
  color: gold;
  font-size: 42px;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
}


.story-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px;
}

/* TEXT */
.story-text h2 {
  color: gold;
  margin-bottom: 15px;
}

.story-text p {
  opacity: 0.7;
}

/* IMAGE */
.story-img img {
  width: 250px;
  filter: drop-shadow(0 0 20px gold);
  transition: 0.4s;
}

.story-img img:hover {
  transform: scale(1.05);
}


.about-philosophy {
  position: relative;
  text-align: center;
  padding: 120px 20px;
}

.about-philosophy h2 {
  color: gold;
  text-shadow: 0 0 15px gold;
}

.about-philosophy::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, transparent, gold, transparent);
  margin: 30px auto;
}

.gallery img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,215,0,0.2);
  transition: 0.4s;
}

.gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
}


.about-cta h2 {
  color: gold;
  text-shadow: 0 0 15px gold;
}

.about-cta p {
  opacity: 0.7;
}


.lux {
  animation: fadeUp 1s ease;
}

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


/* HERO */
.contact-hero {
  padding: 140px 20px;
  text-align: center;
  background: radial-gradient(circle, #1a1a1a, #000);
}

.contact-hero h1 {
  color: gold;
  text-shadow: 0 0 20px gold;
}

/* SECTION */
.contact-section {
  padding: 100px 20px;
}

/* CONTAINER */
.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  align-items: center;
}

/* FORM */
.contact-form {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid rgba(255,215,0,0.2);
  color: white;
  border-radius: 8px;
}

.contact-form button {
  background: gold;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* IMAGE */
.contact-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

/* MAP */
.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}


.contact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.1), transparent);
  left: 50%;
  transform: translateX(-50%);
  filter: blur(100px);
}


/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-box {
  background: #111;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255,215,0,0.3);
  animation: pop 0.4s ease;
}

.popup-box h2 {
  color: gold;
}

.popup-box button {
  margin-top: 20px;
  padding: 10px 25px;
  background: gold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes pop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.contact-form button {
  position: relative;
  overflow: hidden;
}

.contact-form button:active {
  transform: scale(0.95);
}

.contact-form button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  top: 0;
  left: -100%;
  transition: 0.3s;
}

.contact-form button:hover::after {
  left: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background: rgba(0,0,0,0.9);
}

/* SOCIAL CENTER */
.nav-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex: 1;
}

/* ICONS */
.nav-social img {
  width: 25px;
  filter: drop-shadow(0 0 8px gold);
  transition: 0.3s;
}

.nav-social img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px gold);
}

img {
  max-width: 100%;
  height: auto;
}