: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;
}

.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);
}

  .btn {
    padding: 0.5rem 1rem;
    background-color: #f39c12;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 1s ease forwards;
  }
  
  .btn:hover {
    background-color: #d35400;
    transform: scale(1.05);
  }
  
  .btn.outline {
    background-color: transparent;
    border: 2px solid #f39c12;
    color: #f39c12;
  }
 
  
  /* Booking Container */
  .booking-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  
  .form-section, .summary-section {
    flex: 1;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
  }
  
  .form-section:hover, .summary-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  form label, form p {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    animation: fadeIn 1s ease forwards;
  }
  
  form input[type="text"],
  form input[type="date"],
  form input[type="number"],
  form select {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1.2s ease forwards;
  }
  
  form input:focus,
  form select:focus {
    border-color: #f39c12;
    box-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
  }
  
  form input[type="radio"],
  form input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1);
    transition: transform 0.2s ease;
  }
  
  form input[type="radio"]:hover,
  form input[type="checkbox"]:hover {
    transform: scale(1.2);
  }
  
  .summary-section .total {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #e67e22;
    animation: fadeInUp 0.8s ease forwards;
  }
  
 
footer {
    background: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
  }
  
  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: #007bff;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
    footer a:hover {
    transform: scale(1.1);
    color: #007bff;
  }
  
  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%;
  }
  

  
  /* Responsive Design */
  @media (max-width: 768px) {
    .booking-container {
      flex-direction: column;
    }
  
    .btn {
      width: 100%;
      margin-top: 1rem;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  