/* =========================
   THEME TOKENS
========================= */
:root {
    --max: 1080px;
    --gold: #b68b2f;

    --bg: #0f0f0f;
    --panel: #121212;
    --panel2: #0b0b0b;
    --text: #f2f2f2;
    --muted: rgba(255, 255, 255, .75);
    --muted2: rgba(255, 255, 255, .55);
    --line: rgba(255, 255, 255, .75);
    --softLine: rgba(255, 255, 255, .20);
    --shadow: rgba(0, 0, 0, .65);

    --glass: rgba(0, 0, 0, .50);
    --glass2: rgba(0, 0, 0, .35);
    --border: rgba(255, 255, 255, .14);
}

html[data-theme="light"] {
    --bg: #f4f2ee;
    --panel: #ffffff;
    --panel2: #fbfaf8;
    --text: #141414;
    --muted: rgba(0, 0, 0, .68);
    --muted2: rgba(0, 0, 0, .48);
    --line: rgba(0, 0, 0, .70);
    --softLine: rgba(0, 0, 0, .18);
    --shadow: rgba(0, 0, 0, .18);

    --glass: rgba(255, 255, 255, .72);
    --glass2: rgba(255, 255, 255, .55);
    --border: rgba(0, 0, 0, .14);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Times New Roman', Times, serif;
}

a,
button {
    outline-color: rgba(182, 139, 47, .8);
}

.page {
    width: min(var(--max), 92vw);
    margin: 28px auto 40px;
}

/* =========================
   PRELOADER + UI
========================= */
.preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(1200px 600px at 50% 30%, rgba(182, 139, 47, .12), rgba(0, 0, 0, .92));
    display: grid;
    place-items: center;
    z-index: 100;
}

html[data-theme="light"] .preloader {
    background: radial-gradient(1200px 600px at 50% 30%, rgba(182, 139, 47, .14), rgba(255, 255, 255, .95));
}

.preloader[aria-hidden="true"] {
    display: none;
}

.preloader__inner {
    text-align: center;
    padding: 20px;
}

.preloader__bar {
    width: min(360px, 82vw);
    height: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .04);
    margin: 14px auto 8px;
    overflow: hidden;
}

html[data-theme="light"] .preloader__bar {
    background: rgba(0, 0, 0, .05);
}

.preloader__bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: rgba(182, 139, 47, .85);
}

.preloader__text {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    letter-spacing: .06em;
}

html[data-theme="light"] .preloader__text {
    color: rgba(0, 0, 0, .65);
}

/* Progress */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, .06);
    z-index: 60;
}

html[data-theme="light"] .progress {
    background: rgba(0, 0, 0, .08);
}

.progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: rgba(182, 139, 47, .95);
}

/* Toast */
.toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    max-width: min(420px, 92vw);
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .35);
    display: none;
    backdrop-filter: blur(10px);
}

.toast.is-show {
    display: block;
}

.toast b {
    color: var(--gold);
}

/* =========================
   LOGO
========================= */


.logo-img {
    height: 100px;
    /* άλλαξέ το όπως θέλεις */
    width: auto;
    display: block;
}

.nav__logo {
    display: flex;
    align-items: center;
}

/* =========================
   HERO / NAV
========================= */
.hero {
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    min-height: 470px;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .10), rgba(0, 0, 0, .62)),
        url("images/barber.jpg") center 40%/cover no-repeat;
}

html[data-theme="light"] .hero {
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, .06), rgba(0, 0, 0, .55)),
        url("images/barber.jpg") center 40%/cover no-repeat;
}

.hero__top {
    padding: 16px 20px 0;
    transition: padding .25s ease, background .25s ease, border-color .25s ease;
}

.nav {
    display: grid;
    grid-template-columns: repeat(3, auto) 1fr repeat(3, auto) auto;
    align-items: center;
    gap: 14px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.nav__link {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    padding: 6px 2px;
}

html[data-theme="light"] .nav__link {
    color: rgba(0, 0, 0, .75);
}

.nav__link:hover {
    color: var(--text);
}

.nav__link.is-active {
    color: var(--gold);
}

.nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(182, 139, 47, .90);
}

.nav__logo {
    display: flex;
    justify-content: center;
}

/* Theme toggle button */
.themeBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    background: var(--glass2);
    color: var(--text);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.themeBtn__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(182, 139, 47, .85);
    box-shadow: 0 0 0 3px rgba(182, 139, 47, .18);
}

