/* Big B Media Stylesheet — Visual Polish v2 */

/* Brand palette */
:root{
  --forest:#22543D;
  --bark:#5A3E2B;
  --sun:#D97706;
  --snow:#F8FAFC;
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#0b0f0d; /* charcoal */
  color:#e9f1ed;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height:1.5;
}

/* Layout helpers */
.wrap{max-width:1080px;margin:0 auto;padding:0 16px}

/* Header */
header{
  position:sticky; top:0; z-index:10;
  backdrop-filter:saturate(1.1) blur(8px);
  background:linear-gradient(180deg, rgba(34,84,61,.85), rgba(34,84,61,.65));
  border-bottom:1px solid rgba(255,255,255,.10);
}

/* Header content */
.site-header{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
.logo{
  height:48px; width:48px; object-fit:contain; border-radius:8px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.2));
}
.brand-name{
  font-weight:700; letter-spacing:.2px;
}

/* Nav */
nav{display:flex; flex-wrap:wrap; gap:14px; justify-content:center}
nav a{
  color:var(--snow); text-decoration:none; opacity:.95;
  padding:6px 8px; border-radius:10px; transition:.2s ease;
}
nav a:hover{background:rgba(255,255,255,.08); color:#fff}

/* CTA Button */
.btn{
  display:inline-block; background:var(--sun); color:#000;
  padding:10px 14px; border-radius:12px; text-decoration:none; font-weight:600;
  box-shadow:0 6px 20px rgba(217,119,6,.15);
}
.btn:hover{opacity:.92}

/* Hero */
.hero{position:relative; height:68vh; min-height:420px;
  background:url('https://images.unsplash.com/photo-1508612761958-e931d843bddb?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  animation:fadeIn .6s ease both;
}
.hero:after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.6));
}
.hero .wrap{position:relative; z-index:1; height:100%; display:flex; align-items:center}
h1{font-size:clamp(32px,6vw,62px); line-height:1.05; margin:0; text-shadow:0 2px 10px rgba(0,0,0,.35)}
p.lead{max-width:640px; font-size:clamp(16px,2.2vw,18px); opacity:.96}

/* Sections */
section{scroll-margin-top:96px}
.section{padding:48px 16px}
.promo{
  background:rgba(217,119,6,.10); border-block:1px solid rgba(217,119,6,.20);
  text-align:center; padding:28px 16px; animation:fadeUp .6s ease both;
}
.placeholder{
  border:2px dashed rgba(255,255,255,.18);
  border-radius:16px; background:rgba(255,255,255,.05);
  padding:28px; text-align:center; animation:fadeUp .6s ease both;
}

/* Footer */
footer{border-top:1px solid rgba(255,255,255,.10); padding:24px 0; margin-top:24px}
small{opacity:.75}

/* Simple animations */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeUp { from{opacity:0; transform:translateY(12px)} to{opacity:1; transform:none} }

/* Responsive */
@media (min-width:880px){
  .site-header{flex-direction:row; justify-content:space-between}
  nav{justify-content:flex-end}
}
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto;
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

label {
  font-weight: 600;
  opacity: 0.9;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
}

button.btn {
  width: fit-content;
  align-self: center;
  cursor: pointer;
}
/* Contact cards layout */
.contact-grid{
  display:grid;
  gap:16px;
  margin-top:16px;
}

/* 3 columns on tablets/desktop */
@media (min-width: 768px){
  .contact-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Card look */
.card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:18px;
  transition: background .2s ease, transform .15s ease, border-color .2s ease;
}
.card:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.card-title{
  font-weight:700;
  margin-bottom:4px;
}
.card-sub{
  opacity:.8;
  font-size:.95rem;
}
#booking {
  text-align: center;
  background-color: #f9f9f9;
  padding: 50px 20px;
}

#booking h2 {
  color: #2d4b2d; /* forest green */
  margin-bottom: 10px;
}

#booking p {
  color: #5a4635; /* bark brown */
  font-size: 1.1em;
  margin-bottom: 30px;
}

.booking-box {
  display: inline-block;
  background-color: #2d4b2d; /* forest green */
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin: 15px auto;
  transition: 0.3s;
}

.booking-box a {
  color: white;
  text-decoration: none;
}

.booking-box:hover {
  background-color: #ff9d00; /* sunlight orange */
  color: #2d4b2d;
}
.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-links a {
  text-decoration: none;
  background-color: #2d4b2d; /* forest green */
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.contact-links a:hover {
  background-color: #ff9d00; /* sunlight orange */
  color: #2d4b2d;
}

.contact-links .book-btn {
  background-color: #ff9d00;
  color: #2d4b2d;
}

.contact-links .book-btn:hover {
  background-color: #2d4b2d;
  color: white;
}
.seasonal-banner {
  background: linear-gradient(90deg, #2d4b2d, #ff9d00);
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.85; }
  100% { opacity: 1; }
}
#seasonal-banner:hover {
  opacity: 0.9;
  transform: scale(1.01);
}
#seasonal-banner p {
  animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#banner a {
  text-decoration: none;
  color: white;
}

#banner:hover {
  opacity: 0.9;
}

