@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Playfair+Display+SC:wght@400;700&display=swap');

/* 3Sixty Booking Widget Styles */

body {
  font-family: 'Playfair Display', serif;
  background-color: #0b0b15;
  background-image: url('images/bg-logo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 400px;
  color: #d2b46c;
  margin: 0;
  padding: 40px 20px;
}

h1, h2, h3 {
  font-family: 'Playfair Display SC', serif;
  color: #d2b46c;
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 28px;
}

.container,
.booking-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(11, 11, 11, 0.5); /* transparency restored */
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1 1 calc(25% - 16px);
  min-width: 150px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #d2b46c;
  font-size: 15px;
}

input,
select {
  height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  background-color: #3a3a3a;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

input:focus,
select:focus {
  outline: 2px solid #d2b46c;
}

button {
  background-color: #d2b46c;
  color: #000;
  font-weight: bold;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e0c57d;
}

.form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.next-button, .back-button {
  min-width: 140px;
  height: 48px;
}

/* Review Section */
.review-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.review-details {
  flex: 1;
}

.review-image {
  flex: 1;
  max-width: 320px;
}

.review-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Responsive */
/* Tablet and down - only switch to vertical below 768px */
@media screen and (max-width: 767px) {
  .form-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .form-group {
    width: 100%;
    max-width: 400px;
  }

  .form-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .next-button,
  .back-button {
    width: 100%;
    max-width: 400px;
  }
}