
:root{
  --dark:#041d1d;
  --petrol:#062f2f;
  --green:#0f4c45;
  --green2:#177466;
  --gold:#d8ad5b;
  --gold2:#f4d58a;
  --cream:#fff8ee;
  --paper:#fffaf4;
  --ink:#172222;
  --muted:#667570;
  --shadow:0 24px 70px rgba(4,29,29,.22);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Montserrat,Arial,sans-serif;
  background:var(--paper);
  color:var(--ink);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.v2-container{width:min(1180px,92%);margin-inline:auto}

.v2-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(4,29,29,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(216,173,91,.28);
}
.v2-nav{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:26px;
}
.v2-brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.v2-brand span{
  font-family:'Great Vibes',cursive;
  font-size:35px;
  color:var(--gold2);
  text-shadow:0 0 18px rgba(216,173,91,.32);
}
.v2-brand small{
  margin-top:3px;
  font-family:Cinzel,serif;
  letter-spacing:4px;
  font-size:10px;
  color:white;
}
.v2-nav nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:20px;
}
.v2-nav nav a{
  color:#f7f0e6;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  opacity:.9;
}
.v2-nav nav a:hover{color:var(--gold2)}
.v2-nav-btn{
  padding:12px 16px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:#1b1205;
  font-weight:900;
  font-size:13px;
}

.v2-hero{
  overflow:hidden;
  color:white;
  background:
    radial-gradient(circle at 76% 25%,rgba(216,173,91,.18),transparent 34%),
    radial-gradient(circle at 18% 20%,rgba(23,116,102,.32),transparent 38%),
    linear-gradient(135deg,#041d1d 0%,#062f2f 56%,#0f4c45 100%);
}
.v2-hero-grid{
  min-height:720px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:54px;
  padding:64px 0;
}
.v2-eyebrow,.v2-label{
  margin:0 0 12px;
  color:var(--gold2);
  letter-spacing:4px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}
.v2-copy h1{
  margin:0 0 22px;
  font-family:Cinzel,serif;
  font-size:clamp(58px,9vw,112px);
  line-height:.9;
  color:#fffaf4;
}
.v2-lead{
  max-width:600px;
  color:#fff1dc;
  font-size:20px;
  line-height:1.75;
}
.v2-address{
  color:var(--gold2);
  font-weight:900;
  margin:24px 0;
}
.v2-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.v2-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 22px;
  border-radius:13px;
  font-weight:900;
  font-size:14px;
}
.v2-btn-gold{
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:#201507;
  box-shadow:0 12px 34px rgba(216,173,91,.20);
}
.v2-btn-outline{
  border:1px solid rgba(255,255,255,.55);
  color:white;
}

.v2-photo-collage{
  position:relative;
  min-height:560px;
}
.v2-photo{
  position:absolute;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(216,173,91,.36);
  box-shadow:var(--shadow);
}
.v2-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.v2-photo-main{
  left:0;
  top:40px;
  width:75%;
  height:455px;
  border-radius:36px;
  padding:12px;
  z-index:1;
}
.v2-photo-main img{border-radius:25px}
.v2-photo-small{
  right:0;
  width:38%;
  height:215px;
  border-radius:28px;
  padding:10px;
  z-index:2;
}
.v2-photo-small img{border-radius:19px}
.v2-photo-small.top{top:4px}
.v2-photo-small.bottom{bottom:22px}

.v2-strip{
  margin-top:-38px;
  position:relative;
  z-index:5;
}
.v2-strip-inner{
  min-height:92px;
  display:grid;
  grid-template-columns:1fr 2fr auto;
  align-items:center;
  gap:24px;
  padding:22px 28px;
  border-radius:22px;
  background:#fff8ee;
  box-shadow:var(--shadow);
}
.v2-strip strong{
  color:var(--green);
  font-size:21px;
}
.v2-strip span{color:#33423e;line-height:1.6}
.v2-strip a{
  background:var(--green);
  color:white;
  border-radius:12px;
  padding:13px 18px;
  font-weight:900;
}

.v2-section{
  padding:88px 0;
}
.v2-section h2{
  margin:0 0 24px;
  font-family:Cinzel,serif;
  font-size:clamp(34px,5vw,54px);
  line-height:1.1;
  color:#102d2d;
}
.v2-lessons{text-align:center}
.v2-cards{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  text-align:left;
}
.v2-cards article{
  background:white;
  border:1px solid rgba(15,76,69,.12);
  border-radius:22px;
  padding:26px;
  box-shadow:0 14px 42px rgba(4,29,29,.08);
}
.v2-cards b{
  display:block;
  margin-bottom:10px;
  color:var(--green);
  font-family:Cinzel,serif;
  font-size:22px;
}
.v2-cards span{
  color:var(--muted);
  line-height:1.65;
}

.v2-about{
  background:linear-gradient(180deg,#fffaf4,#eef8f4);
}
.v2-about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}
.v2-about p{
  color:#5d6c66;
  line-height:1.8;
  font-size:17px;
}
.v2-about ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
}
.v2-about li{
  margin:11px 0;
  padding-left:30px;
  position:relative;
  font-weight:700;
}
.v2-about li:before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:900;
}
.v2-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.v2-gallery img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 14px 38px rgba(4,29,29,.14);
  border:1px solid rgba(216,173,91,.28);
}
.v2-gallery img:first-child{
  grid-column:1/3;
  height:320px;
}

