/* Body and Font Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Header Section */
header {
    position: relative;
}

/* Navigation Bar */
/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Center everything horizontally */
    align-items: center; /* Center items vertically */
    padding: 10px 50px; /* Adjust padding */
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* Flex container to center logo and links */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    margin-right: 350px; /* Add space between logo and links */
}

.logo img {
    width: 85px;
    height: auto;
    border-radius: 8px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    justify-content: center; /* Center the nav links */
    align-items: center;
    margin: 0; 
}

.nav-links li {
    margin: 0 15px; /* Space between links */
}

.nav-links li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f0a500;
}

/* Book Now Button */
.btn-book {
    background: #f0a500;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background: #e08900;
}

/* Mobile Navigation */
.burger {
    display: none; /* Hide on larger screens */
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav {
        padding: 0 20px; /* Reduce padding for mobile */
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        flex-direction: column; /* Stack links vertically */
        align-items: flex-start; /* Align links to the left */
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%; /* Full width */
        height: auto; /* Take minimum space */
        transform: translateX(100%);
        transition: transform 0.5s ease;
        padding: 10px 0; /* Padding for vertical links */
    }

    .nav-links li {
        margin: 10px 0; /* Space between links */
        padding-left: 20px; /* Indentation for links */
    }

    .nav-links a {
        font-size: 16px; /* Slightly smaller text */
        padding: 5px 0;  /* Reduce padding */
    }

    .btn-book {
        margin-left: 20px; /* Add margin to button */
    }

    /* Show burger icon */
    .burger {
        display: block; /* Show burger icon */
    }

    /* Navigation Menu Active State */
    .nav-active {
        transform: translateX(0); /* Show nav links */
    }

    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}


/* Hero Section */
.hero {
    background-image: url('../image/contact.png'); 
    background-size: cover;
    background-position: center;
    height: 60vh; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; 
    position: relative;
    z-index: 0;
    padding: 20px; 
}

/* Add dark overlay to decrease brightness */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: -1; 
}

/* Headline */
.hero h1 {
    font-size: 48px; 
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); 
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 50vh; /* Slightly reduce height for smaller screens */
        padding: 15px; /* Reduce padding */
    }

    .hero h1 {
        font-size: 36px; /* Adjust headline size for tablets and small laptops */
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh; /* Further reduce height for mobile devices */
        padding: 10px; 
    }

    .hero h1 {
        font-size: 28px; /* Adjust headline size for mobile */
    }
}

/* facilyties */
/* facilyties */
.facilities {
    margin-top: 75px;
}

h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2.5em;
    color: #333;
}

.facility-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
    max-width: 1200px;
}

.facility-item {
    flex-basis: 30%;
    text-align: center;
    margin: 20px;
    padding: 20px;
    background-color: white; /* Original background color */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s; /* Transition for item movement */
    position: relative; /* Position relative for the pseudo-element */
    overflow: hidden; /* Hide the overflow */
}

.facility-item:hover {
    transform: translateY(-10px); /* Move item up on hover */
}

.facility-item::after {
    content: ""; /* Empty content for pseudo-element */
    position: absolute;
    top: 0; /* Start from the top */
    left: 0; /* Align to the left */
    right: 0; /* Stretch to the right */
    bottom: 0; /* Stretch to the bottom */
    background: rgba(240, 165, 0, 0.8); /* Background color for hover */
    transform: translateY(-100%); /* Start above the visible area */
    transition: transform 0.3s; /* Transition for moving effect */
    z-index: 0; /* Behind the text */
}

/* Hover effect applied only on text */
.facility-item:hover::after {
    transform: translateY(0); /* Move down to fill the item */
}

.facility-item h3,
.facility-item p {
    position: relative; /* Position relative for stacking order */
    z-index: 1; /* Bring text above the pseudo-element */
    color: #333; /* Original text color */
    transition: color 0.3s; /* Transition for text color */
}

/* Change text color to white on hover */
.facility-item:hover h3,
.facility-item:hover p {
    color: white; /* Text color on hover */
}

.facility-image {
    position: relative; /* Maintain stacking order */
    z-index: 1; /* Ensure image is above the hover background */
}

.facility-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Change to square if desired */
    object-fit: cover; /* Keep original aspect ratio */
    margin-bottom: 20px;
}

.facility-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.facility-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facility-item {
        flex-basis: 45%;
    }
}

@media (max-width: 576px) {
    .facility-item {
        flex-basis: 90%;
    }
}

/* whatsapp */
.whatsapp-link {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    z-index: 1000; 
  }
  
  .whatsapp-icon {
    width: 60px; 
    height: 60px;
    border-radius: 50%; 
    background-color: #25D366; 
    padding: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
  }

  


/* Footer */
footer {
    padding: 40px;
    background-color: #333;
    color: white;
    text-align: center;
}



/* Footer Section */
.footer {
  background-color: #1a1a1a; /* Dark background */
  color: white; /* Text color */
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex-basis: 30%;
  margin: 20px 0;
}

.footer-section h1, .footer-section h3 {
  font-family: 'Georgia', serif; /* Similar to the logo font */
  color: white;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.6;
}

.logo h1 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.stars {
  font-size: 18px;
  color: #fffd9e; /* Gold-like color */
  margin-bottom: 15px;
}

/* Social Media Links */
.social-media a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #c6a87d; /* Gold-like color */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      text-align: center;
  }

  .footer-section {
      flex-basis: 100%;
      margin: 10px 0;
  }
}
