/* Kerigold Chalets — shared nav, footer, and base styles */
/* Loaded on every page to allow browser caching */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #444; }

/* Nav */
header { position: sticky; top: 0; z-index: 1000; width: 100%; }
.navbar { background: #000; box-shadow: 0 2px 5px rgba(0,0,0,0.3); padding: 1rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; color: #FFD700; text-decoration: none; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #FFD700; cursor: pointer; }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu li a { text-decoration: none; color: #fff; font-weight: 500; transition: color 0.3s; }
.nav-menu li a:hover { color: #FFD700; }
.btn-book { background: #FFD700 !important; color: #000 !important; padding: 0.5rem 1.5rem; border-radius: 5px; font-weight: bold; }

/* Mobile sticky */
.mobile-sticky-buttons { display: none; }
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu { position: absolute; top: 100%; left: 0; right: 0; background: #000; flex-direction: column; padding: 1rem; box-shadow: 0 5px 10px rgba(0,0,0,0.3); display: none; }
    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; text-align: center; padding: 0.5rem 0; }
    .mobile-sticky-buttons { display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: #000; z-index: 999; box-shadow: 0 -2px 10px rgba(0,0,0,0.3); }
    .mobile-sticky-buttons a { flex: 1; padding: 15px; text-align: center; text-decoration: none; font-weight: bold; font-size: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .btn-call { background: #007bff; color: #fff !important; }
    .btn-book-mob { background: #FFD700 !important; color: #000 !important; }
    body { padding-bottom: 60px; }
}

/* Footer */
footer { background: #222; color: #fff; padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h4 { color: #FFD700; margin-bottom: 1rem; font-size: 1rem; }
.footer-section p { color: #ccc; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.4rem; }
.footer-section a { color: #ccc; text-decoration: none; font-size: 0.9rem; }
.footer-section a:hover { color: #FFD700; }
.social-links { display: flex; gap: 1rem; }
.social-links a { font-size: 1.4rem; }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid #444; color: #999; font-size: 0.85rem; }
