:root {
    --primary: #0f4c75;
    --accent: #bbe1fa;
    --white: #ffffff;

    --overlay-strong: rgba(10, 40, 70, 0.65);
    --overlay-medium: rgba(10, 40, 70, 0.45);
    --overlay-light: rgba(10, 40, 70, 0.25);
}

/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body {
    background-image: url("../images/fr.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /* ❌ ΟΧΙ fixed */
    /* αφήνουμε default scroll */

    color: var(--white);
}

/* ================= NAVBAR ================= */

nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    padding: 18px 40px;

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

nav ul li a {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.logo-img {
    width: 42px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
}

/* ΚΕΝΤΡΟ ΟΘΟΝΗΣ – ΟΧΙ ΚΕΝΤΡΟ FLEX */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ΚΟΥΜΠΙ ΑΜΟΙΒΗΣ */
.fee-link {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
}

.fee-link:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

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

/* ================= MAIN ================= */

main {
    text-align: center;
}

/* ================= HERO SECTIONS ================= */

.hero {
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    overflow: hidden;
    margin: 60px auto;
    max-width: 1100px;
}

.hero-overlay {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 50px;
    max-width: 750px;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

/* ================= HERO BACKGROUNDS ================= */

.hero-main { background-image: url("../images/pouli.jpg"); }
.hero-clouds { background-image: url("../images/clouds.jpg"); }
.hero-forest { background-image: url("../images/forest-path.jpg"); }
.hero-animal { background-image: url("../images/calm-animal.jpg"); }
.hero-sea { background-image: url("../images/calm-sea.jpg"); }

/* ================= HERO OVERLAYS ================= */

.hero-main .hero-overlay {
    background: linear-gradient(to right, var(--overlay-medium), var(--overlay-light));
}

.hero-clouds .hero-overlay,
.hero-animal .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(15, 76, 117, 0.35),
        rgba(15, 76, 117, 0.15)
    );
}

.hero-forest .hero-overlay,
.hero-sea .hero-overlay {
    background: linear-gradient(to right, var(--overlay-strong), var(--overlay-medium));
}

/* ================= CONTENT CARD ================= */

.content-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);

    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.45);
    background: rgba(255, 255, 255, 0.10);
}

/* ================= MAP ================= */

.map-section {
    padding: 80px 20px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 14px;
}

/* ================= REVIEWS ================= */

.reviews-section {
    padding: 80px 20px;
}

.reviews-widget {
    max-width: 900px;
    margin: 0 auto;
}

/* ================= FINAL CTA ================= */

.final-cta {
    text-align: center;
    padding: 90px 20px;
    background: linear-gradient(
        135deg,
        rgba(15, 76, 117, 0.9),
        rgba(50, 130, 184, 0.9)
    );
    margin-top: 100px;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ================= FOOTER ================= */

footer {
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
    margin-top: 80px;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    margin-left: 6px;
}

footer a:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 14px 18px;
    }

    /* ΚΡΥΒΟΥΜΕ ΤΟ ΚΕΝΤΡΙΚΟ CTA ΣΤΟ MOBILE */
    .nav-center {
        display: none;
    }

    nav ul {
        flex-direction: row;
        gap: 12px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    .hero {
        margin: 40px 15px;
    }

    .hero-overlay {
        min-height: auto;
    }

    .hero-content {
        padding: 35px 25px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.7rem;
    }
}

/* ================= GLOBAL BUTTON RESET ================= */

a,
button {
    all: unset;
    cursor: pointer;
}

/* επαναφέρουμε βασική συμπεριφορά */
a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;

    background: var(--accent);
    color: var(--primary);

    transition: all 0.3s ease;
}

.btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

body.contact-page {
    background-image: url("../images/contact-bg.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--white);
}

body.contact-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 40, 60, 0.55);
    z-index: -1;
}

.content-card {
    max-width: 720px;
    margin: 40px auto;
    padding: 35px 40px;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);

    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}
form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 20px;
}

form input,
form textarea {
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 0.95rem;
}

form textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

