:root{
    --max-width:1100px;
    --accent:#2f2f2f;
    --hero-overlay: rgba(0,0,0,0.35);
    --section-gap: 56px;
    --olive:#708238;
    --olive-deep:#4b5e20;
    --cream:#faf5ea;
    --warm:#f3e6c8;
    --page-bg:#fffcf7;
    --text-soft:#60584f;
    --shadow-soft:0 16px 38px rgba(31, 38, 12, 0.08);
}

*{box-sizing: border-box;}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    color: var(--accent);
    background:
      radial-gradient(circle at top, rgba(255,255,255,0.45), transparent 28%),
      var(--page-bg);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

::selection{
    background: rgba(112,130,56,0.18);
    color: #1f2412;
}

a,
button{
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

a:focus-visible,
button:focus-visible{
    outline: 2px solid rgba(112,130,56,0.5);
    outline-offset: 3px;
}

.hero{
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 96px 0 0;
}

.hero-img{
    position: absolute;
    inset: 0;
    background-image: url(../images/products_images/olive_hero_compressed.webp);
    background-size: cover;
    background-position: center 18%;
    filter: contrast(1.08) saturate(1.05);
}

.hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(19,18,14,0.62) 0%, rgba(19,18,14,0.24) 44%, rgba(255,255,255,0.02) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(255,255,255,0.02));
}

