/* Broadford House B&B Skye — shared stylesheet */

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

:root {
  --navy:  #1B3A4B;
  --teal:  #2D6A73;
  --gold:  #C9A96E;
  --cream: #F5F0E8;
  --text:  #2C2C2C;
  --light: #FFFFFF;
  --muted: #6B7280;
  --border:#E0D8CC;
}

html { scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; color: var(--text); background: var(--light); line-height: 1.7; }

/* ── NAV ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.logo img { height: 56px; }
nav { display: flex; gap: 1.5rem; align-items: center; }
nav a { color: var(--navy); text-decoration: none; font-family: 'Arial', sans-serif; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
nav a:hover, nav a.active { color: var(--teal); }
.btn-book {
  background: var(--gold); color: var(--navy) !important;
  padding: .45rem 1.1rem; border-radius: 3px; font-weight: 700;
  letter-spacing: .05em; transition: opacity .2s;
}
.btn-book:hover { opacity: .85; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--light); border-bottom: 1px solid var(--border); position: absolute; top: 72px; left: 0; right: 0;
  z-index: 99; padding: 1rem 2rem;
}
.mobile-menu a { color: var(--navy); text-decoration: none; font-family: Arial,sans-serif; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; padding: .6rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; height: 78vh; min-height: 480px;
  background: var(--navy) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero::after { content:''; position:absolute; inset:0; background: rgba(27,58,75,.45); }
.hero-content { position: relative; z-index: 1; color: var(--light); padding: 0 1.5rem; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 400; letter-spacing: .03em; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.hero-content p { font-size: clamp(1rem, 2vw, 1.25rem); margin: .75rem 0 1.75rem; opacity: .92; }
.hero-cta { display: inline-block; background: var(--gold); color: var(--navy); text-decoration: none; padding: .8rem 2rem; border-radius: 3px; font-family: Arial,sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; transition: opacity .2s; }
.hero-cta:hover { opacity: .88; }

/* ── HIGHLIGHTS BAR ── */
.highlights {
  background: var(--teal); color: var(--light);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
}
.highlight-item { flex: 1 1 160px; text-align: center; padding: 1.1rem .75rem; border-right: 1px solid rgba(255,255,255,.15); }
.highlight-item:last-child { border-right: none; }
.highlight-item strong { display: block; font-family: Arial,sans-serif; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; opacity: .75; margin-bottom: .2rem; }
.highlight-item span { font-size: 1.05rem; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: Arial,sans-serif; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; color: var(--navy); margin-bottom: 1.25rem; }
h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── ROOMS CARDS ── */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.room-card { background: var(--cream); border-radius: 4px; overflow: hidden; }
.room-card img { width: 100%; height: 220px; object-fit: cover; }
.room-card-body { padding: 1.5rem; }
.room-card-body h3 { margin-bottom: .4rem; }
.room-card-body .occupancy { font-family: Arial,sans-serif; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }

/* ── REVIEWS ── */
.reviews-section { background: var(--navy); color: var(--light); }
.reviews-section h2 { color: var(--light); }
.reviews-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 280px; background: rgba(255,255,255,.08); border-radius: 4px; padding: 1.5rem; scroll-snap-align: start; }
.review-card .stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }
.review-card p { font-size: .95rem; line-height: 1.6; opacity: .9; }
.review-card .reviewer { margin-top: 1rem; font-family: Arial,sans-serif; font-size: .8rem; letter-spacing: .05em; opacity: .6; text-transform: uppercase; }

/* ── SPLIT SECTION ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split img { width: 100%; height: 380px; object-fit: cover; border-radius: 4px; }
.split-text .cta-link { display: inline-block; margin-top: 1.5rem; color: var(--teal); font-family: Arial,sans-serif; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ── SEO PANEL ── */
.seo-panel { background: var(--cream); border-left: 4px solid var(--gold); padding: 2rem; border-radius: 0 4px 4px 0; margin-top: 3rem; }
.seo-panel h3 { color: var(--navy); margin-bottom: .75rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); color: var(--light); padding: 4rem 2rem 3rem; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; }
.page-hero p { opacity: .8; max-width: 600px; margin: .75rem auto 0; }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.gallery-grid a { display: block; overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.gallery-grid a:hover img { transform: scale(1.04); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; align-items: start; }
.contact-info p { margin-bottom: .75rem; }
.contact-info a { color: var(--teal); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.contact-detail { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.contact-detail .icon { font-size: 1.2rem; margin-top: .15rem; }
form { display: flex; flex-direction: column; gap: 1rem; }
form input, form textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: 3px; font-family: inherit; font-size: 1rem; background: var(--cream);
  transition: border-color .2s;
}
form input:focus, form textarea:focus { outline: none; border-color: var(--teal); }
form textarea { min-height: 140px; resize: vertical; }
form button {
  background: var(--navy); color: var(--light); border: none; padding: .85rem 2rem;
  font-family: Arial,sans-serif; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; border-radius: 3px; transition: background .2s; align-self: flex-start;
}
form button:hover { background: var(--teal); }
.directions-btn { display: inline-block; margin-top: 1.5rem; background: var(--teal); color: var(--light); text-decoration: none; padding: .7rem 1.5rem; border-radius: 3px; font-family: Arial,sans-serif; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }

/* ── ACTIVITIES ── */
.activities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.activity-card { background: var(--cream); padding: 1.5rem; border-radius: 4px; border-top: 3px solid var(--teal); }
.activity-card .emoji { font-size: 1.8rem; margin-bottom: .75rem; }

/* ── BREAKFAST ── */
.brekky-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.brekky-images img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }
.menu-box { background: var(--cream); padding: 2rem; border-radius: 4px; margin-top: 2rem; }
.menu-box ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .5rem; }
.menu-box ul li::before { content: '✓ '; color: var(--teal); }

/* ── CTA STRIP ── */
.cta-strip { background: var(--teal); color: var(--light); text-align: center; padding: 3.5rem 2rem; }
.cta-strip h2 { color: var(--light); margin-bottom: 1rem; }
.cta-strip a { display: inline-block; background: var(--gold); color: var(--navy); text-decoration: none; padding: .85rem 2.2rem; border-radius: 3px; font-family: Arial,sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.7); font-family: Arial,sans-serif; font-size: .85rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
footer h4 { color: var(--light); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
footer a { color: rgba(255,255,255,.7); text-decoration: none; display: block; margin-bottom: .5rem; }
footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 2rem; text-align: center; font-size: .8rem; max-width: 1100px; margin: 0 auto; }
.social-links { display: flex; gap: 1rem; margin-top: .5rem; }
.social-links a { font-size: .85rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split img { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .brekky-images { grid-template-columns: 1fr; }
  .menu-box ul { grid-template-columns: 1fr; }
  header { padding: 0 1.25rem; }
  section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
}
