:root {
  --color-primary: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary: #f59e0b;
  --color-text-dark: #111827;
  --color-text-muted: #6b7280;
  --color-bg-light: #f9fafb;
  --color-error: #dc2626;
}

/* Navigation */
header nav {
  background-color: #1e293b;
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.2);
}

header nav a {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  text-decoration: none;
}

header nav a:hover,
header nav a:focus {
  color: #fbbf24;
  outline: none;
  text-decoration: underline;
}

header nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fbbf24;
}

header nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 768px) {
  header nav ul {
    display: none;
  }
}

/* === Base Styles === */
body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-bg-light);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

h1 {
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: 0.1em;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p, li, label {
  font-weight: 400;
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.5;
}

small, .text-muted {
  color: var(--color-text-muted);
}

html {
  scroll-behavior: smooth;
}

/* === Links and Buttons === */
button,
a {
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

a:hover,
button:hover {
  transform: scale(1.03);
}

/* === Form Input Styles === */
input,
select {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* === Error Messages === */
.error-message {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
  color: #dc2626; /* red-600 */
}

.error-message.visible {
  display: block;
}

/* === Utility Classes === */
.hidden {
  display: none !important;
}

/* === Room Card Styles === */
.room-card {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.room-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* === Room Image Styles === */
.room-image {
  height: 400px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.room-image:hover {
  transform: scale(1.1);
  z-index: 10;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* === Responsive Images === */
@media (max-width: 768px) {
  .room-image {
    height: 200px;
  }
}

/* === Footer Links === */
footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #000;
}

/* --- Reviews Section --- */

.reviews-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.review-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 320px;
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.review-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #222;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Services Section */
#services {
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

#services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #2d3748;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 36px;
  color: #4a5568;
  margin-bottom: 15px;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a202c;
}

.service-description {
  font-size: 16px;
  color: #4a5568;
}

/* Promotions Section */
#promotions {
  background-color: #fef3c7; /* light yellow */
  padding: 60px 20px;
  text-align: center;
}

#promotions h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #b45309; /* dark amber */
  text-transform: uppercase;
}

#promotions .promotion-card {
  background-color: #fff;
  border: 1px solid #facc15;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 30px;
  margin: 20px auto;
  max-width: 700px;
  text-align: left;
}

#promotions .promotion-card h3 {
  font-size: 1.5rem;
  color: #92400e;
  margin-bottom: 10px;
}

#promotions .promotion-card p {
  font-size: 1rem;
  color: #4b5563;
}

/* FAQ Section */
#faq {
  background-color: #f3f4f6; /* light gray */
  padding: 60px 20px;
  text-align: center;
}

#faq h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #111827; /* dark gray */
  text-transform: uppercase;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  max-width: 700px;
  margin: 20px auto;
  padding: 25px 30px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: #f9fafb;
}

.faq-item h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
}

/* Contact Section */
#contact {
  background-color: #e0f2fe; /* light blue */
  padding: 60px 20px;
  text-align: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #0369a1; /* dark cyan */
  text-transform: uppercase;
}

.contact-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1rem;
  color: #0c4a6e;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-map {
  margin-top: 40px;
  max-width: 700px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}