@import url("responsivity.css");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
}

::selection {
  background-color: #d2b48c;
}

.container {
  width: 90%;
  margin: 0 auto;
}

header {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.nav a:hover {
  color: gray;
}

main {
  padding: 40px 20px;
}

/* contact info */
.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.reservation {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.reservation-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.reservation-text {
  width: 80%;
  background-color: rgb(230, 230, 230);
  padding: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.reservation-text p {
  margin-bottom: 1em;
  text-align: justify;
}

/* form */
.reservation-form {
  width: 80%;
  background-color: rgb(230, 230, 230);
  padding: 20px;
  border-radius: 8px;
}

.reservation-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #333;
  border-radius: 5px;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: #1f2a56;
  font-weight: 600;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  accent-color: #0074e8;
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 20px;
}

button {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #4d4d4d;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}