/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: #FAEDCD;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    text-align: center;
    background-color: #cab47b;
    color: white;
    padding: 2rem 1rem;
    border-bottom: 4px solid #fce8bdde;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  header p {
    font-size: 1.1rem;
  }
  
  .reservation-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #FEFAE0;
  }
  
  .reservation-form {
    background-color: #fce8bdde;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    border: 2px solid #FFB703;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #5c4a20;
  }
  
  .form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2c88f;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #FEFAE0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-group input:focus {
    border-color: #FFB703;
    outline: none;
    box-shadow: 0 0 6px rgba(255, 183, 3, 0.5);
  }
  
  .submit-btn {
    background-color: #FFB703;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .submit-btn:hover {
    background-color: #e6a400;
    transform: translateY(-2px);
  }
  
  footer {
    text-align: center;
    background-color: #FEFAE0;
    padding: 1rem;
    font-size: 0.9rem;
    color: #5c4a20;
    border-top: 2px solid #FFB703;
  }
  