/* ============================================================
   Happy Kalkan Hotel — App CSS
   ============================================================ */
:root {
    --hk-teal:       #0d4a4a;
    --hk-teal-light: #1a6b5a;
    --hk-teal-mid:   #2d8a6a;
    --hk-sand:       #f5e8d0;
    --hk-coral:      #c8622a;
    --hk-coral-light:#d4783f;
    --hk-bg:         #f8f5f0;
    --hk-dark:       #0a2a2a;
    --hk-text:       #2d4a40;
    --hk-muted:      #7a8a80;
    --hk-white:      #ffffff;
    --hk-radius:     14px;
    --hk-radius-sm:  8px;
    --hk-shadow:     0 4px 24px rgba(13,74,74,0.10);
    --hk-shadow-sm:  0 2px 10px rgba(13,74,74,0.07);
    --navbar-h:      64px;
    --alert-h:       0px; /* overridden by inline style when alert active */
}
* { box-sizing: border-box; }
body { font-family:'Inter',sans-serif; background:var(--hk-bg); color:var(--hk-text); margin:0; padding:0; overflow-x:hidden; }

/* ---- Alert Band ---- */
.hk-alert-band {
    width:100%; text-align:center;
    padding:10px 16px;
    font-size:13px; color:#fff; font-weight:500; letter-spacing:0.02em;
    position:relative; z-index:1100;
    /* height approximately 40px — navbar offset applied via CSS var */
}

/* ---- Navbar ---- */
.hk-navbar {
    position:fixed;
    top:var(--alert-h); /* sits below alert band */
    left:0; right:0;
    z-index:1000;
    height:var(--navbar-h);
    background:transparent;
    transition:background 0.35s ease, box-shadow 0.35s ease, top 0.3s ease;
}
.hk-navbar.scrolled {
    background:rgba(10,42,42,0.97);
    box-shadow:0 2px 20px rgba(0,0,0,0.25);
}
.hk-navbar-inner {
    height:100%; display:flex; align-items:center; justify-content:space-between;
    padding:0 20px; max-width:1200px; margin:0 auto;
}
.hk-logo { display:flex; align-items:center; text-decoration:none; }
.hk-logo-img { height:44px; object-fit:contain; }
.hk-logo-text { font-family:'Playfair Display',serif; color:var(--hk-sand); font-size:20px; font-weight:500; letter-spacing:0.05em; }
.hk-navbar-right { display:flex; align-items:center; gap:12px; }

