/* =============================================
   MK's Bar & B&B — Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #1a3a2a;
  --green-mid: #254d38;
  --green-light: #2e6047;
  --gold:    #c9a84c;
  --gold-light: #e2c47a;
  --cream:   #f8f4ee;
  --white:   #ffffff;
  --text:    #1c1c1c;
  --text-muted: #5a5a5a;
  --border:  #e0d9ce;
  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
em { font-style: italic; color: var(--gold); }

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.dark-section { background: var(--green); color: var(--white); }

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }

.section-title { margin-bottom: 24px; }
.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
}
.section-intro.light { color: rgba(255,255,255,.75); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all .25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-outline-light:hover {
  background: var(--gold);
  color: var(--green);
}
.btn.full-width { width: 100%; text-align: center; }

/* IMAGE PLACEHOLDERS */
.img-placeholder {
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.dark-placeholder {
  background: linear-gradient(135deg, #0f2218, #1a3a2a);
}
.img-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-family: 'Playfair Display', serif;
}
.img-placeholder-inner span { display: block; font-size: 1.2rem; }
.img-placeholder-inner small { font-size: .75rem; }

/* ---- NAV ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .3s;
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(26,58,42,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--green) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(46,96,71,.4) 0%, transparent 70%),
    linear-gradient(160deg, #0a1f13 0%, #1a3a2a 40%, #0f2a1c 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-award {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--gold-light);
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ---- STRIP ---- */
.strip {
  background: var(--gold);
  padding: 24px 0;
}
.strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  text-align: center;
}
.strip-item strong { font-size: .95rem; color: var(--green); font-weight: 700; }
.strip-item span { font-size: .8rem; color: rgba(26,58,42,.75); margin-top: 2px; }
.strip-divider {
  width: 1px;
  height: 36px;
  background: rgba(26,58,42,.25);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  height: 520px;
  width: 100%;
}
.about-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.about-card-label { font-size: .75rem; opacity: .7; margin: 4px 0 8px; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .1em; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.025rem; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}
.stat-desc { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* ---- BAR ---- */
.bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 56px 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.bar-feature {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.bar-feature:hover { background: rgba(255,255,255,.04); }
.bar-feature-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.bar-feature h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.bar-feature p { color: rgba(255,255,255,.65); font-size: .975rem; }
.bar-quote {
  text-align: center;
  padding: 48px;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
}
.bar-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.bar-quote cite { color: var(--gold); font-size: .85rem; }

/* ---- STAY ---- */
.stay-section { background: var(--cream); }
.stay-section .section-title { margin-bottom: 16px; }
.stay-section .section-intro { margin-bottom: 56px; }

/* Rooms two-column layout */
.rooms-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}

/* Left: amenities panel */
.rooms-amenities {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.rooms-amenities-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.amenities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.amenities-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.amenities-list li svg {
  flex-shrink: 0;
  color: var(--green);
}

/* Right: Room 5 spotlight */
.room-five-card {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.room-five-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.room-five-card h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 18px;
}
.room-five-card p {
  color: rgba(255,255,255,.75);
  font-size: .975rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.room-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-amenities li {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.15);
}
.breakfast-banner {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.breakfast-banner h3 { color: var(--gold); margin-bottom: 10px; }
.breakfast-banner p { color: rgba(255,255,255,.75); max-width: 560px; }

/* ---- EVENTS ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 56px 0;
}
.event-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background .2s, border-color .2s;
}
.event-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.3);
}
.event-icon { font-size: 2rem; margin-bottom: 16px; }
.event-item h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.event-item p { color: rgba(255,255,255,.6); font-size: .9rem; }
.events-cta { text-align: center; }
.events-cta p { color: rgba(255,255,255,.65); margin-bottom: 24px; }

/* ---- LOCATION ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-text h2 { margin-bottom: 20px; }
.location-text > p { color: var(--text-muted); margin-bottom: 32px; }
.location-highlights { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.location-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-muted);
}
.location-highlights li span { font-size: 1.1rem; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; }
.location-map iframe { width: 100%; height: 100%; border: none; }

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.review-card p { color: rgba(255,255,255,.8); font-size: .95rem; font-style: italic; margin-bottom: 20px; }
.review-author { font-size: .8rem; color: rgba(255,255,255,.45); }
.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.big-rating {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}
.rating-label { color: rgba(255,255,255,.55); font-size: .875rem; display: block; margin-top: 4px; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { display: block; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: .975rem; color: var(--text); line-height: 1.6; }
.contact-item a:hover { color: var(--green); }
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-form h3 { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .925rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,58,42,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: 12px; }
.form-note a { color: var(--green); font-weight: 600; }

/* ---- FOOTER ---- */
.footer { background: #0a1a10; color: rgba(255,255,255,.6); padding: 64px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.footer-social {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.4);
  padding: 6px 16px;
  border-radius: 4px;
  transition: background .2s;
}
.footer-social:hover { background: rgba(201,168,76,.15); color: var(--gold); }
.footer h4 { font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p, .footer-contact a { font-size: .875rem; line-height: 1.9; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { text-align: center; font-size: .8rem; color: rgba(255,255,255,.3); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 360px; }
  .about-card { right: 0; bottom: -16px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right .35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .strip-inner { gap: 0; }
  .strip-item { padding: 8px 20px; }
  .strip-divider { display: none; }
  .bar-grid { grid-template-columns: 1fr; }
  .rooms-wrap { grid-template-columns: 1fr; }
  .rooms-amenities, .room-five-card { padding: 32px 28px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .breakfast-banner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .hero-actions { flex-direction: column; }
  .hero-scroll { display: none; }
  .about-stats { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .contact-form-wrap { padding: 28px 20px; }
  .bar-feature { padding: 32px 24px; }
}

/* ========================
   ANIMATIONS
   ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
