body {
    font-family: 'Great Vibes', cursive;
    margin: 0;
    padding: 0;
    background-color: #EC42AF;
    background-image: url(images/background3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  @media (max-width: 600px) {
    header h1 {
      font-size: 4rem;
    }
  
    footer {
      font-size: 0.9rem;
    }
  }

  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  * {
    box-sizing: border-box;
  }

  h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 100px;
    color: white;
  }

  h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
  }
  
  body, p {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
  }

  header {
    background-color: #eb3bad;
    background-image: url(images/title.jpg);
    background-size: cover;                  /* Makes the image cover the header */
    background-position: center;             /* Centers the image */
    background-repeat: no-repeat;            /* Prevents tiling */
    height: 400px;                           /* Set header height */
    color: white;                            /* Text color for visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }




  #title {
    background-image: url("images/title.jpg");
    background-size: cover;
    background-position: center;
  }


#navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;           /* ✅ Keeps it aligned left */
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#navbar {
  position: relative;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 999;
}


  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  nav .divider {
    color: white; /* same as link color */
    padding: 0 8px;
  }

  nav a:hover {
    text-decoration: underline;
  }
  .booking-inner {
    margin-top: 50px;
    text-align: center;
  }

  section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-size: cover;                  /* Makes the image cover the header */
    background-position: center;             /* Centers the image */
    background-repeat: no-repeat;
    
  }

  h2 {
    margin-bottom: 15px;
  }

  footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: white;
    margin-top: 30px;
  }

  .slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    max-width: 600px; /* NEW: limits total width so buttons don't wrap */
  }
  
  .slider {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 1px;
    box-shadow: none;
    flex-shrink: 0; /* ensures it doesn't squish */
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
  }
  
  .slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 40px;
  }
  
  .slide-button {
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    flex-shrink: 0; /* NEW: prevent wrapping below */
    margin: -1%;
  }
  
  .slide-button:hover {
    background-color: rgba(0,0,0,0.8);
  }

  html {
    scroll-behavior: smooth;
  }