/* WhatsApp button in navbar */
.hk-wa-btn {
    width:34px; height:34px; border-radius:50%;
    background:rgba(37,211,102,0.15);
    border:1px solid rgba(37,211,102,0.4);
    color:#25d366;
    display:flex; align-items:center; justify-content:center;
    font-size:17px; text-decoration:none;
    transition:all 0.2s;
}
.hk-wa-btn:hover { background:rgba(37,211,102,0.25); color:#25d366; }

.hk-lang-btn {
    color:rgba(245,232,208,0.75); font-size:12px; font-weight:500;
    letter-spacing:0.06em; text-transform:uppercase; text-decoration:none;
    border:1px solid rgba(245,232,208,0.3); padding:4px 10px; border-radius:20px;
    transition:all 0.2s;
}
.hk-lang-btn:hover { color:var(--hk-sand); border-color:var(--hk-sand); }

.hk-hamburger {
    background:none; border:none; cursor:pointer; padding:4px;
    display:flex; flex-direction:column; justify-content:space-between;
    height:22px; width:26px;
}
.hk-hamburger span {
    display:block; height:2px; width:100%;
    background:var(--hk-sand); border-radius:2px;
    transition:transform 0.3s, opacity 0.3s;
}

/* ---- Off-canvas ---- */
.hk-overlay {
    position:fixed; inset:0; background:rgba(0,0,0,0.5);
    z-index:1050; opacity:0; pointer-events:none; transition:opacity 0.3s;
}
.hk-overlay.active { opacity:1; pointer-events:all; }
.hk-offcanvas {
    position:fixed; top:0; right:-340px;
    width:320px; max-width:90vw; height:100%;
    background:var(--hk-dark); z-index:1060;
    transition:right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y:auto; display:flex; flex-direction:column;
}
.hk-offcanvas.active { right:0; }
.hk-offcanvas-header {
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 20px 16px; border-bottom:1px solid rgba(245,232,208,0.1);
}
.hk-offcanvas-title { font-family:'Playfair Display',serif; color:var(--hk-sand); font-size:17px; letter-spacing:0.05em; }
.hk-close-btn { background:none; border:none; cursor:pointer; color:rgba(245,232,208,0.6); font-size:18px; padding:4px; transition:color 0.2s; }
.hk-close-btn:hover { color:var(--hk-sand); }
.hk-offcanvas-body { padding:12px 0 24px; flex:1; }
.hk-menu-section-label { font-size:10px; color:rgba(245,232,208,0.35); text-transform:uppercase; letter-spacing:0.1em; padding:14px 20px 6px; }
.hk-menu-item { display:flex; align-items:center; gap:12px; padding:11px 20px; color:rgba(245,232,208,0.85); text-decoration:none; font-size:14px; transition:background 0.15s; cursor:pointer; }
.hk-menu-item:hover { background:rgba(245,232,208,0.06); color:var(--hk-sand); }
.hk-menu-spot { cursor:default; }
.hk-menu-icon { width:32px; height:32px; border-radius:50%; background:rgba(45,138,106,0.2); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--hk-teal-mid); flex-shrink:0; }
.hk-icon-insta  { background:rgba(200,98,42,0.15);  color:var(--hk-coral); }
.hk-icon-fb     { background:rgba(24,119,242,0.15); color:#4f8ef7; }
.hk-icon-trip   { background:rgba(52,168,83,0.15);  color:#34a853; }
.hk-icon-google { background:rgba(234,67,53,0.15);  color:#ea4335; }
.hk-icon-wa     { background:rgba(37,211,102,0.15); color:#25d366; }
.hk-menu-meta { margin-left:auto; font-size:11px; color:rgba(245,232,208,0.35); flex-shrink:0; }

/* ---- Full-height slider ---- */
.hk-slider-fullheight {
    position:relative; width:100%;
    height:100vh;
    /* Push down past alert + navbar */
    margin-top:0;
    overflow:hidden; background:var(--hk-dark);
}
/* The hero itself needs to account for alert+navbar height */
.hk-slider-fullheight { padding-top:0; }
.hk-slide-full { position:absolute; inset:0; opacity:0; transition:opacity 0.9s ease; background-size:cover; background-position:center; }
.hk-slide-full.active { opacity:1; z-index:1; }
.hk-slide-overlay { position:absolute; inset:0; background:linear-gradient(to bottom,rgba(10,42,42,0.2) 0%,rgba(10,42,42,0.6) 100%); z-index:2; }
.hk-slide-content { position:absolute; bottom:12%; left:50%; transform:translateX(-50%); text-align:center; z-index:3; width:90%; max-width:700px; }
.hk-slide-title { font-family:'Playfair Display',serif; font-size:clamp(28px,6vw,58px); color:var(--hk-sand); font-weight:500; line-height:1.2; text-shadow:0 2px 20px rgba(0,0,0,0.4); margin-bottom:8px; }
.hk-slide-sub { font-size:clamp(11px,1.5vw,14px); color:rgba(245,232,208,0.65); letter-spacing:0.15em; text-transform:uppercase; }
.hk-slider-dots { position:absolute; bottom:48px; left:50%; transform:translateX(-50%); z-index:4; display:flex; gap:8px; }
.hk-dot { width:8px; height:8px; border-radius:50%; background:rgba(245,232,208,0.35); cursor:pointer; transition:background 0.3s,transform 0.3s; border:none; }
.hk-dot.active { background:var(--hk-sand); transform:scale(1.3); }
.hk-scroll-hint { position:absolute; bottom:16px; left:50%; transform:translateX(-50%); z-index:4; color:rgba(245,232,208,0.5); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; animation:bounce 2s infinite; display:flex; flex-direction:column; align-items:center; gap:4px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ---- Sections ---- */
.hk-section { padding:56px 0; }
.hk-section-title { font-family:'Playfair Display',serif; font-size:clamp(22px,4vw,32px); color:var(--hk-teal); font-weight:500; margin-bottom:6px; }
.hk-section-divider { width:48px; height:2px; background:var(--hk-coral); margin:0 0 28px; border-radius:2px; }
.hk-section-divider.center { margin:0 auto 28px; }

/* ---- Info cards ---- */
.hk-info-card { background:var(--hk-white); border-radius:var(--hk-radius); padding:24px 20px; box-shadow:var(--hk-shadow-sm); height:100%; }
.hk-info-card-icon { width:48px; height:48px; border-radius:50%; background:rgba(13,74,74,0.08); display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:14px; color:var(--hk-teal); }
.hk-info-card-label { font-size:11px; color:var(--hk-muted); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:4px; }
.hk-info-card-value { font-family:'Playfair Display',serif; font-size:26px; color:var(--hk-teal); line-height:1.1; }
.hk-info-card-sub { font-size:12px; color:var(--hk-muted); margin-top:4px; }

/* ---- Weather ---- */
.hk-weather-card { background:var(--hk-white); border-radius:var(--hk-radius); padding:24px; box-shadow:var(--hk-shadow-sm); }
.hk-weather-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:16px; }
.hk-weather-temp { font-family:'Playfair Display',serif; font-size:52px; color:var(--hk-teal); line-height:1; }
.hk-weather-icon { font-size:52px; }
.hk-weather-desc { font-size:15px; color:var(--hk-teal); font-weight:500; margin-top:4px; }
.hk-weather-meta { display:flex; flex-wrap:wrap; gap:10px 20px; }
.hk-weather-meta-item { font-size:12px; color:var(--hk-muted); }
.hk-weather-meta-item strong { color:var(--hk-text); font-weight:500; }

/* ---- About ---- */
.hk-about-text { font-size:15px; color:#4a6060; line-height:1.8; }

/* ---- Review buttons ---- */
.hk-review-btns { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.hk-review-btn { display:inline-flex; align-items:center; gap:8px; padding:10px 20px; border-radius:30px; font-size:13px; font-weight:500; text-decoration:none; transition:transform 0.2s, box-shadow 0.2s; border:1.5px solid transparent; }
.hk-review-btn:hover { transform:translateY(-2px); box-shadow:0 4px 16px rgba(0,0,0,0.1); }
.hk-review-btn-trip   { background:#00aa6c; color:white; }
.hk-review-btn-google { background:white; color:#ea4335; border-color:#ea4335; }

/* ---- Kitchen hours ---- */
.hk-kitchen-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:14px; }
.hk-kitchen-card { background:var(--hk-white); border-radius:var(--hk-radius-sm); padding:18px 14px; text-align:center; box-shadow:var(--hk-shadow-sm); }
.hk-kitchen-icon { font-size:26px; margin-bottom:8px; }
.hk-kitchen-label { font-size:11px; color:var(--hk-muted); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:4px; }
.hk-kitchen-time { font-family:'Playfair Display',serif; font-size:16px; color:var(--hk-teal); }

/* ---- Locked banner ---- */
.hk-locked-banner { background:linear-gradient(135deg,var(--hk-coral) 0%,var(--hk-coral-light) 100%); border-radius:var(--hk-radius); padding:28px 24px; text-align:center; color:white; margin:40px 0; }
.hk-locked-banner h3 { font-family:'Playfair Display',serif; font-size:20px; margin-bottom:8px; color:white; }
.hk-locked-banner p { font-size:14px; opacity:0.9; margin-bottom:16px; }
.hk-locked-btn { display:inline-flex; align-items:center; gap:8px; background:white; color:var(--hk-coral); padding:10px 24px; border-radius:30px; font-weight:500; font-size:14px; text-decoration:none; transition:transform 0.2s; }
.hk-locked-btn:hover { transform:scale(1.03); }

/* ---- Horizontal drag-scroll gallery ---- */
.hk-scroll-section {
    background: #f0ede6;
    padding: 40px 0;
}
.hk-scroll-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    padding: 4px 24px 16px;
}
.hk-scroll-track-wrap::-webkit-scrollbar { display: none; }
.hk-scroll-track-wrap.dragging { cursor: grabbing; user-select: none; }
.hk-scroll-track {
    display: flex;
    gap: 16px;
    width: max-content;
}
.hk-scroll-img {
    width: 260px;
    height: 260px;
    border-radius: var(--hk-radius);
    background-size: cover;
    background-position: center;
    background-color: #c8d8d0;
    flex-shrink: 0;
    pointer-events: none;
}
@media (max-width: 575px) {
    .hk-scroll-img { width: 200px; height: 200px; }
    .hk-scroll-section { padding: 28px 0; }
    .hk-scroll-track-wrap { padding: 4px 16px 12px; }
}

/* ---- Restaurant cards ---- */
.hk-restaurant-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:16px; }
.hk-restaurant-card { background:var(--hk-white); border-radius:var(--hk-radius); padding:22px 14px; text-align:center; box-shadow:var(--hk-shadow-sm); cursor:pointer; transition:transform 0.2s, box-shadow 0.2s; border:1.5px solid transparent; }
.hk-restaurant-card:hover { transform:translateY(-4px); box-shadow:var(--hk-shadow); border-color:rgba(13,74,74,0.1); }
.hk-restaurant-card.has-menus:hover { border-color:var(--hk-teal-mid); }
.hk-restaurant-icon { font-size:36px; margin-bottom:10px; }
.hk-restaurant-name { font-size:13px; color:var(--hk-teal); font-weight:500; line-height:1.3; }
.hk-restaurant-badge { display:inline-block; background:rgba(13,74,74,0.08); color:var(--hk-teal); font-size:10px; border-radius:10px; padding:2px 8px; margin-top:6px; }

/* ---- Menu modal ---- */
.hk-menu-modal-backdrop { position:fixed; inset:0; background:rgba(0,0,0,0.65); z-index:2000; display:none; align-items:center; justify-content:center; padding:20px; }
.hk-menu-modal-backdrop.open { display:flex; }
.hk-menu-modal { background:var(--hk-white); border-radius:var(--hk-radius); width:100%; max-width:480px; max-height:80vh; overflow-y:auto; box-shadow:0 20px 60px rgba(0,0,0,0.3); }
.hk-menu-modal-header { display:flex; align-items:center; justify-content:space-between; padding:18px 20px; border-bottom:1px solid rgba(0,0,0,0.07); position:sticky; top:0; background:var(--hk-white); border-radius:var(--hk-radius) var(--hk-radius) 0 0; }
.hk-menu-modal-title { font-family:'Playfair Display',serif; font-size:18px; color:var(--hk-teal); }
.hk-menu-modal-close { background:none; border:none; font-size:18px; color:var(--hk-muted); cursor:pointer; padding:4px; }
.hk-menu-list { padding:12px 0; }
.hk-menu-list-item { display:flex; align-items:center; padding:12px 20px; gap:14px; transition:background 0.15s; text-decoration:none; }
.hk-menu-list-item:hover { background:rgba(13,74,74,0.03); }
.hk-menu-list-icon { width:40px; height:40px; background:rgba(13,74,74,0.07); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--hk-teal); font-size:16px; flex-shrink:0; }
.hk-menu-list-info { flex:1; }
.hk-menu-list-name { font-size:14px; font-weight:500; color:var(--hk-text); }
.hk-menu-list-size { font-size:11px; color:var(--hk-muted); margin-top:2px; }
.hk-menu-list-arrow { color:var(--hk-teal-mid); font-size:13px; }

/* ---- Announcements ---- */
.hk-announcement { background:var(--hk-white); border-left:4px solid var(--hk-teal); border-radius:0 var(--hk-radius-sm) var(--hk-radius-sm) 0; padding:16px 18px; margin-bottom:12px; box-shadow:var(--hk-shadow-sm); }
.hk-announcement-title { font-weight:500; color:var(--hk-teal); font-size:14px; margin-bottom:4px; }
.hk-announcement-body { font-size:13px; color:#4a6060; line-height:1.6; margin:0; }

/* ---- Policy modal ---- */
.hk-policy-modal-backdrop { position:fixed; inset:0; background:rgba(0,0,0,0.6); z-index:3000; display:none; align-items:center; justify-content:center; padding:20px; }
.hk-policy-modal-backdrop.open { display:flex; }
.hk-policy-modal { background:var(--hk-white); border-radius:var(--hk-radius); width:100%; max-width:560px; max-height:85vh; overflow-y:auto; box-shadow:0 20px 60px rgba(0,0,0,0.3); }
.hk-policy-modal-header { display:flex; align-items:center; justify-content:space-between; padding:18px 22px; border-bottom:1px solid rgba(0,0,0,0.07); position:sticky; top:0; background:var(--hk-white); border-radius:var(--hk-radius) var(--hk-radius) 0 0; }
.hk-policy-modal-title { font-family:'Playfair Display',serif; font-size:17px; color:var(--hk-teal); padding-right:16px; }
.hk-policy-modal-body { padding:20px 22px; font-size:14px; color:#4a6060; line-height:1.8; }

/* ---- Footer ---- */
.hk-footer { background:var(--hk-dark); padding:40px 0 24px; border-top:1px solid rgba(245,232,208,0.08); }
.hk-footer-logo { font-family:'Playfair Display',serif; color:var(--hk-sand); font-size:17px; display:block; margin-bottom:2px; }
.hk-footer-motto { font-size:12px; color:rgba(245,232,208,0.45); font-style:italic; margin-bottom:4px; }
.hk-footer-address { font-size:12px; color:rgba(245,232,208,0.35); margin:0; }
.hk-footer-section-label { font-size:10px; color:rgba(245,232,208,0.35); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:10px; }
.hk-footer-link { display:flex; align-items:center; color:rgba(245,232,208,0.6); text-decoration:none; font-size:13px; transition:color 0.2s; }
.hk-footer-link:hover { color:var(--hk-sand); }
.hk-footer-social { display:flex; gap:10px; flex-wrap:wrap; }
.hk-footer-social-btn { width:36px; height:36px; border-radius:50%; background:rgba(245,232,208,0.08); border:1px solid rgba(245,232,208,0.15); color:rgba(245,232,208,0.6); display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:15px; transition:all 0.2s; }
.hk-footer-social-btn:hover { background:rgba(245,232,208,0.15); color:var(--hk-sand); }
.hk-footer-policies { display:flex; flex-wrap:wrap; gap:8px; padding:16px 0; border-top:1px solid rgba(245,232,208,0.08); }
.hk-policy-btn { background:none; border:1px solid rgba(245,232,208,0.18); color:rgba(245,232,208,0.5); font-size:11px; padding:5px 12px; border-radius:20px; cursor:pointer; transition:all 0.2s; font-family:'Inter',sans-serif; }
.hk-policy-btn:hover { border-color:rgba(245,232,208,0.45); color:rgba(245,232,208,0.85); }
.hk-footer-copy { font-size:11px; color:rgba(245,232,208,0.25); text-align:center; }

/* ---- Utility ---- */
.hk-container { max-width:960px; margin:0 auto; padding:0 20px; }
.hk-bg-white { background:var(--hk-white); }
.hk-bg-sand  { background:#f0ede6; }

/* Full-height slider: account for alert band + navbar */
.hk-hero-spacer {
    height: calc(var(--alert-h) + var(--navbar-h));
}

/* ---- Responsive ---- */
@media (min-width:768px) {
    .hk-restaurant-grid { grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); }
}
@media (max-width:575px) {
    .hk-weather-temp { font-size:40px; }
    .hk-weather-icon { font-size:40px; }
}
