/* ==========================================================================
   Lakki Beach Hotel — stylesheet
   ========================================================================== */

:root {
  --color-teal: #7fc9be;
  --color-teal-dark: #6ab8ac;
  --color-tan: #c4a981;
  --color-dark: #2b2b2b;
  --color-grey-text: #6b6b6b;
  --color-grey-bg: #f2f2f2;
  --font-heading: 'Noto Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark);
  line-height: 1.6;
  font-size: 15px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 12px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 70px 0; }
.section-tight { padding: 40px 0; }

.section-title {
  font-size: 32px;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 16px;
  margin-bottom: 20px;
  display: inline-block;
}
.section-title.on-dark { border-bottom-color: rgba(255,255,255,.4); color: #fff; }

.section-subtitle {
  color: var(--color-grey-text);
  margin-top: -10px;
  margin-bottom: 30px;
}
.section-subtitle.on-dark { color: rgba(255,255,255,.85); }

.btn {
  display: inline-block;
  background: var(--color-teal);
  color: #fff;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s ease;
}
.btn:hover { background: var(--color-teal-dark); }

/* ---------- Top bar ---------- */
.topbar {
  border-bottom: 1px solid #ececec;
  font-size: 13px;
  color: var(--color-grey-text);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 8px;
}
.topbar strong { color: var(--color-dark); }
.topbar-flags { display: flex; gap: 10px; align-items: center; }
.topbar-flags img { width: 22px; height: auto; border-radius: 2px; }
.topbar-right { display: flex; align-items: center; gap: 6px; }

/* ---------- Main nav ---------- */
.navbar { padding: 18px 0; }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.brand { text-align: center; }
.brand-name { font-family: var(--font-heading); font-size: 26px; font-weight: 700; }
.brand-sub { font-size: 11px; letter-spacing: .2em; color: var(--color-grey-text); }
.brand-sub .fa-star { color: #e0a53e; font-size: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #ddd url('/images/hero.jpg') center/cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-box {
  background: #fff;
  max-width: 420px;
  padding: 50px 45px;
  margin-left: 8%;
}
.hero-box h1 { font-size: 30px; margin-bottom: 6px; }
.hero-box p { margin: 0 0 22px; }

/* ---------- Two column layout ---------- */
.two-col {
  display: flex;
  gap: 60px;
  align-items: center;
}
.two-col > div { flex: 1; min-width: 280px; }
.two-col.reverse { flex-direction: row-reverse; }

.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.collage img:first-child { grid-column: 1 / span 2; }

/* ---------- Rooms ---------- */
.bg-grey { background: var(--color-grey-bg); }

/* Legacy features list (kept for safety) */
.features { list-style: none; margin: 0; padding: 0; }
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  font-weight: 700;
  border-bottom: 1px solid #e6e6e6;
}
.features li:last-child { border-bottom: none; }
.features .fa { color: var(--color-teal); font-size: 18px; }
.features-box { background: #fff; }

/* Rooms intro image */
.rooms-intro { align-items: flex-start; }
.rooms-hero-img {
  border-radius: 4px;
  width: 100%;
  max-width: 480px;
  flex: 0 0 45%;
  height: 380px;
  object-fit: cover;
}

/* Amenity icon cards */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.amenity-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s ease, transform .2s ease;
}
.amenity-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.amenity-card .fa {
  font-size: 26px;
  color: var(--color-teal);
}
.amenity-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

