/* 🔹 START: Typography & Base Layout */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #bfa14b;
  margin: 0;
  padding: 10px 0;
}

.container {
  max-width: 1000px;
  margin: auto;
  border: 2px solid #bfa14b;
  padding: 30px;
  border-radius: 10px;
}

html {
  overflow-y: scroll;
}
/* 🔹 END: Typography & Base Layout */

/* 🔹 START: Logo Styling */
.logo-frame {
  width: 270px;
  height: 250px;
  overflow: hidden;
  margin: 15px auto;
  border-radius: 10px;
  position: relative;
}

.logo-frame img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
/* 🔹 END: Logo Styling */

/* 🔹 START: Booking Form Styling */
#booking input[type="text"],
#booking input[type="email"],
#booking input[type="tel"],
#booking input[type="date"],
#booking select {
  width: 100%;
  padding: 8px;
  border: 1px solid #bfa14b;
  border-radius: 4px;
  background-color: white;
  color: #bfa14b;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
}

#booking select:focus,
#booking input:focus {
  outline: none;
  border-color: #bfa14b;
  box-shadow: 0 0 4px #bfa14b;
}

#booking select optgroup {
  font-weight: bold;
  color: #bfa14b;
  background-color: #fdfaf2;
  padding: 4px 0;
}

#booking select option {
  padding-left: 10px;
  color: #5c4a1f;
}

#booking button {
  background-color: white;
  color: #bfa14b;
  border: 2px solid #bfa14b;
  padding: 10px 20px;
  font-weight: bold;
  font-family: inherit;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  min-width: 150px;
  min-height: 44px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#booking button:hover {
  background-color: #bfa14b;
  color: white;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
}

.service-table td {
  padding: 8px;
  vertical-align: top;
}

@media screen and (max-width: 600px) {
  .service-table tr {
    display: block;
    margin-bottom: 10px;
  }

  .service-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .service-table label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }

  #booking button {
    width: 100%;
  }
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #bfa14b;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-align: center;
}

#confirmation {
  margin-top: 20px;
  color: #bfa14b;
  font-weight: bold;
}

iframe {
  border: 1px solid #bfa14b;
  border-radius: 8px;
  width: 100%;
  max-width: 1000px;
  height: 800px;
  margin: 20px auto;
  display: block;
}
/* 🔹 END: Booking Form Styling */

/* 🔹 START: Headings & Text */
h1 {
  font-size: 36px;
  text-align: center;
  margin: 10px 0 0 0;
}

h2 {
  font-size: 20px;
  text-align: center;
  margin: 5px 0 20px 0;
}

p {
  text-align: center;
  margin-bottom: 20px;
}
/* 🔹 END: Headings & Text */

/* 🔹 START: Menu Bar & Navigation */
.menu-bar {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 15px;
}

.gold-line {
  border: none;
  border-top: 1px solid #bfa14b;
  margin: 10px auto;
  width: 100%;
  max-width: 1000px;
}

.menu-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 16px;
  font-weight: bold;
}

.menu-link {
  color: #bfa14b;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.menu-link:hover {
  color: #a88e3f;
  border-bottom: 2px solid #a88e3f;
}

.menu-link.active {
  border-bottom: 2px solid #bfa14b;
}
/* 🔹 END: Menu Bar & Navigation */

/* 🔹 START: Section & Columns Layout */
.columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  min-width: 300px;
}

.section {
  padding-top: 5px;
  margin-top: 0px;
}
/* 🔹 END: Section & Columns Layout */

/* 🔹 START: Service List Styling */
ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 5px 0;
  border-bottom: 1px dashed #e0d8b0;
}

.service {
  display: flex;
  justify-content: space-between;
}

.sublist {
  padding-left: 20px;
  font-size: 14px;
}
/* 🔹 END: Service List Styling */

/* 🔹 START: Links & Footer */
a {
  color: #bfa14b;
  text-decoration: none;
}

a:hover {
  color: #a88e3f;
  text-decoration: underline;
}

.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

.contact-info {
  margin-top: 10px;
}
/* 🔹 END: Links & Footer */

/* 🔹 START: Confirmación de Reserva */
.popup-confirm {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  font-family: inherit;
  color: #bfa14b;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.popup-box h3 {
  margin-top: 0;
  font-size: 20px;
  text-align: center;
}

.popup-box p {
  margin: 5px 0;
  font-size: 16px;
}

.popup-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.popup-actions button {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid #bfa14b;
  background-color: white;
  color: #bfa14b;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.popup-actions button:hover {
  background-color: #bfa14b;
  color: white;
}
/* 🔹 END: Confirmación de Reserva */
