/* Booking Hero */
.booking-hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--wood-dark), var(--text-color)); /* tamnija pozadina */
  color: #fff;
}

.booking-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.booking-hero p {
  font-size: 1.1rem;
  color: var(--wood-light);
}

/* Booking Container */
.booking-container {
  max-width: 700px;
  margin: 3rem auto;
  background: var(--wood-light); /* svijetlo drvo umjesto bijelog */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}


.booking-container form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row div {
  flex: 1;
}

label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.3rem;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  background: #fafafa;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

input:focus, select:focus, textarea:focus {
  border: 1px solid var(--accent-color);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.25); /* accent glow */
  outline: none;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Buttons */
button.btn, 
a.btn {
  display: inline-block;
  text-align: center;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-color), var(--wood-dark));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

button.btn:hover, 
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

a.whatsapp-btn {
  background: #00230d;
  margin-top: 0.5rem;
}

a.whatsapp-btn:hover {
  background: #1da851;
}

/* Mobile optimizacija */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}
/* Booking page links */
a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--wood-dark);
  text-decoration: underline;
}
