body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
}

.hero-section {
  position: relative; /* To position the button relative to this container */
  margin-top: 105px;
}

.hero-content {
  position: absolute;
  top: 80%; /* Adjust as needed 1 */
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
  z-index: 1; /* Ensure the button is above the image */
  text-align: center; /* Center text inside the container */
  width: 100%; /* Ensure the container spans full width */
  padding: 0 15px; /* Add padding for responsiveness */
}

.home-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #34642d;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-shadow: -1px -1px 0 #000, /* Top-left shadow */ 1px -1px 0 #000,
    /* Top-right shadow */ -1px 1px 0 #000,
    /* Bottom-left shadow */ 1px 1px 0 #000; /* Bottom-right shadow */
}

.home-button:hover {
  background-color: #387f39;
  color: #fff;
  transform: scale(1.05);
}

.img-fluid {
  width: 100%;
  height: auto;
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
  .home-button {
    padding: 8px 16px;
    /* font-size: 8px; */
    font-size: 10px;
  }
  .hero-content {
    top: 52%; /* Adjust positioning for smaller screens */
  }
}

.hero-content h1 {
  /* font-size: 48px; */
  margin-bottom: 20px;
  margin-top: 20px;
  color: #387f39;
  text-shadow: -1px -1px 0 #000, /* Top-left shadow */ 1px -1px 0 #000,
    /* Top-right shadow */ -1px 1px 0 #000,
    /* Bottom-left shadow */ 1px 1px 0 #000; /* Bottom-right shadow */
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 22px;
  }
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #387f39;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  padding: 12px 30px;
}

.cta-button:hover {
  background-color: #2980b9;
}

.feature-card .feature-icon {
  font-size: 48px;
  color: #387f39;
  margin-bottom: 20px;
}

.feature-card,
.testimonial-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 600;
  color: #387f39;
}

.navbar-nav .nav-item .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #387f39;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  /* padding: 80px 0; */
}

.room-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-details {
  padding: 10px;
  padding-top: 30px;
  padding-bottom: 50px;
}

.room-details h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.room-details p {
  margin-bottom: 15px;
}

.room-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.room-feature {
  display: flex;
  align-items: center;
}

.room-feature i {
  margin-right: 5px;
  color: #387f39;
}

.room-price {
  font-size: 18px;
  font-weight: 600;
  color: #387f39;
  margin-bottom: 15px;
}

.book-button {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.book-button:hover {
  background-color: #2980b9;
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}
.social-icons a:hover {
  color: #387f39;
}
/* Logo */
.logo {
  font-size: 24px;
  font-weight: 600;
  color: #387f39;
}

/* Facilities Grid */
.facility-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
}

.facility-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.facility-details h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.facility-details p {
  margin-bottom: 15px;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-link {
  margin-left: 30px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #387f39;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}
.contact-item i {
  font-size: 2rem;
  margin-bottom: 10px;
}
.contact-item p {
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

button[type="submit"] {
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #2980b9;
}

.contact-info {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 24px;
  margin-right: 15px;
  color: #387f39;
}

.nav-link {
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #387f39;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 80px 0;
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.blog-image-card {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.blog-content p {
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  background-color: #387f39;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #2980b9;
}

.navbar {
  padding: 20px 0;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #387f39;
}

/* Team Section */
.team-section {
  background-color: #fff;
  padding: 80px 0;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.team-member p {
  font-style: italic;
  color: #777;
}

.faq-section {
  padding: 80px 0;
}

.faq-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-answer {
  display: none;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #387f39;
}

.terms-section {
  padding: 80px 0;
}

.terms-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.terms-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.terms-container p {
  margin-bottom: 20px;
}

.terms-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.room-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.room-gallery img:hover {
  transform: scale(1.05);
}

.room-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.room-description h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #387f39;
}

.room-description p {
  margin-bottom: 20px;
}

.amenities {
  margin-bottom: 30px;
}

.amenities h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.amenities ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.amenities li {
  display: flex;
  align-items: center;
}

.amenities li i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.booking-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.book-now-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-align: center;
}

.book-now-btn:hover {
  background-color: var(--secondary-color);
}

.footer-links li {
  margin: 0 15px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 768px) {
  .room-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-info {
    grid-template-columns: 1fr;
  }

  .amenities ul {
    grid-template-columns: 1fr;
  }
}
.room-buttons {
  display: flex;
  justify-content: space-between;
}

.btn-secondary:hover {
  background-color: #27ae60;
}
/* styles.css */

.privacy-policy {
  padding: 100px 0 50px;
}

.privacy-policy h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #387f39;
}

.privacy-policy h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.privacy-policy p {
  margin-bottom: 15px;
}

.privacy-policy ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

/* Reviews section styles */
.reviews-section {
  padding: 2rem 0;
}

.add-review {
  margin-top: 2rem;
}

.add-review h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}

.add-review form {
  margin-top: 1rem;
}

.add-review .form-select,
.add-review .form-control {
  margin-bottom: 1rem;
}

.captcha-container {
  display: flex;
  align-items: center;
}

.captcha-image {
  padding: 0.5rem;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  border-radius: 0.25rem;
}

.captcha-input {
  margin-left: 1rem;
}
.reviews-section {
  padding: 2rem 0;
}
.reviews-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #387f39;
}
.add-review {
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 2rem;
  margin-top: 2rem;
}
.add-review h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}
.form-select,
.form-control {
  width: 100%;
}
.captcha-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.captcha-image {
  background: #f8f9fa;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
.form-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.captcha-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
.attraction-item {
  position: relative;
  overflow: hidden;
}

.attraction-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: #fff; /* White text color */
  transform: translateY(100%); /* Hide the caption initially */
  transition: transform 0.3s ease-in-out; /* Smooth transition for the hover effect */
}

