/* =========================================
   Fuleng Guest House — Global Styles
   ========================================= */

:root{
  --main-color:#deac80;   /* sand */
  --accent-color:#f69422; /* sage */
  --brand-dark:#914f1e;   /* rich brown */
  --bg-light:#f7dcb9;     /* light cream */
  --text-dark:#111;
  --text-light:#fff;
  --white:whitesmoke;
}

/* ---------- Base / Resets ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body{
  margin:0;
  padding:0;
  background:whitesmoke;
  color:var(--text-dark);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height:1.45;
}

main{ padding:0; }

[id]{ scroll-margin-top:84px; }

/* Content links  */
main a{ color:#0d6efd; text-decoration:none; }
main a:hover, main a:focus{ text-decoration:underline; }

/* Sections */
section{ width:100%; margin:0; padding:30px; }
section + section{ margin-top:0; }

/* Headings */
h1,h2,h3{ margin:0 0 .75rem; }
h2{
  color:var(--text-light);
  background:var(--brand-dark);
  padding:10px 12px;
  border-radius:6px;
}

.sticky-nav{
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.logo{ height: 64px; width:auto; display:block; }
@media (min-width:992px){ .logo{ height: 100px; } }


/* Navbar links (scoped so content links remain default) */
.navbar .nav-link{
  color:var(--accent-color);
  font-weight:600;
  opacity:.95;
  text-decoration:none !important;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus{ opacity:1; }

/* Dropdown polish */
.dropdown-menu{ border-radius:12px; padding:.5rem; }
.dropdown-item{ border-radius:8px; padding:.5rem .75rem; }
.dropdown-item:hover,
.dropdown-item:focus{ background:#eef5ec; }

/* Mobile collapse panel */
@media (max-width:991.98px){
  .navbar .collapse{
    background:#ffffffee;
    backdrop-filter:saturate(120%) blur(6px);
    border-radius:12px;
    padding:.5rem;
    margin-top:.5rem;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
  }
}

/* CTA */
.btn-book{
  background:#7aa26a; color:#fff; border:0;
  padding:.55rem 1rem; border-radius:.75rem; font-weight:700;
}
.btn-book:hover, .btn-book:focus{ background:#67935a; color:#fff; }

/* ---------- Utility Visuals ---------- */
.image-button{ position:relative; display:inline-block; }
.service-icons{
  border-radius:50px;
  filter:drop-shadow(5px 5px 10px rgba(0,0,0,.2));
  transition:opacity .3s;
}
.service-icons-hover{
  position:absolute; inset:0;
  border-radius:50px;
  filter:drop-shadow(5px 5px 10px rgba(255,254,7,.2));
  opacity:0; transition:opacity .3s;
}
.image-button:hover .service-icons{ opacity:0; }
.image-button:hover .service-icons-hover{ opacity:1; }



.btn-outline-accent {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
  background-color: var(--accent-color);
  color: #fff;
}



.footer-branding {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.footer-brand .footer-text {
  color: var(--accent-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-brand .footer-text:hover {
  color: var(--accent-color);
  text-decoration: none; /* REMOVE underline */
}

.footer-logo {
  transition: filter 0.3s ease;
}

.footer-brand:hover .footer-logo {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