form button {
    grid-column: 1 / -1;
    margin-top: 10px;
    align-self: center;
}

.content-card h1,
.content-card h2 {
    margin-bottom: 10px;
}

.content-card p {
    opacity: 0.9;
    line-height: 1.7;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

/* ΔΕΥΤΕΡΟ ΚΟΥΜΠΙ – GOOGLE REVIEWS */
.reviews-link {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

.reviews-link:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .nav-center {
        position: static;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

.reviews-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ΑΣΤΕΡΑΚΙΑ */
.reviews-link .stars {
    font-size: 0.85rem;
    color: #ffd166; /* ζεστό χρυσό */
    letter-spacing: 1px;
}

/* ΚΕΙΜΕΝΟ */
.reviews-link .reviews-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ================= ABOUT PAGE ================= */

.about-intro h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.about-intro h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--accent);
}

.about-text p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-list {
    margin-top: 15px;
    padding-left: 20px;
    text-align: left;
}

.about-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

body.about-page {
    background-image: url("../images/about-bg.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--white);
}

body.contact-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 40, 60, 0.55);
    z-index: -1;
}

/* ================= PRIVACY PAGE ================= */

.privacy-content h2 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.privacy-content p,
.privacy-content li {
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-content ul {
    padding-left: 20px;
}

/* ================= PRIVACY PAGE BACKGROUND ================= */

body.privacy-page {
    background-image: url("images/privacy-bg.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--white);
}

body.privacy-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 40, 60, 0.6);
    z-index: -1;
}

/* ================= CONSENT CHECKBOX ================= */

.consent-box {
    grid-column: 1 / -1;
    font-size: 0.85rem;
    opacity: 0.9;
}

.consent-box input {
    margin-right: 6px;
}

.consent-box a {
    color: var(--accent);
    text-decoration: underline;

}



@media (max-width: 768px) {

  form {
    grid-template-columns: 1fr;
  }

  form input,
  form textarea {
    width: 100%;
  }

}


/* ================= HAMBURGER MENU ================= */

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ================= MOBILE NAV ================= */

@media (max-width: 768px) {

  /* Εμφάνιση hamburger */
  .hamburger {
    display: block;
    color: var(--white);
  }

  /* Κρύβουμε το menu by default */
  nav ul {
    display: none;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
  }

  /* Όταν είναι ανοιχτό */
  nav ul.open {
    display: flex;
  }

  nav ul li {
    text-align: center;
  }

  nav ul li a {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  /* Τα κουμπιά κάτω από το "Ψυχολόγος" */
  .nav-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-center {
    position: static;
    transform: none;
    display: flex;
    gap: 8px;
  }

  .fee-link,
  .reviews-link {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

/* =====================================================
   MOBILE POLISH – FINAL, SAFE WITH all: unset
   ===================================================== */

@media (max-width: 768px) {

  /* ---------------- BASE ---------------- */

  body {
    overflow-x: hidden;
  }

  p {
    font-size: 1rem;
    line-height: 1.85;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  section,
  .hero,
  .content-card {
    margin-bottom: 28px;
  }

  /* ---------------- NAVBAR ---------------- */

  nav {
    padding: 12px 16px;
  }

  .nav-left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* CTA buttons κάτω από "Ψυχολόγος" */
  .nav-center {
    position: static;
    transform: none;
    display: flex;
    gap: 8px;
  }

  .fee-link,
  .reviews-link {
    padding: 7px 14px;
    font-size: 0.8rem;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ---------------- HAMBURGER ---------------- */

  .hamburger {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--white);
  }

  /* menu hidden by default */
  nav ul {
    display: none;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    text-align: center;
  }

  nav ul li a {
    padding: 10px 16px;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* ---------------- FORM ---------------- */

  form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  form input,
  form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
  }

  /* ---------------- FOOTER ---------------- */

  footer {
    font-size: 0.85rem;
    padding: 22px 16px;
  }
}
hamburger {
  position: relative;
}

.hamburger .icon-close {
  display: none;
}

.hamburger.active .icon-menu {
  display: none;
}

.hamburger.active .icon-close {
  display: inline;
}