/* General text styles */
.text {
  font-style: normal;
  font-family: 'Times New Roman', Times, serif;
}


/* Styling anchor tags (links) */
a {
  color: #333; /* Default link color */
  font-family: 'Times New Roman', Times, serif; /* Font style */
  text-decoration: none; /* Remove underline */
  padding: 10px 20px; /* Add some padding around the link */
}

/* Hover effect for anchor links */
a:hover {
    color: #ff1809 !important;
  transform: scale(1.2);
  
}

.navbar-brand:hover {
  background-color: transparent;
  transform: none;
  color: inherit;
}

a[href="FORM.HTML"]:hover {
  background-color: transparent;
  transform: none;
  color: inherit;
}

/* Styling the Amenities section */
#Amenities {
  min-height: 800px;
  width: auto;
  background-color: #f0f0f0;
  padding: 30px 0; /* Add some padding for spacing */
}

/* Styling the amenities1 section */
#amenities1 {
  line-height: 50px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px; /* Remove margin-bottom */
  background-color: rgba(234, 225, 225, 0.493);
  color: #eb2d0bc9;
  padding: 10px;
  border-radius: 10px;
}

/* Card text styling */
.card-text {
  font-size: 15px;
  font-family: 'Times New Roman', Times, serif;
  font-style: normal;
}

/* Card title styling */
.card-title {
  font-style: italic;
}

/* Grid section styling */
#grid {
  min-height: 1000px;
  padding: 100px;
  padding-bottom: 0; /* Remove bottom padding */
  padding-top: 0;
}

/* Hover effect for cards */
.card:hover {
  background-color: #d2b48c;
  color: white;
  transform: scale(1.1);
}

/* Footer section styling */
footer {
  background-color: #333; /* Dark background color */
  color: white; /* Text color */
  padding: 20px;
  position: relative;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 150px; /* Ensures minimum height for footer */
}

.footer-section.contact {
  text-align: center; /* Center align text for better appearance */
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin: 10px 0;
}

.footer-section i {
  margin-right: 10px;
}

.footer-section .contact-item {
  display: flex;
  align-items: center;
  justify-content: center; /* Center items for better layout */
}

.copyright {
  text-align: center;
  padding-bottom: 10px;
  color: white; /* Text color */
  width: 100%;
}

/* Styling the event section */
#event {
  display: flex;
}

/* Dropdown item styling */
.dropdown-item {
  text-align: center;
}

/* Rounded image styling */
.rounded-image {
  border-radius: 50%;
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Animated text styling */
.animated-text {
  font-size: 20px;
  color: #e41818;
  animation: fadeIn 2s ease-in-out;
}

/* Animated container styling */
.animated-container {
  background: linear-gradient(to right, #edd45690, #c97a707b); /* Gradient background */
  padding: 20px;
  border-radius: 10px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

/* Animation for the container */
.animated-container.visible {
  opacity: 1;
  animation: fadeIn 1s ease-in-out forwards, slideInFromLeft 1s ease-in-out forwards, scaleUp 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideInFromLeft {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

@keyframes scaleUp {
  0% { transform: scale(0.8); }
  100% { transform: scale(1); }
}
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
}
button
{
    border:none;
}

/* Text container within the animated container */
.animated-container .text-container {
  position: relative;
  z-index: 1; /* Ensures text is above background image */
  color: black; /* Text color */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: medium; /* Adds shadow for better readability */
}

/* Fade-in animation for text in the container */
.animated-container.visible .text-container h2,
.animated-container.visible .text-container p {
  opacity: 0;
  animation: fadeInText 1s ease-in-out forwards;
}

.animated-container.visible .text-container h2 {
  animation-delay: 0.5s; /* Delay for heading */
  color: #e41818;
}

.animated-container.visible .text-container p {
  animation-delay: 1s; /* Delay for paragraph */
}

@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Background image container */
.background-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional: Add a semi-transparent overlay for text contrast */
  z-index: 0; /* Ensures the background is behind text */
}

/* Styling for the heading in animated container */
.animated-container h2 {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: white;
  background: linear-gradient(135deg, #a9e30b84, #feb47b80); /* Gradient background */
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  font-size: 2em;
  animation: arrowAnim 2s infinite;
}

@keyframes arrowAnim {
  0% {
      clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  }
  50% {
      clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
  }
  100% {
      clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  }
}
