/* Reset and base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
  padding: 0 1rem;
}

a {
  color: #ff69b4; /* soft pink default */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Gradient background utility */
.gradient-bg {
  background: linear-gradient(90deg, #ff69b4 0%, #87ceeb 100%);
  color: white;
}

/* Header */
header {
  padding: 1rem 0;
  text-align: center;
  border-bottom: 3px solid #ff69b4;
  background: linear-gradient(90deg, #ff69b4 0%, #87ceeb 100%);
  color: white;
}

header h1 a {
  font-size: 2rem;
  color: white;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  margin: 0 1rem;
  font-weight: 600;
  color: white;
}

/* Main content */
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  background: linear-gradient(90deg, #ff69b4 0%, #87ceeb 100%);
  color: white;
  border-top: 3px solid #87ceeb;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Responsive navigation */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 0.5rem 0;
  }

  header h1 a {
    font-size: 1.5rem;
  }
}

/* Optional: Gradient buttons */
button, .btn {
  background: linear-gradient(90deg, #ff69b4 0%, #87ceeb 100%);
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

button:hover, .btn:hover {
  opacity: 0.85;
}

/* Hide toggle initially */
#menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-top: 0.5rem;
  z-index: 1001;
  position: relative;
}

/* Mobile styles */
@media (max-width: 768px) {
  header {
    position: relative;
  }

  #menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .rainbow-nav {
    flex-direction: column;
    align-items: flex-end;
    background: linear-gradient(135deg, #ff69b4, #87ceeb);
    position: absolute;
    right: 1rem;
    top: 3.5rem;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    gap: 0.5rem;
  }

  .rainbow-nav.show {
    opacity: 1;
    transform: scaleY(1);
  }

  .nav-btn {
    display: block;
    width: 100%;
    text-align: right;
    padding: 0.5rem 1rem;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.book-btn {
  margin-left: auto;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-btn {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .book-btn a {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }
}

.navbar {
  background-color: white;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu a {
  margin: 0.25rem 0;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.circle-menu {
      display: flex;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }
    .circle-menu a {
      background-color: #f8f8f8;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      text-align: center;
      line-height: 60px;
      text-decoration: none;
      color: #333;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    .circle-menu a:hover {
      background-color: #ff69b4;
      color: white;
      transform: scale(1.1);
    }

    /* BOOK NOW button styling */
    .auth-buttons {
      display: flex;
      justify-content: center;
      padding: 1rem;
    }

    .btn {
      padding: 10px 24px;
      border-radius: 9999px;
      font-weight: 600;
      text-decoration: none;
      font-family: system-ui, sans-serif;
      font-size: 14px;
      transition: background 0.3s ease, transform 0.2s ease;
      display: inline-block;
      text-align: center;
      border: none;
    }

    .btn-gradient {
      background: linear-gradient(135deg, #d8c6f1, #b2e6f9);
      color: #333;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .btn-gradient:hover {
      background: linear-gradient(135deg, #cdb7ee, #a3def3);
      transform: scale(1.05);
    }