:root {
  --primary: #1f6fa8;
  --accent: #2ecc71;
  --dark: #1d2b36;
  --light: #f4f7fb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
}

.site-header {
  background: linear-gradient(90deg, var(--primary), #6dd5fa);
  color: white;
  text-align: center;
  padding: 60px 20px 40px;
}

.site-header h1 { margin: 0; font-size: 2.6rem; }
.site-header p { margin-top: 10px; font-size: 1.1rem; }

.main-nav {
  display: flex;
  justify-content: center;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.main-nav a {
  padding: 18px 30px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--primary);
  color: white;
}

main { max-width: 1100px; margin: auto; padding: 40px 20px; }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero img { width: 100%; border-radius: 14px; }

.actions .btn { margin-right: 12px; }

.features h2,
.amenities h2,
.cta h2 {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: white;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.feature-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.amenities ul {
  columns: 2;
  max-width: 700px;
  margin: 30px auto 0;
  font-size: 1.05rem;
}

.cta {
  background: white;
  margin-top: 50px;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary { background: var(--accent); color: white; }
.btn.secondary { border: 2px solid var(--accent); color: var(--accent); }

/* Compact site footer: smaller, tighter, and responsive */
.site-footer {
  background: white;
  text-align: center;
  padding: 12px 10px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: #555;
}

.site-footer p {
  margin: 2px 0;
}

.site-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .copyright {
  font-size: 0.78rem;
  color: #777;
  margin: 0;
}

/* Optional compact layout: place footer items in a single row on wide screens */
.site-footer.compact {
  display: flex;
  align-items: center;
  justify-content: center; /* center the footer content */
  gap: 20px;
  padding: 10px 18px;
  flex-wrap: wrap; /* allow items to wrap on narrower screens */
}

.site-footer.compact .left,
.site-footer.compact .right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

/* Small screens: stack compact footer content */
@media (max-width: 600px) {
  .site-footer.compact {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .amenities ul { columns: 1; }
}

.slideshow {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.slides img {
  width: 100%;
  border-radius: 12px;
  display: none;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(31, 111, 168, 0.8);
  color: white;
  border: none;
  font-size: 28px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
}

.slide-btn:hover {
  background: rgba(31, 111, 168, 1);
}

.slide-btn.prev {
  left: 10px;
}

.slide-btn.next {
  right: 10px;
}

.pricing-table {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  border-collapse: collapse;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
}

.pricing-table thead {
  background: var(--primary);
  color: white;
}

.pricing-table tbody tr:nth-child(even) {
  background: #f4f7fb;
}

.rate-notes {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

.content {
  background: white;
  padding: 36px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  margin-bottom: 60px;
}

.content h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.9rem;
  color: var(--primary);
}

.content p {
  max-width: 820px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.pricing-table {
  box-shadow: none;
  border: 1px solid #e5e8ee;
}

.pricing-table th {
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

.pricing-table td:last-child {
  font-weight: 600;
  color: var(--primary);
}