:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --color-primary: #C89F91;
    --color-dark: #2E282A;
    --color-light: #FDFBF8;
    --color-text: #333333;
}

.info-text {
  text-align: center;
  background: #f6f1ed;
  padding: 20px;
  font-size: 15px;
  color: #444;
  margin-top: 50px;
}


.page-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 20px; 
}


.content-wrapper {
  max-width: 900px;
  width: 100%;
}


.form-container {
  background: #fff;
  padding: 25px 40px;
  border-radius: 6px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
  margin-bottom: 20px;
  max-width: 900px;
}


.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.form-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.form-header p {
  margin: 0;
  font-size: 13px;
  font-weight: normal;
  color: #333;
}


.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
}

input {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

span {
  color: red;
}

.booking-section {
  max-width: 850px;
  margin: 30px auto;
}

.next-details {
  text-align: right;
}

.next-btn {
  background: #888;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 18px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
}

.next-btn a {
    text-decoration: none;
    color: white;
}

.next-btn:hover {
  background: #666;
}


@media (max-width: 768px) {
  .page-center {
    min-height: 60vh;
    padding: 10px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .form-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .next-details {
    text-align: center;
  }
  
  .next-btn {
    width: 100%;
    font-size: 16px;
  }
}