* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fafafa;
    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: #865D44;
    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.jpeg');
    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: #8C5F4F;
   color: #FFECE4;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #865D44;
    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: #865D44;
    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: #3e2723;
}

input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0d5ce;
    border-radius: 10px;
    font-size: 1rem;
    background: #fafaf8;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    background: #c1b0aa;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}