.themeBtn__text {
    font-size: 11px;
    letter-spacing: .12em;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 48px 34px;
    min-height: calc(470px - 70px);
}

.hero__copy {
    max-width: 420px;
    text-align: left;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .55);
}

.hero__kicker {
    margin: 0 0 8px;
    font-family: "Cinzel", serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(255, 255, 255, .78);
}

html[data-theme="light"] .hero__kicker {
    color: rgba(255, 255, 255, .86);
}

.hero__title {
    margin: 0 0 16px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-weight: 600;
    font-size: 26px;
    color: rgba(255, 255, 255, .95);
}

html[data-theme="light"] .hero__title {
    color: rgba(255, 255, 255, .96);
}

.hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, .6);
    background: rgba(0, 0, 0, .55);
    color: rgba(255, 255, 255, .9);
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    background: rgba(0, 0, 0, .72);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn--line {
    background: rgba(0, 0, 0, .20);
    border-color: rgba(255, 255, 255, .16);
}

.btn--ghost {
    border-color: rgba(182, 139, 47, .35);
}


.stat {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .35);
    min-width: 96px;
}

.stat__num {
    display: block;
    font-family: "Cinzel", serif;
    letter-spacing: .10em;
    color: var(--gold);
    font-size: 18px;
}

.stat__label {
    display: block;
    font-family: "Cinzel", serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 10px;
    color: rgba(255, 255, 255, .75);
}

/* Sticky / shrink */
.hero.is-scrolled .hero__top {
    position: sticky;
    top: 0;
    z-index: 55;
    padding-top: 10px;
    padding-bottom: 10px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

/* =========================
   SECTIONS BASE
========================= */
.wrap {
    width: min(var(--max), 92vw);
    margin: 0 auto;
}

.sectionHead {
    text-align: center;
    margin: 0 0 14px;
}

.sectionHead__title {
    margin: 0;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    font-size: 20px;
}

.sectionHead__sub {
    margin: 8px 0 0;
    color: var(--muted);
}

.divider {
    height: 1px;
    background: var(--softLine);
    margin: 16px auto;
    width: min(640px, 86%);
}

/* =========================
   WELCOME / FRAME
========================= */
.welcome {
    padding: 28px 0;
}

.frame {
    width: min(var(--max), 92vw);
    margin: 0 auto;
    padding: 22px 18px;
    border: 2px solid var(--line);
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .60));
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

html[data-theme="light"] .frame {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .85), rgba(255, 255, 255, .95));
}

.frame::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid var(--softLine);
    pointer-events: none;
}

.frame__title {
    margin: 0 0 12px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    text-align: center;
    font-size: 22px;
}

.frame__text {
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    padding: 0 10px;
}

.aboutGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.aboutCard {
    border: 1px solid var(--border);
    background: var(--glass2);
    padding: 12px;
    backdrop-filter: blur(10px);
}

.aboutCard h3 {
    margin: 0 0 6px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
}

.aboutCard p {
    margin: 0;
    color: var(--muted);
    line-height: 1.35;
}

/* =========================
   FEATURES
========================= */
.features {
    padding: 18px 0 18px;
}

.features__grid {
    width: min(var(--max), 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.feature {
    text-align: center;
}

.feature__img {
    border: 2px solid var(--border);
    padding: 6px;
    background: rgba(255, 255, 255, .03);
    transition: transform .2s ease;
}

/* Book Appointment – zoom out icon */
.feature--book .feature__img img {
    object-fit: contain;
    padding: 32px;
}

/* Book Appointment – watermark background */


/* =========================
   PRICE LIST – icon
========================= */

.feature--price .feature__img img {
    object-fit: contain;
    padding: 28px;
}

.feature--service .feature__img img {
    object-fit: contain;
    padding: 28px;
}



html[data-theme="light"] .feature__img {
    background: rgba(0, 0, 0, .03);
}

.feature__img:hover {
    transform: translateY(-2px);
    background: black;
}

.feature__img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.05);
}

.feature__title {
    margin: 14px 0 6px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 18px;
    font-weight: 600;
}

.feature__sub {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
}

.feature__sub:hover {
    text-decoration: underline;
}



/* =========================
   PRICES
========================= */
.prices {
    margin-top: 26px;
    padding: 20px 0 0;
}

.prices__inner {
    width: min(var(--max), 92vw);
    margin: 0 auto;
    padding: 18px;
    border: 1px solid var(--border);
    background: var(--glass2);
    backdrop-filter: blur(12px);
}

