*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}
/* ===== Background Setup ===== */
body {
  background-image: url("pictures/back-5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  background-attachment: fixed;
  margin: 0;
  font-family: "Tinos", serif;
  color: #fff;
}
/* Soft overlay for better readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: -1;
}
/* ===== Navbar / Task Bar ===== */
/* Transparent by default */
.header-taskbar {
  position: sticky;
  background-color: black;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.task-bar-list-1{
  text-align: center;
  margin-right: 0;
}
.task-bar-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(159, 140, 115, 0.738);
  list-style: none;
  gap: 2em;
  backface-visibility: hidden;
  color: black;
  font-size: 20px;
  transition: all 0.3s ease;

}
.header-taskbar.task-bar-list.scrolled {
  background: rgba(20, 20, 20, 0.75);   /* dark glass look */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  border-radius: 5px;
}
.header-taskbar.task-bar-list.scrolled .task-bar {
  margin-top: 10px;
  transition: margin 0.3s ease;
}
/* ===== Book Now Button ===== */
.task-bar-button {
  display:inline-block;
  background-color: #ffad56;
  padding: 12px 15px;
  border-radius: 12px;
}
.task-bar-button::after,
.task-bar-button::before {
  display: none !important;
  content: none !important;
}
/* Remove underline from parent li if it contains task-bar-button */
.hideOnMobile:has(.task-bar-button)::after {
  display: none !important;
}
/* Fallback for browsers without :has() support - target the li containing the button */
li:has(.task-bar-button)::after {
  display: none !important;
}
.task-bar-button:hover {
  background-color: white;
  color: black;
  cursor: pointer;
  text-decoration: none !important;
}
nav{
  background-color: rgba(159, 140, 115, 0.738);
  
}
nav ul{
  position: sticky;
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: auto;
  display: flex;
  align-items: center;
}
nav li img{
  width: 120px;
}
nav a{
  height: 80%;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
}
nav li:first-child{
  margin-right: auto;
}
.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  color: black;
  background-color: rgba(89, 42, 0, 0.936);
  box-shadow: #f0f0f0;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 50%;
  height: 12%;
  margin-left: 17px;
  font-size: 22px;
  font-weight: 550;
  margin-top: 0;
  margin-bottom: 0;
}
.sidebar li:hover{
  background-color: #926767b6;
  color: #f09433;
}
.sidebar.task-bar-button{
  font-size: 18px;
  margin: 0;
  height: auto;
  text-align: center;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
  margin-right: 13px;
}
.hideOnMobile{
  color: black;
  font-size: 23px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.2s ease;
  font-weight: 500;
}
.hideOnMobile.active{
  color: #ffffff;
}
.hideOnMobile::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}
.hideOnMobile.active::after{
  width: 100%;
}
.hideOnMobile:hover::after{
  width: 100%;
}
.hideOnMobile:hover{
  opacity: 0.9;
  cursor: pointer;
}
.sidebar {
  padding-top: 20px;
}

/* Sidebar list items */
.sidebar li {
  width: 100%;
  margin: 0;
}

/* Sidebar links */
.sidebar a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  font-size: 18px;
  color: #fff;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.2s ease;
}

/* Hover effect */
.sidebar a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

/* Logo inside sidebar */
.sidebar li img {
  width: 120px;
  margin: 10px auto 20px;
  display: block;
}

/* Divider look (optional but nice) */
.sidebar li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== Sidebar Book Now Button ===== */
.sidebar .task-bar-button {
  margin: 16px auto;
  width: 85%;
  height: 42px;
  font-size: 16px;
  border-radius: 22px;
  background-color: #ffad56;
  color: #000;
  font-weight: 600;
  justify-content: center;
}

/* Hover for Book Now */
.sidebar .task-bar-button:hover {
  background-color: #fff;
  color: #000;
}
/* ================= SIDEBAR HOVER EFFECTS ================= */

/* Smooth entrance feel */
.sidebar a {
  position: relative;
  overflow: hidden;
}

/* Background glow hover */
.sidebar a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 173, 86, 0.25)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.sidebar a:hover::before {
  opacity: 1;
}

/* Slide + scale on hover */
.sidebar a:hover {
  transform: translateX(6px) scale(1.02);
}

/* Tap / click feedback */
.sidebar a:active {
  transform: scale(0.97);
}

/* Icon animation inside sidebar */
.sidebar a svg {
  transition: transform 0.3s ease, fill 0.3s ease;
}

.sidebar a:hover svg {
  transform: scale(1.15);
  fill: #ffad56;
}

