/* ============================================================
   WONDERFUL WAY KAMBAS — main.css
   Shared across ALL pages
   ============================================================ */

/* ---- Google Translate cleanup ---- */
.goog-te-banner-frame { display: none !important; }
.goog-te-gadget img   { display: none !important; }
.goog-te-gadget       { font-size: 0 !important; }
.goog-te-combo        { font-size: 13px !important; }
body                  { top: 0 !important; }

/* ---- Variables ---- */
:root {
  --green:        #2D5F3F;
  --green-light:  #4A8F5E;
  --green-pale:   #D6E8DC;
  --orange:       #D97E3A;
  --orange-dark:  #b8621f;
  --cream:        #F5EBE0;
  --cream-dark:   #e8d9c8;
  --dark:         #1A1A1A;
  --grey:         #6B6B6B;
  --grey-light:   #E8E4E0;
  --white:        #FFFFFF;
  --nav-h:        72px;

  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 50px rgba(0,0,0,0.12);
  --transition:   all 0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html   { scroll-behavior: smooth; }
body   { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
img    { display: block; width: 100%; object-fit: cover; }
a      { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }

/* ---- Typography ---- */
.playfair { font-family: 'Playfair Display', serif; }
.lora     { font-family: 'Lora', serif; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar-root nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .top {
  font-family: 'Playfair Display', serif;
  font-size: 0.95em; font-weight: 700; color: var(--green);
}
.nav-logo-text .sub { font-size: 0.65em; color: var(--grey); letter-spacing: 0.5px; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.88em; font-weight: 500; color: var(--dark);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--green-pale); color: var(--green);
}
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Language group */
.lang-group {
  display: flex; align-items: center; gap: 4px;
  background: var(--grey-light); border-radius: var(--radius-sm); padding: 4px;
}
.lang-btn {
  border: none; background: transparent; cursor: pointer;
  padding: 4px 8px; border-radius: 6px;
  font-size: 0.8em; font-weight: 600; color: var(--grey);
  transition: var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.lang-btn.active {
  background: var(--white); color: var(--green);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Google Translate trigger */
.gt-wrapper { position: relative; }
.gt-btn {
  border: 1px solid var(--grey-light); background: var(--white);
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: 0.8em; font-weight: 600; color: var(--grey);
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.gt-btn:hover { border-color: var(--green); color: var(--green); }
.gt-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 16px; width: 240px; display: none;
}
.gt-dropdown.open { display: block; }
.gt-dropdown p { font-size: 0.78em; color: var(--grey); margin-bottom: 10px; }
#google_translate_element select, #google_translate_element_mobile select {
  width: 100%; padding: 8px; border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm); font-size: 0.85em; color: var(--dark); cursor: pointer;
}

/* Booking button */
.nav-book {
  background: var(--orange); color: var(--white);
  border: none; padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.88em; white-space: nowrap; transition: var(--transition);
}
.nav-book:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: var(--transition);
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0;
  width: 100%; height: calc(100vh - var(--nav-h));
  background: var(--white); z-index: 999;
  padding: 24px; flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px; border-radius: 10px;
  font-size: 1.05em; font-weight: 500; color: var(--dark);
  border-bottom: 1px solid var(--grey-light); transition: var(--transition);
}
.mobile-nav a:hover { background: var(--green-pale); color: var(--green); }
.mobile-lang { display: flex; gap: 8px; padding: 16px 0; }
.mobile-lang button {
  flex: 1; padding: 10px; border-radius: var(--radius-sm);
  border: 1px solid var(--grey-light); background: var(--white);
  font-weight: 600; font-size: 0.9em;
}
.mobile-lang button.active {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.mobile-book {
  background: var(--orange); color: var(--white);
  padding: 14px; border-radius: 10px; text-align: center;
  font-weight: 700; margin-top: 8px; display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer-root footer {
  background: #111; color: rgba(255,255,255,0.8);
  padding: 64px 24px 24px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-brand .logo .icon {
  width: 40px; height: 40px; background: var(--green);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.footer-brand .logo .name {
  font-family: 'Playfair Display', serif; color: var(--white); font-size: 1em;
}
.footer-brand p {
  font-size: 0.87em; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1em; transition: var(--transition);
}
.footer-social a:hover { background: var(--green); }
.footer-col h4 {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: 0.95em; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.87em; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87em; color: rgba(255,255,255,0.55); margin-bottom: 12px;
}
.footer-contact-item .ico { font-size: 1em; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8em; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px;
}
.pnbp-note {
  background: rgba(217,126,58,0.15); border: 1px solid rgba(217,126,58,0.3);
  border-radius: 10px; padding: 12px 16px; font-size: 0.8em;
  color: rgba(255,255,255,0.7); max-width: 1100px; margin: 20px auto 0;
}

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-weight: 600;
  font-size: 0.95em; border: none; transition: var(--transition); cursor: pointer;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,126,58,0.4);
}
.btn-green { background: var(--green); color: var(--white); padding: 10px 18px; border-radius: var(--radius-sm); font-size: 0.85em; font-weight: 600; border: none; }
.btn-green:hover { background: #1d4028; }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-outline-green {
  background: transparent; color: var(--green);
  border: 2px solid var(--green); padding: 12px 28px;
  border-radius: 10px; font-weight: 600; font-size: 0.9em; white-space: nowrap;
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* Section layout */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

/* Section labels */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8em; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 14px; text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8em, 4vw, 2.6em);
  color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-sub {
  font-family: 'Lora', serif; font-size: 1.05em;
  color: var(--grey); line-height: 1.7; max-width: 580px;
}

/* Page hero (inner pages) */
.page-hero {
  margin-top: var(--nav-h);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '🐘';
  position: absolute; right: -30px; bottom: -30px;
  font-size: 180px; opacity: 0.07; transform: rotate(-10deg);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2em, 5vw, 3em);
  color: var(--white); margin-bottom: 12px; position: relative; z-index: 1;
}
.page-hero p {
  font-family: 'Lora', serif; font-size: 1.1em;
  color: rgba(255,255,255,0.85); position: relative; z-index: 1; max-width: 540px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.82em; color: rgba(255,255,255,0.6);
  margin-bottom: 16px; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .lang-group,
  .nav-right .gt-wrapper,
  .nav-right .nav-book { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 60px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