.prices__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.priceCard {
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .25);
    padding: 12px;
    text-align: left;
    transition: transform .15s ease, border-color .2s ease;
}

html[data-theme="light"] .priceCard {
    background: rgba(255, 255, 255, .85);
}

.priceCard:hover {
    transform: translateY(-2px);
    border-color: rgba(182, 139, 47, .35);
}

.priceCard__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.priceCard__name {
    margin: 0;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.priceCard__price {
    font-family: "Cinzel", serif;
    letter-spacing: .08em;
    color: var(--gold);
    font-size: 12px;
}

.priceCard__desc {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
}

.priceCard__tag {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 8px;
    border: 1px solid var(--border);
    background: var(--glass2);
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .06em;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
    padding: 26px 0;
    border-top: 1px solid var(--softLine);
}

.slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}

.slider__btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--glass2);
    color: var(--text);
    font-size: 26px;
    cursor: pointer;
}

.slider__btn:hover {
    border-color: rgba(182, 139, 47, .35);
    color: var(--gold);
}

.slider__viewport {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--glass2);
    backdrop-filter: blur(10px);
}

.slider__track {
    display: flex;
    transform: translateX(0);
    transition: transform .35s ease;
}

.tCard {
    min-width: 100%;
    padding: 16px 16px 18px;
}

.tCard__quote {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    color: var(--muted);
}

.tCard__who {
    margin: 12px 0 0;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
    color: var(--gold);
}

.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

html[data-theme="light"] .dot {
    background: rgba(0, 0, 0, .06);
}

.dot.is-active {
    background: rgba(182, 139, 47, .75);
    border-color: rgba(182, 139, 47, .75);
}

/* =========================
   FAQ
========================= */
.faq {
    padding: 26px 0;
    border-top: 1px solid var(--softLine);
}

.accordion {
    width: min(860px, 92vw);
    margin: 0 auto;
    border: 1px solid var(--border);
    background: var(--glass2);
    backdrop-filter: blur(10px);
}

.accItem {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    border: 0;
    border-bottom: 1px solid var(--softLine);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
}

.accItem i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: var(--glass2);
}

.accPanel {
    display: none;
    padding: 12px 14px 16px;
    color: var(--muted);
    border-bottom: 1px solid var(--softLine);
}

.accPanel p {
    margin: 0;
    line-height: 1.45;
}

.faq__cta {
    text-align: center;
    margin-top: 14px;
}

/* =========================
   CITY INFO
========================= */
.info {
    position: relative;
    min-height: 220px;
    border-top: 1px solid var(--softLine);
    border-bottom: 1px solid var(--softLine);
}

.info__overlay {
    min-height: 220px;
    background: rgba(0, 0, 0, .62);
    display: flex;
    align-items: center;
    padding: 18px 0;
}

html[data-theme="light"] .info__overlay {
    background: rgba(0, 0, 0, .50);
}

.info__grid {
    width: min(var(--max), 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.infoCard {
    text-align: center;
    padding: 16px 10px;
    background: var(--glass2);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.infoCard__title {
    margin: 0 0 10px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 14px;
    font-weight: 600;
}

.infoCard__text {
    margin: 0 0 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, .86);
    line-height: 1.4;
}

.infoCard__text--gold {
    color: var(--gold);
    font-weight: 600;
}

.pill {
    display: inline-flex;
    padding: 8px 12px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 11px;
    text-decoration: none;
    color: rgba(255, 255, 255, .92);
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .12);
    align-items: center;
    gap: 10px;
}

.pill-icon {
    width: 18px;
    height: 18px;
    display: block;
}
.pill:hover {
    background: rgba(0, 0, 0, .72);
    border-color: rgba(182, 139, 47, .25);
}

.pill--mini {
    padding: 7px 10px;
    font-size: 10px;
}

.pill--danger {
    border-color: rgba(255, 120, 120, .35);
}

/* =========================
   FOOTER
========================= */
.footer {
    padding: 24px 0 10px;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.frame--footer {
    padding: 26px 18px 18px;
    background: var(--glass2);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.footer__nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 12px;
    margin: 6px 0 14px;
}

.footer__nav a {
    color: var(--muted);
    text-decoration: none;
}

.footer__nav a:hover {
    color: var(--text);
}

.footer__nav a:first-child {
    color: var(--gold);
}

.footer__fine {
    margin: 0;
    text-align: center;
    font-size: 12px;
    color: var(--muted2);
}

/* =========================
   REVEAL
========================= */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 860px) {
    .hero__content {
        padding: 0 22px 28px;
    }

    .hero__title {
        font-size: 22px;
    }

    .features__grid {
        gap: 16px;
    }

    .feature__img img {
        height: 120px;
    }

    .prices__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .aboutGrid {
        grid-template-columns: 1fr;
    }

    .confirmGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .nav {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;

        grid-auto-flow: column;
        grid-auto-columns: max-content;
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav__logo {
        order: -1;
    }

    .themeBtn {
        justify-self: center;
    }

    .hero {
        min-height: 430px;
    }

    .hero__content {
        justify-content: center;
        padding: 110px 18px 26px;
        min-height: auto;
    }

    .hero__copy {
        text-align: center;
    }

    .features__grid,
    .info__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }
}

.feature__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature__icon {
    width: 70px;
    height: auto;
    display: block;
}

.feature--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}