/* ================= BOOK NOW SPECIAL EFFECT ================= */

.sidebar .task-bar-button {
  position: relative;
  overflow: hidden;
}

/* Pulse glow */
.sidebar .task-bar-button::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sidebar .task-bar-button:hover::after {
  opacity: 1;
}

/* Lift on hover */
.sidebar .task-bar-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

/* Press feedback */
.sidebar .task-bar-button:active {
  transform: scale(0.95);
}


/* ===== Floating Book Now (WhatsApp) Button ===== */
.floating-book {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.floating-book:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}
.floating-book,
.floating-book:hover,
.floating-book:focus,
.floating-book:active {
  text-decoration: none;
}


/* Subtle pulse to attract attention */
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(64, 145, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-book {
  animation: whatsappPulse 2.5s infinite;
}

/* ===== Floating Instagram Button ===== */
.floating-instagram {
  position: fixed;
  bottom: 128px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.floating-instagram:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}
.floating-instagram,
.floating-instagram:hover,
.floating-instagram:focus,
.floating-instagram:active {
  text-decoration: none;
}

/* Instagram pulse animation */
@keyframes instagramPulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(225, 48, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0); }
}

.floating-instagram {
  animation: instagramPulse 2.5s infinite;
}

/* ===== Image Lightbox / Modal ===== */

/* ===== Image Lightbox ===== */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

.lightbox.visible {
  display: flex;
}

body.no-scroll {
  overflow: hidden;
}

