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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #1e1e1e;
  color: #f5f5f5;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #1e1e1e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0; 
  width: 100%;
  z-index: 1000; 
}


header .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

header .logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 50px;
}

header a{
  text-decoration: none;
  color: inherit;

}

header a:hover{
  color: #00bfa6;
  text-decoration: underline;

}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00bfa6;
}

nav .book-btn {
  background-color: #00bfa6;
  color: #1e1e1e;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #00bfa6;
}

.contact-form {
  background-color: #2e2e2e;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #444;
  color: #f5f5f5;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #555;
  outline: none;
  box-shadow: 0 0 5px #00bfa6;
}

.contact-form button {
  background-color: #00bfa6;
  color: #1e1e1e;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background-color: #00a78f;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
}