/* Room type cards */
.room-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.room-type-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 26px;
  border-left: 4px solid var(--color-teal);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.room-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.room-type-header h3 {
  font-size: 17px;
  margin: 0;
  font-family: var(--font-heading);
}
.capacity-badge {
  background: var(--color-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.capacity-badge .fa { margin-right: 4px; }
.room-type-card p {
  margin: 0;
  font-size: 14px;
  color: var(--color-grey-text);
  line-height: 1.6;
}

/* ---------- Breakfast ---------- */
.bg-tan { background: var(--color-tan); color: #fff; }
.bg-tan p { color: rgba(255,255,255,.9); }

.breakfast-section {
  background: var(--color-tan);
  color: #fff;
  overflow: hidden;
}
.breakfast-inner {
  display: flex;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}
.breakfast-text { flex: 1 1 46%; min-width: 280px; }
.breakfast-eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 18px;
  color: #fff;
}
.breakfast-text .section-title { display: block; width: fit-content; }
.breakfast-eyebrow .fa { font-size: 14px; }
.breakfast-text p { color: rgba(255,255,255,.92); margin-bottom: 20px; }
.breakfast-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.breakfast-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}
.breakfast-highlights .fa-check {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  flex-shrink: 0;
}
.breakfast-image { position: relative; flex: 0 0 46%; padding: 0 14px 14px 0; }
.breakfast-image::after { content: ''; position: absolute; z-index: 0; right: 0; bottom: 0; width: 82%; height: 82%; background: rgba(255,255,255,.18); }
.breakfast-image img { position: relative; z-index: 1; width: 100%; height: 390px; object-fit: cover; box-shadow: 0 8px 24px rgba(43,43,43,.18); }

@media (max-width: 900px) {
  .breakfast-inner { flex-direction: column; }
  .breakfast-image { flex: none; width: 100%; }
}
@media (max-width: 640px) {
  .breakfast-highlights { grid-template-columns: 1fr; }
  .breakfast-image img { height: 280px; }
}

/* ---------- Gallery ---------- */
.gallery-section { background: #f4f4f1; }
.gallery-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
  text-align: left;
}
.gallery-header .section-title { display: block; margin-bottom: 0; }
.gallery-header .section-subtitle { max-width: 32ch; margin: 0 0 6px; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item--tall {
  grid-row: 1 / span 2;
}
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(5) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 3 / span 2; grid-row: 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 38%;
  background: linear-gradient(transparent, rgba(28,43,46,.82));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background .3s ease;
}
.gallery-overlay span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.gallery-item:hover .gallery-overlay { background: linear-gradient(transparent, rgba(28,43,46,.94)); }

@media (max-width: 900px) {
  .gallery-header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-item--tall,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-header .section-subtitle { margin-top: 0; }
}

/* ---------- Teal info section ---------- */
.bg-teal { background: var(--color-teal); color: #fff; }
.bg-teal p { color: rgba(255,255,255,.9); }
.amenities-section {
  background: var(--color-teal);
  padding-bottom: 100;
}
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.info-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 300px;
  background: transparent;
  color: #fff;
  box-shadow: none;
  overflow: hidden;
}
.info-card--reverse { flex-direction: row-reverse; }
.info-card-img { flex: 0 0 52%; height: 300px; }
.info-card-img img { width: 100%; height: 100%; object-fit: cover; }
.info-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 44px;
}
.info-card-icon, .info-card-hours, .info-card-badge { display: none; }
.info-card h3 {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 18px;
  margin-bottom: 25px;
  color: #fff;
  font-size: 25px;
  white-space: nowrap;
}
.info-card h3::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.48); }
.info-card p { max-width: 40ch; margin: 0; color: rgba(255,255,255,.96); font-size: 15px; font-weight: 700; line-height: 1.55; }
.info-card--checkout { min-height: 300px; }
.info-row {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 0;
  flex-wrap: wrap;
}
.info-row > div { flex: 1; min-width: 260px; }
.info-row h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 22px;
}
.info-row h3::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.4); }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--color-grey-bg); }
.testimonials-section > .container > .section-title {
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.testimonials-section > .container > .section-subtitle {
  margin-top: -8px;
  text-align: center;
}
.testimonials-section .section-subtitle.on-dark { color: var(--color-grey-text); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  color: var(--color-dark);
  padding: 64px 30px 30px;
  position: relative;
  background: #fff;
  border-top: 3px solid var(--color-teal);
}
.testimonial-card:first-child { border-top-color: var(--color-tan); }
.testimonial-card .fa-quote-left {
  position: absolute;
  top: 22px;
  left: 30px;
  color: var(--color-teal-dark);
  font-size: 30px;
}
.testimonial-card h4 { margin: 0 0 12px; font-family: var(--font-heading); font-size: 18px; }
.testimonial-card p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--color-grey-text); }

/* ---------- Awards ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.awards-grid figure { margin: 0; border-top: 1px solid #e0e0e0; padding-top: 16px; }

/* ---------- Beach banner ---------- */
.beach-banner {
  position: relative;
  background: #365b63 url('/images/beach-2.jpg') center/cover no-repeat;
  padding: clamp(86px, 12vw, 150px) 0;
  overflow: hidden;
}
.beach-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,55,61,.82), rgba(28,55,61,.28));
}
.beach-banner .container { position: relative; }
.beach-banner-content { max-width: 600px; }
.beach-banner h2 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  margin: 0 0 16px;
}
.beach-banner p { max-width: 38ch; margin: 0; color: rgba(255,255,255,.9); font-size: 16px; }

