* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2629D5;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #2629D5;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d7ccc8;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.parallax {
    background-image: url('image.png');
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ED2424;
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
footer {
    background-color: #2629D5;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

.booking-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.booking-form-container {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
}

.booking-form-container h2 {
    color: #1E1E1E;
    margin-bottom: 15px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
}

.form-description {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: black;
}

input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #D7CCC8;
  border-radius: 10px;
  font-size: 1rem;
  background: #FAFAFA;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  background: #1E1E1E;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

