@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
.font-signature {
  font-family: "Great Vibes", cursive;
}

body,
html {
  
  padding: 0;
  height: 100%;
  color: gray;
  /* text-shadow: 0 0 12px rgba(0, 0, 0, 0.6); */
  /* text-shadow: 0 0 20px rgba(0, 0, 0, 1); */
  /* overflow-x: hidden; */
  background-color: #fde9e8;
}

 /* body {
    margin-top: 0;
    transition: margin-top 0.5s ease;
  }

  body.scrolled {
    margin-top: 70px;
  } */

/* p {
  
  font-size: 1.1rem;
  line-height: 1.3;
} */

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url("images/mountain-bg-2.jpg") no-repeat center center/cover; */
  opacity: 0.9;
  z-index: -1;
}

.text-shadow-black {
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}
.text-shadow-white {
  text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}
.no-text-shadow {
  text-shadow: none !important;
}

.content {
  padding: 100px;
}

/* Reset & global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: Arial, sans-serif;
}

/* section {
  padding: 10px 20px;

} */

/* Bottom Navbar */
/* .bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  border-radius: 10px;
  display: flex;
  gap: 8px;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.bottom-nav .nav-link {
  color: white;
  padding: 6px 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.bottom-nav .nav-link:hover,
.bottom-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
}

#carousel::-webkit-scrollbar {
  display: none;
}

[x-cloak] {
  display: none !important;
}

 */
.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  border-radius: 10px;
  display: flex;
  gap: 8px;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.bottom-nav .nav-link {
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.bottom-nav .nav-link:hover,
.bottom-nav .nav-link.active {
  background-color: #fff;
  color: #000;
  border-color: #aaa;
}

/* Hide scrollbar */
#carousel::-webkit-scrollbar {
  display: none;
}

/* Hide AlpineJS cloak */
[x-cloak] {
  display: none !important;
}

/* ------------- Media Queries for All Screen Sizes ------------- */