.v2-cta{
  padding:58px 0;
  color:white;
  background:linear-gradient(135deg,#041d1d,#0f4c45);
}
.v2-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.v2-cta h2{
  margin:0 0 8px;
  font-family:Cinzel,serif;
  font-size:38px;
}
.v2-cta p{
  margin:0;
  color:#fff1dc;
}

.v2-footer{
  padding:48px 0;
  background:#041d1d;
  color:white;
}
.v2-brand.footer small{
  letter-spacing:1px;
  font-family:Montserrat,Arial,sans-serif;
  font-size:14px;
  color:#e9dfca;
}

@media(max-width:980px){
  .v2-nav nav,.v2-nav-btn{display:none}
  .v2-hero-grid,.v2-about-grid{grid-template-columns:1fr}
  .v2-hero-grid{min-height:auto;padding:48px 0}
  .v2-photo-collage{
    min-height:auto;
    display:grid;
    gap:12px;
  }
  .v2-photo{
    position:relative;
    left:auto!important;
    right:auto!important;
    top:auto!important;
    bottom:auto!important;
    width:100%!important;
    height:260px!important;
  }
  .v2-photo-main{height:340px!important}
  .v2-strip-inner,.v2-cards,.v2-cta-inner{
    grid-template-columns:1fr;
    display:grid;
    text-align:left;
  }
  .v2-cards{grid-template-columns:1fr}
  .v2-gallery img,.v2-gallery img:first-child{
    grid-column:auto;
    height:240px;
  }
}






/* SAFE SMALL LOGO TOUCH - no menu layout change */
.brand-script{
  color:#f7d98d!important;
  text-shadow:0 0 6px rgba(247,217,141,.45), 0 1px 1px rgba(0,0,0,.45)!important;
}
.brand-small{
  color:#fff1bd!important;
  letter-spacing:3.6px!important;
  text-shadow:0 0 4px rgba(247,217,141,.35)!important;
}
/* END SAFE SMALL LOGO TOUCH */







/* LOGO BIGGER SIZE BALANCE */
/* Αρχική */
.home-logo-slot .menu-logo-img,
.v2-header .menu-logo-img,
.lod-header .menu-logo-img{
  height:58px!important;
  max-width:245px!important;
  width:auto!important;
  object-fit:contain!important;
}

/* Υπόλοιπες σελίδες */
.site-header .menu-logo-img{
  height:56px!important;
  max-width:235px!important;
  width:auto!important;
  object-fit:contain!important;
}

/* Να μην σπρώχνει υπερβολικά το menu */
.brand,
.home-logo-slot{
  flex-shrink:0!important;
}

/* Λίγο καλύτερο κενό στο menu */
.site-header .nav-wrap,
.v2-header .nav-wrap,
.lod-header .nav-wrap{
  gap:20px!important;
}

/* Tablet / mobile */
@media(max-width:900px){
  .home-logo-slot .menu-logo-img,
  .v2-header .menu-logo-img,
  .lod-header .menu-logo-img,
  .site-header .menu-logo-img{
    height:42px!important;
    max-width:175px!important;
  }
}

@media(max-width:420px){
  .home-logo-slot .menu-logo-img,
  .v2-header .menu-logo-img,
  .lod-header .menu-logo-img,
  .site-header .menu-logo-img{
    height:38px!important;
    max-width:155px!important;
  }
}
/* END LOGO BIGGER SIZE BALANCE */

/* ADDRESS GOOGLE MAP LINKS */
.address-map-link{
  color:inherit!important;
  text-decoration:underline!important;
  text-underline-offset:3px!important;
  font-weight:800!important;
}
.address-map-link:hover{
  color:#d7b15c!important;
}
.address-map-button{
  display:inline-flex!important;
  margin-top:8px!important;
  text-decoration:none!important;
}
/* END ADDRESS GOOGLE MAP LINKS */