.attraction-item:hover .attraction-caption {
  transform: translateY(0); /* Show the caption on hover */
}
.destinations {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.destination-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.destination-info {
  padding: 20px;
}
.destination-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #387f39;
}
.destination-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.destination-info p {
  margin-bottom: 15px;
}

.features {
  padding: 80px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
}

.feature i {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}
/* footer */
footer {
  background-color: #333;
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #387f39;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #387f39;
}
.map-container {
  position: relative;
  padding-bottom: 30%;
  height: 500px;

  overflow: hidden;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1200px;
  border: 0;
}
.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.team-member img {
  border-radius: 50%;
}
.team-member h3 {
  margin-top: 15px;
}
.team-member p {
  margin: 0;
}
/* gallery */
.gallery-main {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.video-gallery {
  padding-left: 1rem;
  border-left: 1px solid #ccc;
}
.gallery {
  display: grid;
  gap: 1rem;
}
.photo-gallery .gallery {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.video-gallery .gallery {
  grid-template-columns: 1fr;
}
.gallery-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  width: 100%;
  margin-left: 12px;
}
.gallery-item-image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.gallery-item-info {
  padding: 1rem;
}
.video-gallery-item {
  margin-bottom: 1rem;
}
.big-image-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-gallery-items: center;
}
.big-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.email-container {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.contactus-header {
  background-color: #35424a;
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 5px 5px 0 0;
}
.contactus-content {
  padding: 20px;
}
.contactus-footer {
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  font-size: 0.8em;
  color: #666;
  border-radius: 0 0 5px 5px;
}
.contactus-info-row {
  margin-bottom: 10px;
}
.contactus-label {
  font-weight: bold;
  min-width: 100px;
  display: inline-block;
}

.banner {
  position: relative;
  width: 100%;
  height: 500px; /* adjust height as needed */
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.banner-text h1 {
  font-size: 36px; /* adjust font size as needed */
}

@media (max-width: 768px) {
  .banner {
    height: 300px; /* adjust height for smaller screens */
  }

  .banner-text h1 {
    font-size: 24px; /* adjust font size for smaller screens */
  }
}

.blog-content-detail {
  padding: 20px; /* Example padding for the content */
  background-color: #f0f0f0; /* Example background color */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Example box shadow */
}

.category-desc {
  font-size: large;
}

.floating-banner {
  position: fixed;
  top: 50%; /* Center vertically */
  right: 0; /* Align to the left side */
  transform: translateY(-50%); /* Adjust for vertical centering */
  width: 250px; /* Adjusted width */
  height: 150px; /* Adjusted height */
  background-image: url("/assets/images/celebration.jpg"); /* Replace with Brajdham Farms image URL */
  background-size: cover; /* Ensure the image covers the entire banner */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image repetition */
  color: #fff; /* Text color for contrast */
  text-align: center;
  padding: 20px;
  z-index: 1000;
  font-family: Arial, sans-serif;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.floating-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.floating-banner .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
}

.floating-banner p {
  margin: 0;
  font-size: 16px;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* Add a semi-transparent background for text readability */
  padding: 10px;
  border-radius: 3px;
}
