/*
Theme Name: Lado Hotel Theme
Theme URI: https://example.com/lado-hotel-theme
Author: Richard Kirungi / Decipher Tech Solutions
Author URI: https://example.com
Description: A custom WordPress theme starter for Lado Hotel in Masindi, built for accommodation, conference bookings, restaurant, karaoke, and tourism marketing.
Version: 9.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: lado-hotel-theme
*/

:root {
  --lh-primary: #0f5132;
  --lh-secondary: #d4a017;
  --lh-accent: #8b1e3f;
  --lh-dark: #1f1f1f;
  --lh-light: #f8f6f1;
  --lh-white: #ffffff;
  --lh-muted: #6b7280;
  --lh-border: #e9e2d5;
  --lh-radius: 18px;
  --lh-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--lh-dark);
  background: var(--lh-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lh-primary); text-decoration: none; }
a:hover { color: var(--lh-accent); }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow { letter-spacing: .12em; text-transform: uppercase; font-weight: 700; font-size: 12px; color: var(--lh-secondary); }
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px); box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.topbar { background: var(--lh-primary); color: var(--lh-white); font-size: 14px; }
.topbar .container { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; flex-wrap: wrap; }
.header-main { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.branding { display: flex; align-items: center; gap: 12px; }
.branding img, .custom-logo { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; }
.branding-text { display: flex; flex-direction: column; }
.site-title { font-size: 26px; font-weight: 700; color: var(--lh-dark); line-height: 1.1; }
.site-tagline { font-size: 14px; color: var(--lh-muted); }
.primary-menu { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.primary-menu a { color: var(--lh-dark); font-weight: 600; }
.menu-toggle { display: none; background: var(--lh-primary); color: var(--lh-white); border: 0; padding: 10px 14px; border-radius: 10px; }
.btn, .wp-block-button__link, button, input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px; border: 0; font-weight: 700; cursor: pointer;
}
.btn-primary, input[type="submit"] { background: var(--lh-secondary); color: var(--lh-dark); }
.btn-primary:hover, input[type="submit"]:hover { background: #e5b430; color: var(--lh-dark); }
.btn-outline { background: transparent; border: 2px solid var(--lh-white); color: var(--lh-white); }
.btn-outline:hover { background: var(--lh-white); color: var(--lh-primary); }
.btn-dark { background: var(--lh-dark); color: var(--lh-white); }
.btn-dark:hover { color: var(--lh-white); background: #323232; }
.hero, .inner-hero {
  color: var(--lh-white); background-position: center; background-size: cover; background-repeat: no-repeat;
}
.hero { min-height: 76vh; display: grid; place-items: center; }
.hero-inner, .inner-hero__content { display: grid; gap: 18px; text-align: center; padding: 72px 0; }
.hero { background-image: linear-gradient(rgba(15, 81, 50, 0.72), rgba(15, 81, 50, 0.72)), url('assets/images/hero.jpg'); }
.hero h1, .inner-hero h1 { margin: 0; font-size: clamp(36px, 6vw, 64px); line-height: 1.08; }
.hero p, .inner-hero p { margin: 0 auto; max-width: 760px; font-size: 18px; }
.inner-hero { min-height: 46vh; display: grid; place-items: center; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.section { padding: 72px 0; }
.section-alt { background: var(--lh-light); }
.section-title { font-size: clamp(28px, 4vw, 42px); margin: 0 0 10px; text-align: center; }
.section-subtitle { max-width: 760px; text-align: center; margin: 0 auto 34px; color: var(--lh-muted); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { background: var(--lh-white); border-radius: var(--lh-radius); padding: 24px; box-shadow: var(--lh-shadow); }
.service-card, .room-card, .offer-card, .feature-card { border: 1px solid var(--lh-border); }
.room-media, .feature-media, .gallery-photo, .map-box img {
  border-radius: 16px; overflow: hidden; min-height: 220px; box-shadow: var(--lh-shadow); background: #eee;
}
.room-media img, .feature-media img, .gallery-photo img, .map-box img { width: 100%; height: 100%; object-fit: cover; }
.booking-bar { margin-top: -48px; position: relative; z-index: 10; }
.booking-form {
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; align-items: end;
  background: var(--lh-white); padding: 24px; border-radius: var(--lh-radius); box-shadow: var(--lh-shadow);
}
.booking-form--compact { padding: 0; background: transparent; box-shadow: none; }
.booking-panel { display: grid; gap: 18px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d1d5db; border-radius: 12px; font: inherit;
}
.feature-list, .check-list, .contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.feature-list li::before, .check-list li::before, .contact-list li::before {
  content: '✓'; color: var(--lh-secondary); font-weight: 700; margin-right: 8px;
}
.info-strip {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 26px;
}
.info-chip {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); color: white; border-radius: 18px; padding: 16px 18px;
}
.cta-banner { padding: 40px; border-radius: 24px; background: linear-gradient(120deg, var(--lh-primary), #16663f); color: var(--lh-white); text-align: center; }
.site-footer { background: #0f172a; color: #e5e7eb; }
.footer-widgets { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; padding: 52px 0 24px; }
.site-footer h3, .site-footer h4 { color: var(--lh-white); margin-top: 0; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: var(--lh-white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; text-align: center; color: #cbd5e1; }
.page-header { padding: 64px 0 32px; background: linear-gradient(180deg, rgba(15,81,50,0.08), rgba(255,255,255,0)); }
.entry-content ul li { margin-bottom: 8px; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 999; background: #25d366; color: #fff;
  padding: 14px 16px; border-radius: 999px; font-weight: 700; box-shadow: var(--lh-shadow);
}
.split-showcase { align-items: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form-shell input, .contact-form-shell textarea, .contact-form-shell select { margin-bottom: 14px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-caption { margin-top: 8px; font-weight: 700; }
.notice-box { border-left: 5px solid var(--lh-secondary); background: #fff8e5; padding: 18px; border-radius: 12px; }
.plugin-slot { border: 1px dashed #c2b399; background: #fffdf7; }
.room-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.room-meta { color: var(--lh-muted); font-size: 15px; }
.table-like { border: 1px solid var(--lh-border); border-radius: 16px; overflow: hidden; }
.table-row { display: grid; grid-template-columns: 1.1fr .9fr 1fr; }
.table-row > div { padding: 14px 16px; border-bottom: 1px solid var(--lh-border); }
.table-row.header { background: var(--lh-light); font-weight: 700; }
@media (max-width: 980px) {
  .grid-4, .grid-3, .grid-2, .booking-form, .footer-widgets, .gallery-grid, .contact-grid, .info-strip, .table-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .main-navigation { display: none; width: 100%; }
  .main-navigation.is-open { display: block; }
  .header-main { flex-wrap: wrap; }
  .primary-menu { flex-direction: column; align-items: flex-start; padding: 12px 0 0; }
  .grid-4, .grid-3, .grid-2, .booking-form, .footer-widgets, .gallery-grid, .contact-grid, .info-strip, .table-row { grid-template-columns: 1fr; }
  .hero { min-height: 68vh; }
  .booking-bar { margin-top: -28px; }
  .cta-banner { padding: 28px; }
}


.form-notice{margin:0 0 18px;padding:14px 16px;border-radius:12px;font-weight:700;}
.form-notice--success{background:#e9f9ee;color:#14532d;border:1px solid #a7f3d0;}
.form-notice--error{background:#fff1f2;color:#9f1239;border:1px solid #fecdd3;}
.map-box iframe{width:100%;min-height:420px;border:0;border-radius:16px;display:block;}


.page-links-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:28px;}
.mini-card{background:var(--lh-white);border:1px solid var(--lh-border);border-radius:16px;padding:20px;box-shadow:var(--lh-shadow);}
.mini-card h3{margin-top:0;margin-bottom:8px;}
.price-tag{display:inline-block;padding:8px 12px;border-radius:999px;background:#fff2c7;color:#5a3d00;font-weight:700;margin-bottom:12px;}
.testimonial-card blockquote{margin:0 0 14px;font-size:18px;line-height:1.7;}
.testimonial-card cite{font-style:normal;color:var(--lh-muted);font-weight:700;}
.offer-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.offer-card h3,.feature-card h3{margin-top:16px;}
.icon-badge{width:56px;height:56px;border-radius:50%;display:grid;place-items:center;background:var(--lh-light);font-size:24px;}
.stats-band{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:32px;}
.stat-card{background:var(--lh-light);border-radius:18px;padding:22px;text-align:center;border:1px solid var(--lh-border);}
.stat-card strong{display:block;font-size:32px;color:var(--lh-primary);line-height:1.1;}
.inline-note{color:var(--lh-muted);font-size:15px;}
.image-tall{min-height:320px;}
@media (max-width:980px){.page-links-grid,.stats-band,.offer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:760px){.page-links-grid,.stats-band,.offer-grid{grid-template-columns:1fr;}}


/* Phase 2 plugin-ready styling */
.booking-engine-shell{display:grid;gap:18px;}
.booking-engine-shell .notice-box{margin-bottom:0;}
.mphb_sc_search-form,.mphb_sc_checkout-form,.mphb_sc_rooms-wrapper,.mphb-reservation-cart,.mphb-booking-form{background:var(--lh-white);border:1px solid var(--lh-border);border-radius:20px;padding:24px;box-shadow:var(--lh-shadow);}
.mphb_sc_search-form .mphb-required-fields-tip,.mphb_sc_checkout-form .mphb-required-fields-tip{color:var(--lh-muted);font-size:14px;}
.mphb_sc_search-form p,.mphb_sc_checkout-form p,.mphb-room-type{margin-bottom:16px;}
.mphb_sc_search-form input,.mphb_sc_search-form select,.mphb_sc_checkout-form input,.mphb_sc_checkout-form select,.mphb_sc_checkout-form textarea{width:100%;padding:12px 14px;border:1px solid #d1d5db;border-radius:12px;font:inherit;}
.mphb_sc_search-form input[type=submit],.mphb_sc_checkout-form input[type=submit],.mphb-view-details-button,.mphb-book-button,.mphb-confirm-reservation,.mphb-to-book-btn,.mphb-details-button{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border-radius:999px;background:var(--lh-secondary);color:var(--lh-dark);font-weight:700;border:0;text-decoration:none;}
.mphb-room-type{border:1px solid var(--lh-border);border-radius:20px;overflow:hidden;box-shadow:var(--lh-shadow);background:var(--lh-white);}
.mphb-room-type-title,.mphb_sc_room-title{padding:0 24px;margin:20px 0 6px;}
.mphb-room-type-description,.mphb-room-type-details,.mphb-room-type-attributes,.mphb-loop-room-type-attributes,.mphb-room-type-excerpt,.mphb-room-type-price,.mphb-view-details-button-wrapper,.mphb-to-book-wrapper{padding-left:24px;padding-right:24px;}
.mphb-room-type img,.mphb-room-type-featured-image img{width:100%;height:auto;display:block;}
.booking-shortcode-box{background:#fffdf7;border:1px dashed #c9b78b;border-radius:18px;padding:22px;}
.room-price-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.price-card{background:var(--lh-white);border:1px solid var(--lh-border);border-radius:18px;padding:22px;box-shadow:var(--lh-shadow);}
.price-card h3{margin-top:0;}
.price-card .price{display:block;font-size:34px;line-height:1.1;color:var(--lh-primary);font-weight:800;margin:12px 0 4px;}
.price-card .price small{font-size:14px;color:var(--lh-muted);font-weight:600;}
.phase-label{display:inline-block;background:#eef8f2;color:var(--lh-primary);border:1px solid #b7e0c3;padding:8px 12px;border-radius:999px;font-weight:700;font-size:14px;}
@media (max-width:760px){.room-price-grid{grid-template-columns:1fr;}}


.notice-grid,.faq-grid,.policy-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.karaoke-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:start;}
.attraction-banner{background:linear-gradient(135deg,#eef8f2,#fff6df);border:1px solid var(--lh-border);border-radius:24px;padding:30px;box-shadow:var(--lh-shadow);}
.attraction-list,.policy-list,.facility-list{padding-left:18px;}
.attraction-list li,.policy-list li,.facility-list li{margin:10px 0;}
.faq-item{background:var(--lh-white);border:1px solid var(--lh-border);border-radius:18px;padding:22px;box-shadow:var(--lh-shadow);}
.faq-item h3{margin-top:0;}
.policy-card{background:#fffdf7;border:1px solid #ead9ab;border-radius:18px;padding:22px;box-shadow:var(--lh-shadow);}
.promo-band{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;}
.promo-band .mini-card{height:100%;}
.timeline-steps{counter-reset:steps;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.timeline-step{position:relative;background:var(--lh-white);border:1px solid var(--lh-border);border-radius:18px;padding:24px;box-shadow:var(--lh-shadow);}
.timeline-step:before{counter-increment:steps;content:counter(steps);display:inline-flex;width:38px;height:38px;align-items:center;justify-content:center;background:var(--lh-primary);color:#fff;border-radius:999px;font-weight:700;margin-bottom:14px;}
.info-banner{padding:20px 24px;border-left:5px solid var(--lh-secondary);background:#fffbef;border-radius:14px;}
.page-links-grid.page-links-grid--five{grid-template-columns:repeat(5,minmax(0,1fr));}
@media (max-width:980px){.page-links-grid.page-links-grid--five,.promo-band,.timeline-steps,.notice-grid,.faq-grid,.policy-grid,.karaoke-grid{grid-template-columns:1fr;}}


.header-cta{display:flex;align-items:center;gap:12px;flex-wrap:wrap;}
.header-cta .btn{padding:10px 16px;}
.main-navigation-wrap{display:flex;align-items:center;gap:18px;}
.room-price-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;}
.price-card{background:var(--lh-white);border:1px solid var(--lh-border);border-radius:18px;padding:24px;box-shadow:var(--lh-shadow);}
.price-card.featured{background:linear-gradient(180deg,#fffdf5,#fff7dc);border-color:#e7d08b;transform:translateY(-4px);}
.price-card h3{margin-top:0;margin-bottom:10px;}
.price{display:block;font-size:34px;font-weight:800;line-height:1.1;color:var(--lh-primary);margin-bottom:10px;}
.price small{font-size:14px;color:var(--lh-muted);font-weight:700;}
.booking-shortcode-box{border:1px solid var(--lh-border);padding:24px;border-radius:18px;background:#fffefb;box-shadow:var(--lh-shadow);}
.image-tall{min-height:100%;}
.hero-card-grid,.promo-band,.faq-grid,.timeline-steps{display:grid;gap:18px;}
.hero-card-grid{grid-template-columns:repeat(3,minmax(0,1fr));margin-top:16px;}
.promo-band{grid-template-columns:repeat(3,minmax(0,1fr));margin-top:24px;}
.faq-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
.faq-item{background:var(--lh-white);border:1px solid var(--lh-border);padding:22px;border-radius:18px;box-shadow:var(--lh-shadow);}
.timeline-steps{grid-template-columns:repeat(4,minmax(0,1fr));}
.timeline-step{background:var(--lh-white);border:1px solid var(--lh-border);padding:22px;border-radius:18px;box-shadow:var(--lh-shadow);position:relative;}
.timeline-step h3{margin-top:0;}
.attraction-banner{padding:34px;border-radius:24px;background:linear-gradient(135deg,#f7fbf8,#eef6f0);border:1px solid var(--lh-border);}
.restaurant-menu-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;}
.menu-card{background:var(--lh-white);border:1px solid var(--lh-border);border-radius:18px;padding:24px;box-shadow:var(--lh-shadow);}
.menu-list{list-style:none;padding:0;margin:16px 0 0;display:grid;gap:12px;}
.menu-list li{display:flex;justify-content:space-between;gap:12px;padding-bottom:10px;border-bottom:1px dashed #ddd2bf;}
.menu-list strong{font-size:15px;}
.menu-list span{white-space:nowrap;color:var(--lh-primary);font-weight:700;}
.contact-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:22px;}
.contact-mini{background:var(--lh-light);border:1px solid var(--lh-border);padding:18px;border-radius:16px;}
.footer-links-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 18px;}
@media (max-width: 980px){.room-price-grid,.hero-card-grid,.promo-band,.timeline-steps,.restaurant-menu-grid,.contact-cards{grid-template-columns:1fr 1fr;}.faq-grid{grid-template-columns:1fr;}}
@media (max-width: 760px){.topbar .container{justify-content:center;text-align:center;}.site-title{font-size:22px;}.main-navigation-wrap{width:100%;justify-content:space-between;}.header-cta{width:100%;justify-content:space-between;}.header-cta .btn{flex:1;}.room-price-grid,.hero-card-grid,.promo-band,.timeline-steps,.restaurant-menu-grid,.contact-cards,.page-links-grid{grid-template-columns:1fr;}.whatsapp-float{right:12px;bottom:12px;padding:12px 14px;}.footer-links-grid{grid-template-columns:1fr;}}