.hero-inner{
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 92px 18px 72px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.hero-kicker{
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f7e4b2;
}

.hero h1{
    margin: 0;
    max-width: 780px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero h1 span{
    color: #efe0b4;
}

.hero-subtitle{
    max-width: 620px;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

.hero-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.hero-btn:hover{
    transform: translateY(-2px);
}

.hero-btn--primary{
    background: var(--cream);
    color: #2b2b2b;
    border: 1px solid transparent;
}

.hero-btn--secondary{
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-btn--secondary:hover{
    background: rgba(255,255,255,0.14);
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(0,0,0,0);
  border-bottom: none;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  padding: 10px 40px; 
}

.site-header br{
  display: none;
}

.logo{
    text-align: center;
    display: inline-block;
    color: #003366;
}

.logo-index{
    text-align: center;
    display: inline-block;
    color: #708238;
}

.header-nav-index ul{
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(24, 39, 12, 0.2);
    border: 1px solid rgba(112, 130, 56, 0.3);
    backdrop-filter: blur(6px);
}

.header-nav-index li{
    display: flex;
    align-items: center;
}

.header-nav-index a{
    text-decoration: none;
    padding: 10px 14px;
    color: #708238;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.home-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.home-icon__svg{
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
    transform: translateY(-1px);
}

.header-nav-index a:hover{
    background-color: rgba(112, 130, 56, 0.14);
}

.header-nav-index a[aria-current="page"],
.header-nav-index a.is-active{
    background-color: #708238;
    color: #fff;
}

.brand{
    font-family: pacifico, sans-serif;
    font-size: 52px;
    line-height: 1;
    letter-spacing: 1px;
}

.meta{
    margin-top: 6px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.93);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
}

#header-logo.scrolled .brand,
#header-logo.scrolled .meta {
    color: #708238;
}

.header-nav-index.scrolled a {
    color: #708238;
}

.header-nav-index.scrolled a[aria-current="page"],
.header-nav-index.scrolled a.is-active{
    color: #fff;
    background-color: #708238;
}

.header-nav-index.scrolled ul{
    background: rgba(112, 130, 56, 0.1);
    border-color: rgba(112, 130, 56, 0.25);
}

.about-section{
    padding: var(--section-gap) 0;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.container{
    width: 75%;
    max-width: 900px;
    margin: 0 auto;
}

.about-title{
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 14px;
}

.about-text{
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-soft);
    margin: 0;
}

.section-kicker{
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3ecd9;
    color: var(--olive-deep);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.story-card{
    position: relative;
    display: grid;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background:
      radial-gradient(circle at top right, rgba(112,130,56,0.12), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
    border: 1px solid rgba(112,130,56,0.14);
    box-shadow: var(--shadow-soft);
}

.story-card--warm{
    background:
      radial-gradient(circle at top right, rgba(201,150,67,0.15), transparent 30%),
      linear-gradient(180deg, #fffdfa 0%, #faf4e7 100%);
}

.story-card__intro{
    max-width: 760px;
}

.story-card__lead{
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: #3f4436;
}

.story-card__grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.story-card__grid--single{
    grid-template-columns: 1fr;
}

.story-card__grid .about-text{
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(112,130,56,0.1);
}

.story-card__closing{
    margin: 0;
    padding: 18px 22px;
    border-left: 4px solid var(--olive);
    border-radius: 0 18px 18px 0;
    background: rgba(112,130,56,0.08);
    color: #394028;
    font-size: 17px;
    line-height: 1.75;
}

/* Scroll reveal (products page) */
.reveal-up{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-up.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.photo-slider-container {
  position: relative;
  max-width: 720px;
  margin: auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(112,130,56,0.12);
  box-shadow: 0 18px 48px rgba(29,35,18,0.18);
  background: #fff;
  max-height: 720px;
}

.photo-slider{
  margin: 0 auto var(--section-gap);
}

.photo-slide {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: none;
  transition: opacity 0.8s ease-in-out;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(22,24,16,0.42);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s, transform 0.3s;
}

.slide-btn:hover {
  background-color: rgba(22,24,16,0.72);
  transform: translateY(-50%) scale(1.05);
}

.slide-btn.left { left: 10px; }
.slide-btn.right { right: 10px; }

.dots {
  text-align: center;
  position: absolute;
  bottom: 16px;
  width: 100%;
}

.dot {
  height: 10px;
  width: 30px;
  margin: 0 4px;
  background-color: rgba(255,255,255,0.55);
  border-radius: 999px;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.active, .dot:hover {
  background-color: white;
  transform: scaleX(1.06);
}

.products-cta{
  padding: 0 18px var(--section-gap);
}

.products-cta__inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 38px 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255,226,161,0.18), transparent 26%),
    linear-gradient(135deg, #4b5e20 0%, #708238 52%, #313f11 100%);
  color: #fff;
  box-shadow: 0 22px 60px rgba(31, 38, 12, 0.24);
  text-align: center;
}

.products-cta .section-kicker{
  background: rgba(255,255,255,0.12);
  color: #fff0c8;
}

.products-cta__title{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
}

.products-cta__text{
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.products-cta__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.products-cta .hero-btn--secondary{
  background: rgba(255,255,255,0.1);
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    padding: 18px 16px;
    color: #f7f6ef;
    background:
        radial-gradient(circle at top left, rgba(255, 214, 124, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(135deg, #4b5e20 0%, #708238 48%, #29350f 100%);
}

.site-footer__glow {
    position: absolute;
    inset: auto auto -80px -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 214, 124, 0.12);
    filter: blur(10px);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px 24px 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 56px rgba(17, 23, 5, 0.28);
    display: grid;
    gap: 16px;
}

.site-footer__brand {
    text-align: center;
}

.site-footer__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
    font-weight: 700;
    color: #ffe2a1;
}

.site-footer__brand h2 {
    margin: 14px 0 10px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1;
    color: #fff;
}

.site-footer__brand p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.55;
    color: rgba(247, 246, 239, 0.86);
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.site-footer__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(17, 23, 5, 0.18);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-footer__pill:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(255, 226, 161, 0.22), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 226, 161, 0.42);
    box-shadow: 0 14px 28px rgba(17, 23, 5, 0.24);
}

.site-footer .footerLinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer .footerLinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 42px;
    padding: 0;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    background: rgba(18, 22, 10, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.site-footer .footerLinks a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 226, 161, 0.3);
}

.site-footer .footerLinks svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer .footerLinks li:nth-child(2) svg,
.site-footer .footerLinks li:nth-child(3) svg {
    fill: currentColor;
    stroke: none;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    color: rgba(247, 246, 239, 0.8);
}

.site-footer__bottom p {
    margin: 0;
}





@media (max-width: 768px) {
  :root{
    --section-gap: 40px;
  }

  /* Το layout γίνεται κάθετο */
  .page-layout {
    flex-direction: row;
  }

  header{
    position: fixed;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  
  .header-nav ul {
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
  }

  .header-nav a{
    border: 1px solid #003366;
    border-radius: 5px;
  }

  .site-header {
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 8px 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  #header-logo{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .header-nav-index{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .header-nav-index ul{
    width: max-content;
    margin: 0 auto;
    padding: 5px;
    gap: 6px;
  }
  
  .container{
    width: min(100% - 24px, 900px);
  }

  .hero{
    min-height: auto;
    margin-top: 152px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(19,18,14,0.22) 0%, rgba(19,18,14,0.45) 100%);
  }

  .hero-img{
    margin-top: 0;
  }

  .hero-inner{
    padding: 28px 16px 34px;
    gap: 14px;
  }

  .hero-kicker{
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-subtitle{
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions{
    width: 100%;
  }

  .hero-btn{
    width: 100%;
  }

  .story-card{
    padding: 24px 20px;
    gap: 18px;
    border-radius: 24px;
  }

  .story-card__lead{
    font-size: 17px;
    line-height: 1.7;
  }

  .story-card__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-card__grid .about-text{
    padding: 18px;
    border-radius: 18px;
  }

  .story-card__closing{
    padding: 14px 16px;
    font-size: 15px;
  }

  .photo-slider-container{
    max-width: calc(100% - 20px);
    border-radius: 22px;
  }

  .photo-slide{
    aspect-ratio: 4 / 4.8;
  }

  .slide-btn{
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .dot{
    width: 22px;
    height: 9px;
  }

  .products-cta{
    padding: 0 12px var(--section-gap);
  }

  .products-cta__inner{
    padding: 24px 18px;
    border-radius: 24px;
  }

  .products-cta__text{
    font-size: 15px;
  }

  .site-footer {
    margin-top: 22px;
    padding: 14px 10px;
  }

  .site-footer__inner {
    padding: 16px 14px 14px;
    border-radius: 22px;
    gap: 14px;
  }

  .site-footer__brand p {
    font-size: 13px;
  }

  .site-footer__pill,
  .site-footer .footerLinks a {
    width: 52px;
  }

  .site-footer__meta {
    gap: 10px;
  }

  .site-footer__pill {
    width: auto;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
  }

  .site-footer__bottom {
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }

  .header-nav-index a{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 9px 12px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .home-icon__svg{
    width: 16px;
    height: 16px;
  }

}

/* Back to top – scroll progress */
.toTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  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;

  background: white;
  border: 1px solid #708238;;
  z-index: 9999;
}

.toTop svg{
  stroke: #708238;;
}

.toTop.is-show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toTop__icon{
  width: 36px;
  height: 36px;
  fill: none;
}

/* progress ring */
.toTop__progress{
  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-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toTop:hover{
  border-color: #708238;;
  transform: translateY(-1px);
}