.beach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: var(--color-dark);
}
.beach-grid figure { position: relative; margin: 0; overflow: hidden; }
.beach-grid figure::after {
  content: '';
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(25,43,47,.82));
  pointer-events: none;
}
.beach-grid img { height: 300px; width: 100%; object-fit: cover; transition: transform .5s ease; }
.beach-grid figure:hover img { transform: scale(1.06); }
.beach-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 18px;
}

/* ---------- Map ---------- */
.map-section { text-align: center; }
.map-address { font-weight: 700; }

.map-embed-wrapper {
  position: relative;
  max-width: 800px;
  min-height: 450px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8e4df;
}
.map-embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
}
.map-cookie-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 35, .85);
  backdrop-filter: blur(4px);
  z-index: 2;
  padding: 24px;
}
.map-cookie-inner {
  max-width: 420px;
  color: #faf8f5;
  font-size: .95rem;
  line-height: 1.6;
  text-align: center;
}
.map-cookie-inner a {
  color: #d4b483;
  text-decoration: underline;
}
.map-accept-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: #b08d57;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}
.map-accept-btn:hover {
  background: #96763e;
}

/* ---------- Book / contact footer ---------- */
.book-section { position: relative; }
.book-flex { display: flex; min-height: 460px; }
.book-flex .side-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}
.book-flex .side-img.left { background-image: url('/images/footer.jpg'); }
.book-flex .side-img.right { background-image: url('/images/rooms.jpg'); }
.book-flex .book-content {
  flex: 0 0 480px;
  max-width: 92%;
  background: #fff;
  padding: 55px 50px;
  align-self: center;
  margin: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
}
.book-content h2 { font-size: 26px; margin-bottom: 24px; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-weight: 700;
}
.contact-line .fa { color: var(--color-teal); margin-top: 3px; }

/* ---------- Form ---------- */
.contact-form { margin-top: 30px; border-top: 1px solid #eee; padding-top: 30px; }
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 6px;
  margin-top: 14px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
}
.consent-row input { margin-top: 3px; }
.contact-form .btn { margin-top: 20px; width: 100%; }

/* honeypot field — hidden from humans, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-note { font-size: 12px; color: var(--color-grey-text); margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: #ccc;
  text-align: left;
  padding: 54px 0 22px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 38px;
}
.footer-brand-name { color: #fff; font-family: var(--font-heading); font-size: 24px; }
.footer-grid h3 { color: #fff; font-family: var(--font-heading); font-size: 17px; margin-bottom: 12px; }
.footer-grid p, .footer-grid address { max-width: 30ch; margin: 0; color: #c9c9c9; font-style: normal; line-height: 1.8; }
.footer-grid a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-btn { margin-top: 16px; padding: 11px 18px; font-size: 11px; text-decoration: none !important; }
.footer-bottom { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); color: #aaa; }
.footer-bottom a { color: #fff; text-decoration: underline; }

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 28px; }
}

/* ---------- Simple pages (thank you / privacy) ---------- */
.simple-page { padding: 90px 0; text-align: center; }
.simple-page h1 { margin-bottom: 20px; }
.policy-page { padding: 70px 0; max-width: 820px; }
.policy-page h1 { margin-bottom: 30px; }
.policy-page h2 { font-size: 20px; margin-top: 36px; }
.policy-page p, .policy-page li { color: var(--color-grey-text); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .two-col, .two-col.reverse { flex-direction: column; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .beach-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .book-flex { flex-direction: column; }
  .book-flex .side-img { min-height: 180px; }
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .room-types { grid-template-columns: 1fr; }
  .rooms-hero-img { height: 260px; }
  .info-card-body { padding: 26px 30px; }
}

@media (max-width: 640px) {
  .navbar .container { justify-content: center; text-align: center; }
  .nav-links { justify-content: center; flex-wrap: wrap; }
  .hero-box { margin: 0 20px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .beach-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 46px 0; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .beach-banner { padding: 76px 0; }
  .beach-banner h2 { font-size: 38px; }
  .beach-grid img { height: 220px; }
  .amenities-section { padding-top: 46px; }
  .info-cards { gap: 48px; }
  .info-card, .info-card--reverse, .info-card--checkout { flex-direction: column; align-items: stretch; }
  .info-card-img { flex-basis: auto; height: auto; min-height: 190px; aspect-ratio: 1.7; }
  .info-card-body { padding: 24px 0 0; }
  .info-card h3 { margin-bottom: 16px; font-size: 22px; }
}