/* Small Devices (Phones) */
@media (max-width: 600px) {
  .bottom-nav {
    background-color: transparent;
    padding: 6px;
    gap: 6px;
  }

  .bottom-nav .nav-link {
    flex: 1;
    padding: 10px;
    background-color: #fff;
    color: #111;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .bottom-nav .nav-link:hover,
  .bottom-nav .nav-link.active {
    background-color: #ffd6e0;
    color: #000;
    border-color: #ff94b0;
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
  .bottom-nav {
    background-color: transparent;
    padding: 8px;
    gap: 10px;
  }

  .bottom-nav .nav-link {
    padding: 12px 16px;
    background-color: #fff;
    color: #111;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .bottom-nav .nav-link:hover,
  .bottom-nav .nav-link.active {
    background-color: #ffe3ed;
    color: #000;
    border-color: #ffb2c8;
  }
}

/* Large Devices (Desktops) */
@media (min-width: 1025px) {
  .bottom-nav .nav-link {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/*slider Image */
.slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.progress-bar {
  height: 4px;
  /* background: green; */
  width: 0%;
  animation: progress 3.5s linear forwards;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/* hero section  */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* background-color: rgb(249, 215, 229); */
}

.heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; /* Canvas is background */
}

.hero-content {
  position: relative;
  z-index: 1; /* Content above canvas */
  /* max-width: 1200px; */
  padding: 30px;
  color: #2c5f2d; /* Deep natural green for text */
  /* Optional: A very subtle background or shadow for readability on complex animations */
  /* background-color: rgba(255, 255, 255, 0.7); */
  /* border-radius: 10px; */
}

.hero-content h1 {
  font-family: "Merriweather", serif;
  font-size: 2.5em;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  color: #1a431a; /* Even darker green for headline */
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.btn {
  display: inline-block;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 50px; /* More organic, pill-shaped buttons */
  font-weight: 600;
  transition: background-color 0.4s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
  letter-spacing: 0.5px;
}

.primary-btn {
  background-color: #8bc34a; /* A vibrant, natural green */
  color: #fff;
  box-shadow: 0 8px 15px rgba(139, 195, 74, 0.3);
}

.primary-btn:hover {
  background-color: #7cb342;
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(124, 179, 66, 0.4);
}

.secondary-btn {
  background-color: #fff;
  color: #6d8e6d; /* A soft, natural grey-green */
  border: 2px solid #6d8e6d;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
  background-color: #f0f0f0;
  color: #5a7a5a;
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.2em;
  }
  .hero-content p {
    font-size: 1.2em;
  }
  .btn {
    padding: 15px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh; /* Adjust height for smaller screens */
  }
  .hero-content h1 {
    font-size: 2em;
  }
  .hero-content p {
    font-size: 1em;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 20px;
  }
  .btn {
    width: 70%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 70vh;
  }
  .hero-content h1 {
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  .hero-content p {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .btn {
    width: 85%;
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

/* text fade in animation  */

/* .smoke-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: smokeFade 0.6s forwards;
  color: black;
  filter: blur(2px);
}

@keyframes smokeFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(5px);
  }
  50% {
    opacity: 0.5;
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
} */

.smoke-char {
  display: inline;
  opacity: 0;
  animation: smokeFade 0.5s ease-out forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes smokeFade {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* sliding in fade animation  */
/* left right  */

.slide-in-left,
.slide-in-right,
.slide-in-top,
.slide-in-bottom {
  opacity: 0;
  transform: translateY(50px); /* default fallback */
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

.slide-in-left.active {
  transform: translateX(0);
  opacity: 1;
}
.slide-in-right.active {
  transform: translateX(0);
  opacity: 1;
}
.slide-in-top.active {
  transform: translateY(0);
  opacity: 1;
}
.slide-in-bottom.active {
  transform: translateY(0);
  opacity: 1;
}

.slide-in-left {
  transform: translateX(-100px);
}
.slide-in-right {
  transform: translateX(100px);
}
.slide-in-top {
  transform: translateY(-100px);
}
.slide-in-bottom {
  transform: translateY(100px);
}

/* popup slide-in animation  */

.pop-up-ani {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.8s ease-out;
}

/* When element comes into view */
.pop-up-ani.show {
  opacity: 1;
  transform: scale(1);
}

/* contact page */

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  }
  50% {
    text-shadow: 0 0 20px rgb(0, 0, 0);
  }
}
.animate-glow {
  animation: glow 1.5s infinite;
}

@keyframes paperPlane {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100px);
    opacity: 0;
  }
}
.animate-paper-plane {
  animation: paperPlane 1s ease forwards;
}

/* footer */

@keyframes float {
  0%,
  100% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(-40px);
  }
}
@keyframes float-reverse {
  0%,
  100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(40px);
  }
}
@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}
.animate-float-reverse {
  animation: float-reverse 5s ease-in-out infinite;
}
.animate-bounce-slow {
  animation: bounce-slow 8s ease-in-out infinite;
}

/* moving logo */

/* logo */

:root {
  --box-size: 190px;
  --letter-size: 96px;
  --letter-spacing: 1px;
  --animation-duration: 6s;
}

.box {
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 8px;
  position: fixed;
  top: 25%;
  left: 49%;
  transform: translate(-50%, +20%);
  font-family: "Courier New", Courier, monospace;
}

.letter {
  position: absolute;
  font-size: var(--letter-size);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--letter-size);
  height: var(--letter-size);
  border-radius: 4px;
}

@keyframes moveA {
  0% {
    left: 0%;
    top: 100%;
    transform: translate(0, -100%);
  }
  15% {
    left: 0%;
    top: 0%;
    transform: translate(0, 0);
  }
  30% {
    left: 100%;
    top: 0%;
    transform: translate(-100%, 0);
  }
  45% {
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
  }
  55% {
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0);
  }
  65%,
  92% {
    left: calc(50% - (2.5 * var(--letter-size) + 2 * var(--letter-spacing)));
    top: 50%;
    transform: translate(0, -50%);
  }
  100% {
    left: 0%;
    top: 100%;
    transform: translate(0, -100%);
  }
}

@keyframes moveF {
  0% {
    left: 0%;
    top: 0%;
    transform: translate(0, 0);
  }
  15% {
    left: 100%;
    top: 0%;
    transform: translate(-100%, 0);
  }
  30% {
    left: 100%;
    top: 100%;
    transform: translate(-100%, -100%);
  }
  45% {
    left: 0%;
    top: 50%;
    transform: translate(0, -50%);
  }
  55% {
    left: 100%;
    top: 50%;
    transform: translate(-100%, -50%);
  }
  65%,
  92% {
    left: calc(
      50% - (2.5 * var(--letter-size) + 2 * var(--letter-spacing)) +
        (1 * (var(--letter-size) + var(--letter-spacing)))
    );
    top: 50%;
    transform: translate(0, -50%);
  }
  100% {
    left: 0%;
    top: 0%;
    transform: translate(0, 0);
  }
}

@keyframes moveR {
  0% {
    left: 100%;
    top: 0%;
    transform: translate(-100%, 0);
  }
  15% {
    left: 100%;
    top: 100%;
    transform: translate(-100%, -100%);
  }
  30% {
    left: 0%;
    top: 100%;
    transform: translate(0, -100%);
  }
  45% {
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0);
  }
  55% {
    left: 0%;
    top: 50%;
    transform: translate(0, -50%);
  }
  65%,
  92% {
    left: calc(
      50% - (2.5 * var(--letter-size) + 2 * var(--letter-spacing)) +
        (2 * (var(--letter-size) + var(--letter-spacing)))
    );
    top: 50%;
    transform: translate(0, -50%);
  }
  100% {
    left: 100%;
    top: 0%;
    transform: translate(-100%, 0);
  }
}

@keyframes moveSecondA {
  0% {
    left: 100%;
    top: 100%;
    transform: translate(-100%, -100%);
  }
  15% {
    left: 0%;
    top: 100%;
    transform: translate(0, -100%);
  }
  30% {
    left: 0%;
    top: 0%;
    transform: translate(0, 0);
  }
  45% {
    left: 100%;
    top: 50%;
    transform: translate(-100%, -50%);
  }
  55% {
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
  }
  65%,
  92% {
    left: calc(
      50% - (2.5 * var(--letter-size) + 2 * var(--letter-spacing)) +
        (3 * (var(--letter-size) + var(--letter-spacing)))
    );
    top: 50%;
    transform: translate(0, -50%);
  }
  100% {
    left: 100%;
    top: 100%;
    transform: translate(-100%, -100%);
  }
}

@keyframes moveM {
  0% {
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0);
  }
  15% {
    left: 0%;
    top: 50%;
    transform: translate(0, -50%);
  }
  30% {
    left: 100%;
    top: 50%;
    transform: translate(-100%, -50%);
  }
  45% {
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
  }
  55% {
    left: 0%;
    top: 0%;
    transform: translate(0, 0);
  }
  65%,
  92% {
    left: calc(
      50% - (2.5 * var(--letter-size) + 2 * var(--letter-spacing)) +
        (4 * (var(--letter-size) + var(--letter-spacing)))
    );
    top: 50%;
    transform: translate(0, -50%);
  }
  100% {
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0);
  }
}

