body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  .site-header {
    background-color: #ffffff;
    padding: 3rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    color: #4b5563;
  }
  :root {
    --primary-green: #2d5f4d;
    --secondary-blue: #0ab23a;
    --accent-white: #f8f9fa;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--primary-green);
    background: var(--accent-white);
    /* position: fixed; */
    width: 100%;
    border-bottom: 2px solid var(--primary-green);
  }
  .logo-section {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
  }
  .nav-links button {
    border: none;
    padding: 0.7rem 2rem;
    cursor: pointer;
  }
  #bookingFormContainer {
    display: none;
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  form input, form select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  form button[type="submit"] {
    margin-top: 1.5rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
  }
  .success-message {
    margin-top: 1rem;
    color: green;
    font-weight: bold;
    text-align: center;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.3s;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    left: 0;
    background: var(--secondary-blue);
    transition: width 0.3s ease, left 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
    left: 0;
  }
  .nav-links a:hover {
    color: var(--secondary-blue);
  }
  .search-button {
    background: var(--secondary-blue);
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .search-button:hover {
    background: #8ca31a;
  }
  .gallery-section {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .gallery-img:hover {
    transform: scale(1.03);
    opacity: 0.9;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }
  
  .gallery-card:hover .overlay {
    background: rgba(0, 0, 0, 0.3);
  }
  
  .overlay button {
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .gallery-card:hover .overlay button {
    opacity: 1;
    transform: translateY(0);
  }
  
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 90%;
  }
  
  .lightbox-inner {
    position: relative;
  }
  
  .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .close-btn:hover {
    color: #d1d5db;
  }
  
  .site-footer {
    background-color: #1f2937;
    color: white;
    padding: 2rem 0;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    color: white;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #d1d5db;
  }

  footer {
    background: #333;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
  }
  
  footer h3{
    color: var(--accent-white);
  }
  footer div {
    margin: 10px;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s, border-bottom 0.3s;
    position: relative;
  }
  
   footer a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #006d04;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
    footer a:hover {
    transform: scale(1.1);
    color: #0a6100;
  }
  
  a:hover::after {
    width: 100%;
  }
  
  .social-icons img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  
  .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
    width: 100%;
  }  