/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Colors & Fonts */
:root {
  /* Fonts */
  --primary-font-family: "Fredoka", sans-serif;
  --secondary-font-family: "Poppins", sans-serif;

  /* Colors */
  --primary-text-color: #322f30;
  --secondary-text-color: #777777;
  --tertiary-text-color: #32cd32;
  --sub-text-color: #ffffff;

  /* Background Colors */
  --section-background-1: #ffffff;
  --section-background-2: #f5f5f5;
  --section-background-3: #1b1b1b;
  --button-bg-1: #32cd32;
  --button-bgHover-1: #eaffeacc;

  /* Gradient */
  --campnstay-gradient: linear-gradient(90deg, #1b1b1b, #32cd32);
}

body {
  font-family: var(--primary-font-family);
  color: var(--primary-text-color);
  margin: 0;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  pointer-events: none;
}

h2 {
  font-size: 1.4rem;
  font-weight: 500;
  pointer-events: none;
}

h3 {
  font-size: 0.95rem;
  font-weight: 450;
  pointer-events: none;
}

p,
span {
  font-family: var(--secondary-font-family);
  font-size: 1rem;
  color: var(--secondary-text-color);
  pointer-events: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style: none;
}

input,
textarea {
  outline: none;
}

/* Utility Classes */
.flex {
  display: flex;
}

.flex_spb {
  display: flex;
  justify-content: space-between;
}

.flex-c {
  display: flex;
  flex-direction: column;
}

.flex-rw {
  display: flex;
  flex-flow: row wrap;
}

.grid {
  display: grid;
}

.center {
  text-align: center;
}

.container {
  max-width: 1350px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  padding-inline: 20px;
}

/* Button 1 Start */
.btn-1 {
  width: 125px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: var(--tertiary-text-color);
  border-radius: 30px;
  color: white;
  font-weight: 400;
  border: none;
  position: relative;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  padding-left: 8px;
  transition-duration: 0.5s;
}

.svgIcon {
  height: 25px;
  transition-duration: 1.5s;
}

.btn-1:active {
  transform: scale(0.97);
  transition-duration: 0.2s;
}

.btn-1:hover .svgIcon {
  transform: rotate(250deg);
  transition-duration: 1.5s;
}

/* Button 1 End */

/* Button 2 Start */
.btn-2 {
  font-size: 0.8rem;
  transition: all 0.2s ease-in;
  padding: 8px 20px;
  background-color: transparent;
  border: 2px solid var(--tertiary-text-color);
  border-radius: 30px;
  color: white;
  cursor: pointer;
  font-weight: 500;
}

.btn-2:hover {
  background: var(--tertiary-text-color);
  color: white;
  border: none;
}

.btn-2:active {
  transform: scale(0.97);
  transition-duration: 0.2s;
}

/* Button 2 End */

/* Navbar */

header {
  overflow: hidden;
}

#cross_button {
  display: none;
}

.top_nav {
  padding: 5px 30px;
  background-color: var(--button-bgHover-1);
}

.top_nav_items {
  gap: 10px;
}

.top_nav_items li {
  list-style: none;
  font-size: 0.65rem;
  font-weight: 650;
  font-family: var(--secondary-font-family);
}

.top_nav_items li a {
  color: var(--primary-text-color);
  font-family: var(--secondary-font-family);
}

.menu_block {
  display: none;
}