.lightbox-img {
  display: block;
  max-width: 95vw;
  max-height: 95vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

/* Make it clear gallery items are clickable */
.gallery-item {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/*=================End of task bar=================*/
.main-content{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.farm-name {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 100px;
  padding-top: 50px;
  text-align: center;
  margin-top: 65px;
  margin-bottom: 0px;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
  animation: fadeUp 1s ease forwards;
}
.farm-description {
  font-size: 29px;
  margin-top: 10px;
  
  background: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 10px 25px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  animation: fadeUp 1.4s ease forwards;
}
.farm-description {
  margin: 20px auto 250px;
  text-align: center;
}

.welcome-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #6b5b4cb6;
  border-radius: 12px;
  margin-bottom: 50px;
  margin: 20px 30px;
}
.home-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s ease forwards;
}
.title-home {
  text-align: center;
  font-size: 42px;
  font-family: 'Trebuchet MS', sans-serif;
  margin-bottom: 20px;
  color: #da862d;
  font-weight: bold;
  
}
.home-img {
  width: 500px;
  height: 420px;
  margin: 20px 10px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.4s ease;
  margin-right: 25px;
  padding: 20px;
}
.home-img:hover {
  transform: scale(1.03);
}
.home-farm-discription {
  margin-top: 80px;
  font-size: 24px;
  line-height: 1.6;
  animation: fadeUp 1.2s ease forwards;
}
.home-farm-discription-3 {
  font-size: 25px;
  line-height: 1.5;
  animation: fadeUp 1.2s ease forwards;
  color: rgba(255, 255, 255, 0.768);
}
.home-farm-discription-2 {
  font-size: 34px;
  color: black;
  font-weight: bold;
}
.home-farm-discription-4{
  color: black;
}

/* Gallery Styling*/
.gallery-section {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 16px;
  max-width: 1520px;
  margin: 20px 30px;
}

.gallery-title {
  font-size: 52px;
  margin-bottom: 40px;
  color: #ffad56;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
  text-align: center;
}

/* Filter buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
  border-radius: 35px;
}

.filter-buttons button {
  background: #ffad56;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background: #fff;
  transform: scale(1.05);
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  justify-items: center;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* ===== Smooth fade & scale transitions for gallery filter ===== */
.gallery-item {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: auto;
}
.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
/* Hide items when filtered out */
.hidden {
  display: none;
}
/*=====================GALLERY ENDS HERE==========================*/
/*=====================REVIEW STARTA HERE=========================*/
.reviews {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  max-width: 1520px;
  margin:20px 30px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 40px;
}

.reviews h3 {
  font-size: 42px;
  color: #ffad56;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.sk-ww-google-reviews{
  height: 420px;
  width: 100%;
  max-width: 1400px;
  
}
.review-1{
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
}

/* Animation for infinite scroll */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*================LOCATION SECTION STARTS HERE========================*/
.location-section {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 16px;
  max-width: 1520px;
  margin: 20px 30px;
  color: #fff;
  text-align: center;
}
.location-section h2 {
  font-size: 42px;
  color: #ffad56;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.location-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}
.map-container {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.directions-btn {
  display: inline-block;
  background: #ffad56;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.directions-btn:hover {
  background: white;
}
/*======================LOCATION SECTION ENDS HERE+++=======================*/
/* ===== Footer ===== */
.about {
  background-color: black;
  color: white;
  text-align: center;
  padding: 40px 0;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.footer-contact,
.footer-address {
  font-size: 16px;
  margin: 20px 15px;
  opacity: 0.85;
}

.footer-contact a {
  color: #ffad56;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px auto;
  font-size: 28px;
}
.social-icons a {
  color: white;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #ffad56;
}
/*===================FOOTER ENDS====================================*/










@media (max-width: 992px) {
  .task-bar { 
    padding: 20px 10px; 
    justify-content: center;
    gap: 15px;
    align-items: center;
  }
  .list-1{
    font-size: 20px;
  }
  .list-1 img{
    width: 24px;
    height: 18px;
  }
  .logo-img{
    width:80px;
  }
  .task-bar-list { 
    margin: 0; 
    gap: 1.5rem; 
    padding: 15px 20px; 
    font-size: 5px;
    width: 100%;
    justify-content: center;
  }
  .task-bar-button { 
    margin: 0; 
    font-size: 16px;
    padding: 12px 10px;
    width: auto;
    align-self: center;
  }

  .farm-name { font-size: clamp(48px, 10vw, 80px); }
  .farm-description { margin: 20px auto 20px; display: block; font-size: 22px; }
  .welcome-section { flex-direction: column; padding: 40px 20px; height: auto; }
  .home-farm-discription { margin-top: 40px; padding: 0 10px; text-align: center; }

  .reviews {
    margin: 10px 30px;
    padding: 32px 24px;
  }
  .reviews h3 { font-size: 32px; }
  .sk-ww-google-reviews { height: 380px; }
}
@media(max-width:800px) {
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
  .task-bar-button{
    font-size: 18px;
    font-weight: 450;
  }
}
@media (max-width: 576px) {
  .task-bar { 
    padding: 15px 10px; 
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
  .logo-img{
    width: 70px;
  }
  .task-bar-list { 
    gap: 0.8rem; 
    font-size: 5px; 
    padding: 12px 10px; 
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .task-bar-button { 
    width: auto;
    font-size: 17px;
    font-weight: 450;
    padding: 8px 12px;
    margin-top: 0;
  }
  .floating-book {
    bottom: 20px;
    right: 16px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  .floating-instagram {
    bottom: 88px;
    right: 16px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  .title-home { font-size: 28px; }
  .home-img { width: 100%; height: auto; margin: 20px 0; }
  .home-farm-discription { font-size: 18px; }

  .gallery-title { font-size: 32px; }
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .gallery-item img { height: 180px; }

  .reviews {
    margin: 20px 30px;
    padding: 24px 18px;
  }
  .reviews h3 { font-size: 24px; }
  .sk-ww-google-reviews { height: 370px; }
  .review-1 { grid-template-columns: 1fr; }
  .location-section h2 { font-size: 28px; }
}
@media(max-width:400){
  .sidebar{
    width: 100%;
  }
}
/* For screens 425px and below - This should override 576px styles */
@media (max-width: 460px) {
  .task-bar { 
    padding: 10px 8px; 
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    /* Temporary test: uncomment below to verify this query is active */
    /* background-color: rgba(255, 0, 0, 0.2) !important; */
  }
  .logo-img{
    width: 58px;
  }
  .task-bar-list { 
    gap: 0.5rem; 
    padding: 15px 6px; 
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin:0;
  }
  .list-1{
    font-size: 15px;
  }
  .task-bar-button { 
    width: auto;
    font-size: 17px;
    padding: 6px 10px;
    margin-top: 0;
  }
  .list-1 img{
    width: 24px;
    height: 15px;
    margin-right: 15px;
  }
  .farm-name { font-size: clamp(40px, 8vw, 60px);margin-top: 70px; }
  .farm-description { margin: 20px auto 150px; display: block; font-size: 18px; }
}

@media (max-width: 400px) {
  .task-bar { 
    padding: 8px 6px; 
    gap: 3px;
  }
  .logo-img{
    width: 50px;
  }
  .task-bar-list { 
    gap: 0.35rem; 
    padding: 6px 4px; 
  }
  .list-1{
    font-size: 15px;
  }
  .list-1 img{
    width: 15px;
    height: 13px;
  }
  .task-bar-button { 
    font-size: 16px;
    padding: 6px 10px;
  }
  .floating-book {
    bottom: 40px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .floating-instagram {
    bottom: 98px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}




