/* ========== Base Layout ========== */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #312c2c;
  background: #f7f7f7;
  margin: 0; padding: 0;
}
header {
  background: #a68a64;
  color: #fff;
  padding: 1.7em 0 1em 0;
  text-align: center;
  margin-bottom: 0.2em;
}
nav {
  background: #44372e;
  padding: 1em 0;
  text-align: center;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1.5em;
  font-size: 1.08em;
  font-weight: 600;
  transition: color 0.2s;
}
nav a:hover, nav a.active {
  color: #eebb58;
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
  font-weight: 700;
  margin-top: 1.3em;
}
h1 {margin-bottom:0.25em;}
h2 {margin-bottom:0.17em;}
h3 {margin-bottom:0.13em;}
p {line-height: 1.65em;}

/* ========== Container ========== */
.container {
  max-width: 1000px;
  margin: 2em auto;
  padding: 2em;
  background: #f8f6f1;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(44,28,18,0.06);
}

/* ========== Rooms & Cards ========== */
.room-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 2em;
  justify-content: center;
}
.room-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(48,39,22,0.09);
  width: 280px;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5em;
  margin-bottom: 1em;
}
.room-card img, .gallery-list img, .gallery-grid img {
  width: 220px;
  height: 132px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.9em;
  background: #ddd;
}
.placeholder-img {
  width: 220px; height: 132px;
  background: #d3d3d3;
  color: #60606c;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  font-size: 1.2em;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9em;
  font-weight: 600;
  text-align: center;
}
.room-info h3 {margin: 0.6em 0 0.3em;}
.room-info ul {padding-left: 1.25em; line-height: 1.45em;}

.book-now-btn, button, .btn {
  background: linear-gradient(90deg, #eebb58 60%, #a68a64 100%);
  color: #44372e;
  border: none;
  border-radius: 19px;
  padding: 0.7em 2em;
  font-size:1.07em;
  cursor: pointer;
  font-weight: bold;
  margin-top:1em;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 3px 14px rgba(168,138,100,0.12);
}
.book-now-btn:hover, button:hover, .btn:hover {
  background: #a68a64;
  color: #fff;
}

/* ========== Gallery Page Styles ========== */
.gallery-list, .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8em;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2em;
}
.gallery-list img, .gallery-grid img {
  background: #f7f1e7;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(168,138,100,0.18);
  max-width: 270px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1em;
  transition: transform 0.22s;
}
.gallery-list img:hover, .gallery-grid img:hover {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 7px 28px rgba(168,138,100,0.32);
}

/* ========== Contact Page Styles ========== */
main section, .contact-section {
  max-width: 600px;
  margin: 2em auto;
  padding: 2.2em 2em;
  background: #fffaf2;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(168, 138, 100, 0.18);
}
main h2, .contact-section h2 {
  text-align: center;
  margin-bottom: 1em;
  color: #a68a64;
  font-size: 2em;
  letter-spacing: 1px;
}
main ul, .contact-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2em;
}
main ul li, .contact-section ul li {
  font-size: 1.07em;
  margin-bottom: 0.7em;
  padding-left: 2em;
  position: relative;
}
main ul li strong, .contact-section ul li strong {
  color: #a68a64;
}
main ul li:before, .contact-section ul li:before {
  content: '•';
  color: #eebb58;
  font-weight: bold;
  position: absolute;
  left: 0;
}
#contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 1.2em;
}
#contact-form input, #contact-form textarea {
  flex: 1 1 260px;
  padding: 0.8em;
  font-size: 1em;
  background: #f7f1e7;
  border: 1px solid #ded6c2;
  border-radius: 7px;
  box-shadow: 0 1px 6px rgba(168,138,100,0.08);
  transition: border 0.2s;
}
#contact-form input:focus, #contact-form textarea:focus {
  border: 1.5px solid #a68a64;
  outline: none;
}
#contact-form textarea {
  min-height: 80px;
  font-family: inherit;
  resize: vertical;
}
#contact-form button {
  flex-basis: 130px;
  background: linear-gradient(90deg, #eebb58 60%, #a68a64 100%);
  color: #fff;
  border: none;
  padding: 0.9em 2em;
  border-radius: 24px;
  font-size: 1.07em;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(168,138,100,0.12);
}
#contact-form button:hover {
  background: #a68a64;
  color: #fffbe2;
  box-shadow: 0 4px 18px rgba(168,138,100,0.22);
}
#contact-result {
  text-align: center;
  font-weight: bold;
  color: #2a7e2a;
  margin-top: 1.2em;
  font-size: 1.10em;
}

/* ========== Booking Form - Symmetric Fancy ========== */
.booking-section {
  max-width: 520px;
  margin: 2.5em auto;
  background: #fffaf3;
  padding: 2.7em 2em;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(168,138,100,0.13);
}
#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}
.booking-row {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: .9em;
}
.booking-row label {
  min-width: 120px;
  font-weight: 600;
  color: #a68a64;
  font-size: 1.08em;
}
.booking-row input,
.booking-row select {
  flex: 1;
  padding: .8em;
  border-radius: 7px;
  border: 1px solid #ded6c2;
  font-size: 1em;
  background: #f7f1e7;
  box-shadow: 0 1px 7px rgba(168,138,100,0.08);
  transition: border 0.18s;
}
.booking-row input:focus,
.booking-row select:focus {
  border: 1.7px solid #a68a64;
  outline: none;
}
#booking-form button {
  background: linear-gradient(90deg, #eebb58 60%, #a68a64 100%);
  color: #fff;
  border: none;
  padding: 1em 2.7em;
  border-radius: 19px;
  font-size: 1.09em;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 1.1em;
  transition: background 0.19s, box-shadow 0.21s;
  box-shadow: 0 3px 16px rgba(168,138,100,0.19);
}
#booking-form button:hover {
  background: #a68a64;
  box-shadow: 0 7px 28px rgba(168,138,100,0.32);
}
#booking-result {
  text-align: center;
  font-weight: bold;
  color: #2a7e2a;
  margin: 2em 0 0 0;
  font-size: 1.11em;
}

/* ========== Footer ========== */
footer {
  background: #a68a64;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  margin-top: 3em;
  font-size: .95em;
}

/* ========== Responsive Styles ========== */
@media (max-width: 800px) {
  .room-grid, .gallery-list, .gallery-grid { flex-direction: column; align-items: center;}
  .room-card, .gallery-list img, .gallery-grid img { width: 98vw; max-width: 330px;}
  header, nav, .container, .booking-section { padding-left: 4vw; padding-right: 4vw;}
}
@media (max-width: 600px) {
  main section, .contact-section, .booking-section { padding: 1em .44em; max-width: 99vw;}
  .booking-row { flex-direction: column; gap: .3em; align-items: stretch; margin-bottom: 1em;}
  .booking-row label { margin-bottom: 0.28em;}
}