.logo img {
  width: 70px;
  height: 55px;
  object-fit: contain;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.message-heading {
  display: flex;
  font-size: 1rem;
  line-height: 3rem;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.message-heading::before {
  content: "━━━━";
  color: var(--tertiary-text-color);
  align-content: center;
  font-weight: 600;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.nav_links {
  list-style: none;
  top: -100px;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav_links li a {
  text-decoration: none;
  color: var(--primary-text-color);
  font-weight: 500;
}

.nav-right {
  display: flex;
  color: black;
  align-items: center;
  gap: 20px;
}

#highlight {
  color: var(--tertiary-text-color);
}

/* Booking form */

.booking-form {
  font-family: var(--secondary-font-family);
  position: fixed;
  right: -100%;          
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 500px;     
  height: 100vh;         
  background: var(--section-background-2);
  padding: 15px 18px;   
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  overflow-y: auto;
  transition: all 0.5s ease-in;
  font-size: 15px;     
  line-height: 1.3;
}

.booking-form.active {
  right: 0;
}

.booking_cross-button {
  position: absolute;
  top: 18px;
  right: 40px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-text-color);
  cursor: pointer;
  z-index: 1001;
}


.booking-form.fancy h2 {
  font-family: var(--primary-font-family);
  text-align: center;
  font-size: 20px;       
  margin-bottom: 10px;
  font-weight: 700;
}

.booking-form .form-group {
  margin-bottom: 8px;    
}

.booking-form .form-row .form-group {
  flex: 1;    
  min-width: 0;
}

.booking-form .form-row {
  display: flex;
  gap: 8px;              
  flex-wrap: wrap;
}

.booking-form label {
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 13px;     
  line-height: 24px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 6px 8px;     
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 13px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--tertiary-text-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

#booking_form{
  color: var(--primary-text-color);
  width: 100%;
  display: block;
  text-align: center;
}

#booking_form:hover {
  color: var(--sub-text-color);
}


/* Footer */

.footer {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: var(--sub-text-color);
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  z-index: 1;
  position: relative;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--tertiary-text-color);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: var(--tertiary-text-color);
}

.footer p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  list-style: none;
}

.footer-col ul li a {
  color: #bbb;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--sub-text-color);
  padding-left: 5px;
}


.footer-col a {
  color: #bbb;
  text-decoration: none;
}

.footer-col h2 {
  color: var(--sub-text-color);
  letter-spacing: 1px;
  line-height: 2rem;
  font-family: var(--primary-font-family);
}

.footer-col span {
  font-size: 1.5rem;
  color: var(--tertiary-text-color) !important;
  font-family: var(--primary-font-family);
}

.footer-col a:hover {
  color: var(--tertiary-text-color);
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  background: #222;
  color: #bbb;
  margin-right: 12px;
  font-size: 16px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #32cd32;
  color: #111;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  color: #888;
}



/* marquee */

.marquee-strip {
  background: var(--tertiary-text-color);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
}

.marquee-strip .dot {
  font-weight: bold;
  color: var(--sub-text-color);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: middle;
  padding: 0 12px;
}

.marquee-strip p {
  color: var(--sub-text-color) !important;
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}


/* Whatsapp button */

.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Distance from bottom */
    right: 20px;  /* Distance from right */
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--tertiary-text-color);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.2s ease-in-out, background 0.3s;
}
.whatsapp-float span{
    color: var(--sub-text-color);
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* WhatsApp Icon */
.whatsapp-float img {
    width: 22px;
    height: 22px;
}

/* Animated Waves */
.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    border: 2px solid var(--tertiary-text-color);
    border-radius: 50px;
    top: 0; left: 0; right: 0; bottom: 0;
    animation: wave 2s infinite;
    z-index: -1;
}

.whatsapp-float::after {
    animation-delay: 1s;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Phone Contact Box */
.phone-box {
    width: 80%;
    background: #fff;
    margin-top: 1rem !important;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    text-align: center;
    font-family: var(--secondary-font-family);
}

.phone-box-icon {
    width: 55px;
    height: 55px;
    background: var(--button-bgHover-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-text-color);
    font-size: 22px;
    margin: 0 auto 10px auto;
}

.phone-box-text {
    font-size: 15px;
    color: var(--secondary-text-color);
    margin-bottom: 5px;
}

.phone-box-number {
    font-size: 20px;
    font-weight: 600;
    color: var(--tertiary-text-color);
    text-decoration: none;
}

.phone-box-number:hover {
    color: var(--primary-text-color);
}

.phone-box-time {
    font-size: 13px;
    padding-top: 5px;
    color: var(--secondary-text-color);
}