.letter-a {
  animation: moveA var(--animation-duration) ease-in-out infinite;
  color: #1a431a;
}
.letter-b {
  animation: moveF var(--animation-duration) ease-in-out infinite;
  color: #1a431a;
}
.letter-c {
  animation: moveR var(--animation-duration) ease-in-out infinite;
  color: #1a431a;
}
.letter-d {
  animation: moveSecondA var(--animation-duration) ease-in-out infinite;
  color: #1a431a;
}
.letter-e {
  animation: moveM var(--animation-duration) ease-in-out infinite;
  color: #1a431a;
}

/* === Medium Screens (Tablets & small laptops) === */
@media (max-width: 1024px) {
  :root {
    --box-size: 180px;
    --letter-size: 86px;
    --letter-spacing: 1px;
  }

  .box {
    top: 10%;
    transform: translate(-50%, +70%);
  }
}

/* === Small Screens (Mobiles) === */
@media (max-width: 768px) {
  :root {
    --box-size: 180px;
    --letter-size: 86px;
    --letter-spacing: 1px;
  }

  .box {
    top: 18%;
    left: 50%;
    transform: translate(-50%, +60%);
  }
}

/* === Extra Small Screens (Super narrow phones) === */
@media (max-width: 480px) {
  :root {
    --box-size: 180px;
    --letter-size: 72px;
    --letter-spacing: 0.5px;
  }

  .box {
    top: 15%;
    left: 50%;
    transform: translate(-50%, +55%);
  }
}

/* Hide .box when hero section is out of view */
.hide-afram {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

.show-afram {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s ease-in-out;
}

input::placeholder {
  color: black;
}

/* whattsapp/call redirect button */
.starlight-contact-section {
  position: relative;
  z-index: 1000;
}

.starlight-contact-wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
}

/* --- Main Floating Button --- */
.starlight-main-btn {
  background-color: #25d366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  animation: starlight-pulse 2.5s ease-in-out infinite;
}

/* 🌊 Smooth Pulse Animation */
@keyframes starlight-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* 🌬️ Optional: Gentle Bounce (if you want it) */
@keyframes starlight-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* 💡 Optional: Soft Glow */
@keyframes starlight-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
  }
}

.starlight-main-btn:hover {
  transform: scale(1.15);
}

.starlight-main-btn img {
  width: 30px;
  height: 30px;
}

/* --- Hidden Contact Options --- */
.starlight-options {
  display: none;
  flex-direction: column;
  margin-bottom: 10px;
  gap: 10px;
  animation: starlight-fadeIn 0.3s ease forwards;
}

.starlight-options button {
  background-color: white;
  color: #333;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s;
}

.starlight-options button:hover {
  transform: scale(1.1);
  background-color: #f3f3f3;
}

@keyframes starlight-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* herosection css */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* ✨ Utility Animations */
.animate-fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-smooth {
  animation: pulse 3s ease-in-out infinite;
}
