:root {
  --blue-primary: #3d7a8a;
  --blue-dark: #2c5f6e;
  --blue-light: #e8f4f7;
  --blue-mid: #6ba3b2;
  --text-dark: #2c3e50;
  --text-muted: #5a7585;
  --bg-light: #f5fbfd;
  --white: #ffffff;
}

/* Base */
body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--blue-dark);
}

a {
  color: var(--blue-primary);
  text-decoration: none;
}

a:hover {
  color: var(--blue-dark);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid #d6eaf1;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--blue-dark) !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.navbar-brand span {
  color: var(--blue-primary);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-primary) !important;
}

.btn-nav-reserve {
  background-color: var(--blue-primary);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 0.45rem 1.2rem !important;
  font-weight: 600;
}

.btn-nav-reserve:hover {
  background-color: var(--blue-dark);
  color: var(--white) !important;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.65rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s;
  display: inline-block;
}

.btn-primary-custom:hover {
  background-color: var(--blue-dark);
  color: var(--white);
}

.btn-outline-custom {
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  border-radius: 4px;
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-custom:hover {
  background-color: var(--blue-primary);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 70, 85, 0.70) 0%, rgba(30, 70, 85, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero-small {
  min-height: 50vh;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Content blocks */
.content-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.content-img-sm {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
}

/* CTA Banner */
.cta-banner {
  background-color: var(--blue-dark);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.cta-banner p {
  opacity: 1;
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
}

.btn-cta-white {
  background-color: var(--white);
  color: var(--blue-primary);
  border-radius: 4px;
  padding: 0.75rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.2s;
}

.btn-cta-white:hover {
  background-color: var(--blue-light);
  color: var(--blue-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* FAQ */
.accordion-item {
  border: none;
  border-bottom: 1px solid #d6eaf1;
  border-radius: 0 !important;
}

.accordion-button {
  font-weight: 600;
  color: var(--text-dark);
  background-color: transparent;
  font-size: 1rem;
  padding: 1.2rem 0;
}

.accordion-button:not(.collapsed) {
  color: var(--blue-primary);
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  filter: hue-rotate(180deg);
}

.accordion-body {
  color: var(--text-muted);
  padding: 0 0 1.2rem 0;
  line-height: 1.8;
}

.faq-img {
  width: 100%;
  max-width: 360px;
  border-radius: 6px;
  margin-top: 1rem;
}

/* Contact */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background-color: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
  font-size: 1.1rem;
}

.contact-map {
  width: 100%;
  height: 480px;
  border-radius: 6px;
  border: none;
}

/* Pricing */
.price-card {
  border: 1px solid #d6eaf1;
  border-radius: 8px;
  padding: 2rem;
  background: var(--white);
  height: 100%;
}

.price-card.featured {
  border-color: var(--blue-primary);
  background-color: var(--bg-light);
}

.price-card .season-badge {
  display: inline-block;
  background-color: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 20px;
  padding: 0.25rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}

.price-card.featured .season-badge {
  background-color: var(--blue-primary);
  color: var(--white);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e8f4f7;
  font-size: 0.97rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .price-amount {
  font-weight: 700;
  color: var(--blue-dark);
}

.extras-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 1.5rem 2rem;
}

/* Reservation form */
.reservation-form {
  background: var(--white);
  border: 1px solid #d6eaf1;
  border-radius: 8px;
  padding: 2rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.form-control, .form-select {
  border: 1px solid #c8dfe8;
  border-radius: 4px;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(61,122,138,0.12);
}

/* Intro text box */
.intro-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--blue-primary);
  border-radius: 4px;
  padding: 1.8rem 2rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

/* Feature icons */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.4rem 0;
  padding-left: 1.6rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.97rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: 700;
}

/* Footer */
footer {
  background-color: var(--blue-dark);
  color: rgba(255,255,255,0.9);
  padding: 3rem 0 1.5rem;
}

footer h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.5px;
}

footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--white);
}

footer p {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.2rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}

.footer-bottom a {
  text-decoration: underline;
}

/* Page header */
.page-header {
  background-color: var(--blue-light);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid #d6eaf1;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0;
}

.page-header .section-label {
  color: var(--blue-dark);
}

.page-header > .container > p {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .content-img { height: 280px; }
  .section-padding { padding: 50px 0; }
  .hero { min-height: 70vh; }
  .hero-small { min-height: 40vh; }
  .contact-map { height: 320px; }
}