/* ========== NAV (DESKTOP DEFAULT) ========== */
.nav {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr repeat(3, auto) auto;
  align-items: center;
  gap: 14px;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

/* wrappers (mobile zones) */
.nav__left,
.nav__right{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* logo */
.nav__logo {
  display: flex;
  justify-content: center;
}

/* links */
.nav__link {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: 6px 2px;
}

html[data-theme="light"] .nav__link {
  color: rgba(0, 0, 0, .75);
}

.nav__link:hover {
  color: var(--text);
}

.nav__link.is-active {
  color: var(--gold);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(182, 139, 47, .90);
}

/* ========== LANG BUTTON ========== */
.langBtn{
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;

  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.langBtn__sep{ opacity: .55; }
.langBtn__other{ opacity: .60; }

html[data-theme="light"] .langBtn{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.75);
}

/* ========== BURGER (STACKED HORIZONTAL LINES) ========== */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;

  display: inline-flex;
  flex-direction: column; /* stacked */
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav__burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
}

html[data-theme="light"] .nav__burger{
  background: rgba(0,0,0,.06);
}
html[data-theme="light"] .nav__burger span{
  background: rgba(0,0,0,.75);
}

/* ========== MOBILE LAYOUT ========== */
@media (max-width: 860px) {
  .nav{
    grid-template-columns: 1fr auto 1fr; /* left / center / right */
    gap: 10px;
  }

  /* hide desktop links on mobile */
  .nav__link { display: none; }

  /* show burger on mobile */
  .nav__burger{ display: inline-flex; }

  .nav__left{ justify-self: start; }
  .nav__logo{ justify-self: center; }
  .nav__right{ justify-self: end; }
}

/* ========== MOBILE OVERLAY MENU ========== */
.menu{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.menu.is-open{
  opacity: 1;
  pointer-events: auto;
}

.menu__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.60);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu__panel{
  position: relative;
  width: min(520px, calc(100% - 28px));
  border-radius: 22px;
  padding: 18px 18px 16px;
  background: rgba(18,18,18,.72);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  transform: translateY(10px) scale(.98);
  transition: transform .22s ease;
}

.menu.is-open .menu__panel{
  transform: translateY(0) scale(1);
}

html[data-theme="light"] .menu__panel{
  background: rgba(255,255,255,.72);
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.menu__close{
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  cursor: pointer;
}

html[data-theme="light"] .menu__close{
  border-color: rgba(0,0,0,.10);
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.75);
}

.menu__brand{
  font-family: "Cinzel", serif;
  letter-spacing: .18em;
  font-size: 12px;
  color: rgba(255,255,255,.70);
  padding: 8px 6px 14px;
  text-transform: uppercase;
}

html[data-theme="light"] .menu__brand{
  color: rgba(0,0,0,.65);
}

.menu__links{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 8px 0 16px;
}

.menu__link{
  font-family: "Cinzel", serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  position: relative;
}

html[data-theme="light"] .menu__link{
  color: rgba(0,0,0,.60);
}

.menu__link:hover{
  color: rgba(255,255,255,.90);
}
html[data-theme="light"] .menu__link:hover{
  color: rgba(0,0,0,.80);
}

.menu__link.is-active{
  color: rgba(255,255,255,.92);
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

html[data-theme="light"] .menu__link.is-active{
  color: rgba(0,0,0,.82);
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.10);
}

.menu__link.is-active::after{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -10px;
  height: 2px;
  background: rgba(182, 139, 47, .90);
  border-radius: 2px;
}

.menu__cta{
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.menu__btn{
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Cinzel", serif;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.menu__btn--primary{
  background: rgba(182, 139, 47, .20);
  border-color: rgba(182, 139, 47, .35);
}

html[data-theme="light"] .menu__btn{
  color: rgba(0,0,0,.75);
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.10);
}

/* Back to top – scroll progress */
.toTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.toTop.is-show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toTop__icon{
  width: 36px;
  height: 36px;
  fill: none;
}

/* progress ring */
.toTop__progress{
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;

  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset .15s linear;

  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

/* chevron */
.toTop__chevron{
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toTop:hover{
  border-color: rgba(182,139,47,.45);
  transform: translateY(-1px);
}

/* =========================
   GALLERY / STYLE CAROUSEL
========================= */
.gSection{
  padding: 26px 0;
  border-top: 1px solid var(--softLine);
}

/* tabs */
.gTabs{
  width: min(var(--max), 92vw);
  margin: 14px auto 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.gTab{
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass2);
  color: var(--text);
  cursor: pointer;

  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 12px;

  transition: transform .15s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
  opacity: .82;
}

.gTab:hover{
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(182, 139, 47, .35);
}

.gTab.is-active{
  opacity: 1;
  background: rgba(182, 139, 47, .18);
  border-color: rgba(182, 139, 47, .45);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}

/* carousel shell */
.gCarousel{
  width: min(var(--max), 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.gViewport{
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
}

.gTrack{
  display: flex;
  transform: translateX(0);
  transition: transform .45s ease;
  will-change: transform;
}

/* slide */
.gSlide{
  min-width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  background: rgba(0,0,0,.25);
}

.gSlide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* nice vibe */
  filter: grayscale(20%) contrast(1.03);
  transform: scale(1.02);
}

/* nav buttons */
.gNav{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--glass2);
  color: var(--text);
  font-size: 26px;
  cursor: pointer;

  display: grid;
  place-items: center;
  transition: transform .15s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}

.gNav:hover{
  border-color: rgba(182, 139, 47, .35);
  color: var(--gold);
  transform: translateY(-1px);
}

.gNav:disabled{
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

/* dots */
.gDots{
  width: min(var(--max), 92vw);
  margin: 12px auto 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.gDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

html[data-theme="light"] .gDot{
  background: rgba(0,0,0,.06);
}

.gDot.is-active{
  background: rgba(182, 139, 47, .75);
  border-color: rgba(182, 139, 47, .75);
}

.gDot:hover{
  transform: scale(1.1);
}

/* responsive */
@media (max-width: 700px){
  .gCarousel{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gNav{
    width: 100%;
    height: 44px;
    border-radius: 14px;
  }
  .gNav--prev{ order: 2; }
  .gViewport{ order: 1; }
  .gNav--next{ order: 3; }
  .gSlide{ aspect-ratio: 4/3; }
}

/* carousel shell */
.gCarousel{
  width: min(var(--max), 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;

  position: relative; /* ✅ για overlay buttons */
}

/* (προαιρετικό) δίνουμε χώρο για overlay στο viewport */
.gViewport{
  position: relative; /* ✅ για να “κάτσουν” πάνω του */
}

/* responsive */
@media (max-width: 700px){
  /* κάνε το layout single column αλλά τα βέλη θα γίνουν absolute */
  .gCarousel{
    grid-template-columns: 1fr;
    gap: 0; /* ✅ μην αφήνεις κενό αφού είναι overlay */
  }

  .gNav{
    position: absolute;      /* ✅ overlay */
    top: 50%;
    transform: translateY(-5px);
    z-index: 5;

    width: 44px;
    height: 44px;
    border-radius: 14px;

    /* πιο “overlay” look */
    background: rgba(0,0,0,.45);
    border-color: rgba(255,255,255,.18);
  }

  html[data-theme="light"] .gNav{
    background: rgba(255,255,255,.45);
    border-color: rgba(0,0,0,.18);
  }

  .gNav--prev{ left: 10px; }
  .gNav--next{ right: 10px; }

  /* remove the old ordering rules */
  .gNav--prev{ order: initial; }
  .gViewport{ order: initial; }
  .gNav--next{ order: initial; }

  /* λίγο padding στα άκρα για να μην “πατάει” πάνω στη φωτό */
  .gSlide{ aspect-ratio: 4/3; }
}