/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap&subset=latin,greek');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Geologica:wght@100..900&family=Mansalva&display=swap');
/* ============================
   ROOT VARIABLES
============================ */
:root {
  /* Fonts */
  --font-base: 'Fira Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-accent: 'Kaushan Script', cursive;

  /* Colors */
  --color-primary: #547435;
  --color-secondary: #c49a6c;
  --color-secondary-dark: #a87d52;
  --color-accent: #9ad163;
  --color-text: #111;
  --color-light: #fff;
  --color-dark: #000;

  /* Sizes */
  --radius: 5px;
  --transition: 0.3s ease;
  --container-padding: 3rem;

  /* Shadows */
  --shadow-soft: 2px 2px 6px rgba(0,0,0,0.6);

  /* Font Sizes (scales with breakpoints) */
  --fs-h1: 4rem;
  --fs-h2: 3rem;
  --fs-p: 1.7rem;
}

/* Reset & Global */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-size: 11px; /* base 10px for easier rem calculation */
  box-sizing: border-box;
  background: var(--color-primary);
  overflow-x: hidden;
  overflow-y: auto; 


}

.fancy-title {
  font-family: var(--font-base);
  font-weight: 400;
  font-style: normal;
}

.home-wrapper {
  position: relative; /* parent for absolute positioning */
}

.services-fancy {
  position: absolute; /* overlap video & svg */
  left: 50%;
  bottom: 0; /* adjust overlap amount */
  transform: translate(-50%, 50%); /* move it halfway down into SVG */
  color: var(--color-light);
  font-size: 5rem;
  font-weight: 700;
  z-index: 15;
  margin: 0;
  padding: 0;
  text-shadow: var(--shadow-soft);
  white-space: nowrap; /* prevent line breaks */
}

/* SVG container */
.svg-seperator {
  position: relative;
  width: 100%;
  height: 30vw; /* control height here */
  overflow: hidden;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

/* --- SVG Animation --- */
.svg-seperator svg {
  display: block;
  width: 100%;        /* always span full width */
  height: 100%;       /* fill container height */
  object-fit: cover;  /* crop without squishing */
  transform: translateY(-10vw); /* hidden: up */
  opacity: 1;
  transition: all 1s ease-out;
}

.svg-seperator.active svg {
  transform: translateY(-10vw); /* slide into place */
  opacity: 1;
}

.overflow-beans {
  position: absolute;
  height: 15vw;
  left: 100%;   /* hidden: off screen right */
  top: 20%;
  z-index: 10;
  opacity: 0;
  transition: all 1s ease-out;
}

.svg-seperator.active .overflow-beans {
  left: 70%;    /* final resting position */
  top: 2vw;     /* keep same */
  opacity: 1;
}

/* Responsive */
@media (min-width: 1440px) {
  .svg-seperator.active svg {
    transform: translateY(-12vw); /* slide into place */
  }

  .overflow-beans {
    height: 12vw;
  }

  .svg-seperator.active .overflow-beans {
    top: 1vw;
  }
}

@media (max-width: 767px) {
  .services-fancy {
    font-size: 3rem;
    transform: translate(-50%, 40%);
  }
  .svg-seperator svg {
    margin-top: 0;
  }
  .svg-seperator.active svg {
    transform: translateY(-2vw);
    opacity: 1;
  }

  .overflow-beans {
    height: 20vw;
  }
  .svg-seperator.active .overflow-beans {
    top: 5vw;
  }
}

@media (max-width: 480px) {
  .services-fancy {
    font-size: 2.5rem;
    transform: translate(-50%, 40%);
  }
  .svg-seperator svg {
    margin-top: 0;
  }
}

body.no-scroll {
  overflow: hidden; /* Prevent background scroll when mobile menu is open */
}

h1, h2, .btn {
  font-family: var(--font-heading);
  font-weight: 700;
}

p {
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

p, nav a {
  font-family: var(--font-base);
  font-weight: 400;
}





/* ======= ABOUT PAGE SPECIFIC STYLES ======= */
 .swiper {
      width: 100%;
      height: 100svh; /* full viewport height on mobile */
    }

    .swiper-slide {
      width: 100%;
      height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: white;
      background-size: cover;
      background-position: center;
    }

    /* Example background images */
    .slide1 { background-color: #1abc9c; background-image: url(../assets/images/pexels-shkrabaanthony-7176003.jpg);}
    .slide2 { background-color: #3498db; background-image: url(../assets/images/pexels-daniel-reche-718241-1556665.jpg)}
    .slide3 { background-color: #9b59b6;}

    /* Vertical bullets container */
    .custom-bullets {
      position: absolute;
      top: calc(93px + 15%); /* below navbar and centered */
      right: 20px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 20px;
      z-index: 10;
    }

    .bullet-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .bullet {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: #ccc;
      position: relative;
      z-index: 1;
    }

    .bullet.active {
      background: #2ecc71;
    }

    .bullet-line {
      position: absolute;
      top: 7.5px;
      left: 6.5px;
      width: 2px;
      height: calc(100% + 20px); /* connect to next bullet */
      background: #ccc;
      z-index: 0;
      transform-origin: top;
      transform: scaleY(0);
      transition: transform 0.3s;
    }

    .bullet-wrapper:last-child .bullet-line {
      display: none;
    }

  .bullet-text {
      font-size: 1rem;
      white-space: nowrap;
      color: var(--color-light);
    }


  .about-swiper-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  min-height: 600px;
}

.about-swiper {
  width: 100%;
  height: 100%;
}

.about-swiper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

/* Dark semi-transparent overlay for better text contrast */
.about-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Updated glassmorphism block for text */
.about-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  max-width: 800px;
  text-align: center;
  color: #fff;
  transform: translateY(40px);
  opacity: 0;
  transition: all 1s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  width: 80%;
}

.swiper-slide-active .about-content {
  transform: translateY(0);
  opacity: 1;
}

/* Headings & text */
.about-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fefefe;
  text-transform: uppercase;
}

.about-content p {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #e8e8e8;
}



/* Responsive */
@media (max-width: 768px) {

  
  .about-content {
    padding: 2rem;
    margin-top: 30%;
  }
  .about-content h2 {
    font-size: 2rem;
  }
  .about-content p {
    font-size: 1.4rem;
  }
}


