
/* =========================
   K Kitchen and Bar Website
   Replace online image URLs with your own images anytime.
   Palette: black / charcoal / warm gold / soft white.
   Font: Poppins.
========================= */
:root{
  --gold:#f7b313;
  --gold-dark:#c98d00;
  --black:#050608;
  --charcoal:#222222;
  --dark:#171717;
  --muted:#757575;
  --line:#e9e5dd;
  --cream:#f7f5f0;
  --white:#ffffff;
  --radius:24px;
  --shadow:0 24px 70px rgba(0,0,0,.16);
  --container:1180px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Poppins", Arial, sans-serif;
  color:var(--charcoal);
  background:var(--white);
  line-height:1.75;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}
.section{
  padding:110px 0;
}
.section-soft{
  background:#f2f2f2;
}
.eyebrow{
  color:var(--gold);
  font-size:16px;
  font-weight:700;
  letter-spacing:.03em;
  margin-bottom:10px;
}
h1,h2,h3,h4{
  line-height:1.12;
  letter-spacing:-.03em;
}
h1{
  font-size:clamp(42px, 7vw, 92px);
  color:#fff;
  font-weight:800;
}
h2{
  font-size:clamp(34px, 4.4vw, 62px);
  color:#2b2b2b;
  font-weight:800;
}
h3{
  font-size:clamp(24px, 3vw, 34px);
  font-weight:800;
}
p{
  color:#666;
  font-size:16px;
}
.lead{
  font-size:clamp(17px, 2vw, 22px);
  color:#f4f4f4;
  max-width:950px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 28px;
  border-radius:100px;
  border:0;
  background:var(--gold);
  color:#111;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.28s ease;
  box-shadow:0 14px 32px rgba(247,179,19,.28);
}
.btn:hover{
  background:#fff;
  transform:translateY(-3px);
}
.btn.outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.38);
  box-shadow:none;
}
.btn.outline:hover{
  background:#fff;
  color:#111;
}
.btn.dark{
  background:#111;
  color:#fff;
  box-shadow:0 14px 32px rgba(0,0,0,.18);
}
.btn.dark:hover{background:var(--gold);color:#111}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#050608;
  box-shadow:0 4px 18px rgba(0,0,0,.18);
}
.navbar{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.logo{
  display:flex;
  align-items:center;
  color:#fff;
  min-width:max-content;
}
.logo-img{
  height:64px;
  width:auto;
  max-width:220px;
  object-fit:contain;
  display:block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  color:#fff;
}
.nav-links a{
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
  opacity:.92;
  transition:.25s;
}
.nav-links a:hover,
.nav-links a.active{
  color:var(--gold);
}
.nav-cta{
  padding:0 28px;
  min-height:48px;
}
.hamburger{
  display:none;
  width:46px;
  height:42px;
  border:0;
  background:var(--gold);
  border-radius:12px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.hamburger span{
  width:22px;
  height:2px;
  background:#111;
  display:block;
}

.hero{
  min-height:720px;
  position:relative;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.42), rgba(0,0,0,.78)),
    var(--hero-image) center/cover no-repeat;
}
.hero.small{
  min-height:520px;
}
.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:160px;
  background:linear-gradient(transparent, rgba(0,0,0,.55));
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(1050px, calc(100% - 40px));
  margin:0 auto;
}
.hero.center{text-align:center}
.hero.center .lead{margin:20px auto 0}
.hero h1{max-width:920px}
.hero .lead{margin-top:18px}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:32px;
}
.hero.center .hero-actions{justify-content:center}

/* Image replacement paths are inside assets/images/.
   Because this file is assets/styles.css, CSS background URLs use images/filename.jpg. */
.home-hero{
  --hero-image:url("images/hero-bg.jpg");
}
.menu-hero,
.bar-hero{
  --hero-image:url("images/gallery-01.jpg");
}
.gallery-hero{
  --hero-image:url("images/gallery-05.jpg");
}
.gift-hero{
  --hero-image:url("images/gallery-02.jpg");
}
.contact-hero{
  --hero-image:url("images/gallery-04.jpg");
}
.booking-hero{
  --hero-image:url("images/gallery-06.jpg");
}

.dark-strip{
  background:#282828;
  min-height:120px;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:95px;
  align-items:center;
}
.about-copy p{
  margin-top:24px;
  max-width:560px;
}
.about-copy .btn{margin-top:30px}
.about-image{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:420px;
}
.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.about-image:hover img{transform:scale(1.06)}

.section-title{
  text-align:center;
  margin-bottom:58px;
}
.section-title p{
  max-width:680px;
  margin:18px auto 0;
}
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:38px;
}
.card{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 52px rgba(0,0,0,.08);
  transition:.3s ease;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 78px rgba(0,0,0,.14);
}
.card-img{
  aspect-ratio: 1 / 1;
  overflow:hidden;
}
.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.card:hover .card-img img{transform:scale(1.08)}
.card-body{
  text-align:center;
  padding:24px 22px 32px;
}
.card-body h3{
  font-size:24px;
  text-transform:none;
  margin-bottom:14px;
}
.circle-arrow{
  width:44px;
  height:44px;
  border-radius:50%;
  margin:0 auto;
  display:grid;
  place-items:center;
  background:var(--gold);
  color:#111;
  font-weight:900;
  box-shadow:0 14px 28px rgba(247,179,19,.28);
}

.cta-band{
  position:relative;
  padding:110px 0;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url("images/cta-bg.jpg") center/cover no-repeat;
  color:#fff;
  text-align:center;
}
.cta-band h2{color:#fff}
.cta-band p{
  color:#fff;
  max-width:850px;
  margin:18px auto 30px;
}

.menu-buttons{
  display:grid;
  grid-template-columns:repeat(2, minmax(220px, 1fr));
  gap:18px;
  max-width:760px;
  margin:42px auto 0;
}
.menu-tile{
  background:var(--gold);
  color:#111;
  min-height:82px;
  border-radius:0;
  display:grid;
  place-items:center;
  padding:20px;
  text-align:center;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:.28s ease;
  box-shadow:0 18px 45px rgba(247,179,19,.22);
}
.menu-tile span{
  display:block;
  font-size:12px;
  color:#fff;
  letter-spacing:.12em;
}
.menu-tile:hover{
  background:#fff;
  transform:translateY(-5px);
}
.menu-content{
  padding:110px 0;
  background:#fff;
}
.menu-note{
  background:#f8f6f0;
  border:1px solid var(--line);
  border-radius:28px;
  padding:46px;
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.feature-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.feature-box{
  padding:30px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
}
.feature-box .num{
  color:var(--gold);
  font-weight:900;
  margin-bottom:14px;
}
.feature-box h3{
  font-size:22px;
  margin-bottom:12px;
}

.gallery-grid{
  columns:4 230px;
  column-gap:24px;
}
.gallery-item{
  break-inside:avoid;
  margin-bottom:24px;
  overflow:hidden;
  border-radius:10px;
  background:#111;
  position:relative;
}
.gallery-item img{
  width:100%;
  object-fit:cover;
  transition:.55s ease;
}
.gallery-item:hover img{
  transform:scale(1.08);
  opacity:.74;
}
.gallery-item:after{
  content:"+";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:44px;
  font-weight:300;
  opacity:0;
  transition:.3s ease;
}
.gallery-item:hover:after{opacity:1}

.voucher-wrap{
  max-width:920px;
  margin:0 auto;
}
.voucher-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.voucher-top{
  padding:46px 34px;
  text-align:center;
  border-bottom:1px solid var(--line);
}
.voucher-icon{
  margin:0 auto 18px;
  width:92px;
  height:68px;
  border:3px solid #444;
  transform:rotate(-10deg);
  display:grid;
  place-items:center;
  font-weight:800;
  color:#444;
}
.voucher-values{
  display:grid;
  grid-template-columns:repeat(2,1fr);
}
.voucher-value{
  padding:42px;
  text-align:center;
  background:
    linear-gradient(45deg, rgba(0,0,0,.03) 25%, transparent 25%, transparent 50%, rgba(0,0,0,.03) 50%, rgba(0,0,0,.03) 75%, transparent 75%, transparent);
  background-size:22px 22px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.voucher-value h3{
  font-size:36px;
  color:#444;
  margin-bottom:16px;
}
.qty{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  color:#333;
  font-weight:700;
}
.qty button{
  width:30px;
  height:30px;
  border:0;
  border-radius:50%;
  background:var(--gold);
  cursor:pointer;
  font-weight:900;
}

.booking-card{
  background:#242424;
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow);
  color:#fff;
}
.booking-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:26px;
}
.step{
  background:#333;
  border-radius:16px;
  padding:16px;
  font-weight:700;
  color:#ddd;
}
.step.active{
  background:var(--gold);
  color:#111;
}
.booking-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.calendar-box,
.form-box{
  background:#333;
  border-radius:20px;
  padding:26px;
}
.calendar-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}
.calendar-days,
.calendar-dates{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
  text-align:center;
}
.calendar-days span{
  color:#aaa;
  font-size:12px;
}
.calendar-dates span{
  padding:10px 0;
  border-radius:50px;
  color:#ddd;
  font-size:13px;
}
.calendar-dates .selected{
  background:var(--gold);
  color:#111;
  font-weight:900;
}
.form-box label{
  display:block;
  color:#eee;
  margin:10px 0 7px;
  font-weight:700;
  font-size:13px;
}
.form-box input,
.form-box select,
.form-box textarea,
.contact-form input,
.contact-form textarea{
  width:100%;
  min-height:52px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:14px;
  background:#fff;
  padding:0 16px;
  font-family:inherit;
  outline:0;
}
.form-box textarea,
.contact-form textarea{
  min-height:130px;
  padding-top:15px;
  resize:vertical;
}
.form-actions{
  display:flex;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:60px;
}
.contact-list{
  display:grid;
  gap:18px;
  margin-top:30px;
}
.contact-item{
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  display:flex;
  gap:16px;
}
.contact-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:var(--gold);
  display:grid;
  place-items:center;
  font-weight:900;
}
.contact-form{
  background:#f8f6f0;
  border-radius:28px;
  padding:42px;
  border:1px solid var(--line);
}
.contact-form label{
  display:block;
  font-weight:800;
  font-size:13px;
  margin:16px 0 8px;
}

.map-box{
  height:420px;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.18)),
    url("images/map-placeholder.jpg") center/cover no-repeat;
  border-radius:28px;
  overflow:hidden;
  display:grid;
  place-items:center;
  color:#fff;
  text-align:center;
  margin-top:70px;
  box-shadow:var(--shadow);
}
.map-box h3{font-size:38px}
.map-box p{color:#fff}

.site-footer{
  background:#252525;
  color:#fff;
}
.footer-main{
  padding:82px 0;
  display:grid;
  grid-template-columns:1fr 1.35fr 1fr 1.55fr;
  gap:52px;
}
.footer-col h3{
  color:#fff;
  font-size:24px;
  margin-bottom:25px;
}
.footer-col a,
.footer-col p,
.footer-col li{
  color:#d2d2d2;
  font-size:15px;
}
.footer-col li{
  margin-bottom:11px;
}
.footer-col li:before{
  content:"›";
  color:var(--gold);
  margin-right:9px;
  font-weight:900;
}
.socials{
  display:flex;
  gap:12px;
}
.socials a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--gold);
  color:#111;
  display:grid;
  place-items:center;
  font-weight:900;
}
.hours li{
  border-bottom:1px solid rgba(255,255,255,.15);
  padding-bottom:11px;
}
.hours strong{
  display:block;
  color:#fff;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:28px 0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  color:#d8d8d8;
  font-size:13px;
}
.footer-bottom span{color:var(--gold)}
.to-top{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:888;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--gold);
  color:#111;
  display:grid;
  place-items:center;
  font-weight:900;
  box-shadow:0 15px 35px rgba(0,0,0,.22);
}

.reveal{
  opacity:0;
  transform:translateY(35px);
  transition:1s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:1060px){
  .nav-links{
    position:fixed;
    top:86px;
    left:0;
    right:0;
    background:#050608;
    flex-direction:column;
    align-items:flex-start;
    padding:28px 24px 34px;
    transform:translateY(-130%);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    border-top:1px solid rgba(255,255,255,.08);
  }
  .nav-links.open{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
  }
  .hamburger{display:flex}
  .about-grid,
  .booking-grid,
  .contact-grid{
    grid-template-columns:1fr;
    gap:44px;
  }
  .cards-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .feature-row{
    grid-template-columns:repeat(2,1fr);
  }
  .footer-main{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:720px){
  .container{width:min(100% - 28px, var(--container))}
  .navbar{height:76px}
  .nav-links{top:76px}
  .logo-mark{font-size:48px}
  .logo-text strong{font-size:17px}
  .logo-text span{font-size:8px}
  .section{padding:72px 0}
  .hero{min-height:640px}
  .hero.small{min-height:430px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .btn{width:100%}
  .cards-grid,
  .feature-row,
  .footer-main,
  .menu-buttons,
  .voucher-values,
  .booking-steps{
    grid-template-columns:1fr;
  }
  .about-image{min-height:280px}
  .gallery-grid{columns:1}
  .contact-form{padding:28px}
  .booking-card{padding:18px}
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}

/* Menu page spacing: keeps the last menu button away from the next white section */
.hero.menu-hero{
  min-height:760px;
  padding:90px 0 150px;
  align-items:center;
}
.hero.menu-hero .hero-content{
  padding-bottom:30px;
}
.hero.menu-hero:after{
  height:220px;
}

.booking-iframe-section{
  padding-top:0;
}
.iframe-box iframe{
  width:100%;
  display:block;
}

/* Auto moving special menu carousel */
.special-slider{
  overflow:hidden;
  width:100%;
  padding:10px 0 18px;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.special-track{
  display:flex;
  gap:38px;
  width:max-content;
  animation:specialMoveRight 30s linear infinite;
}
.special-slider:hover .special-track{animation-play-state:paused;}
.special-track .card{
  width:360px;
  min-width:360px;
}
@keyframes specialMoveRight{
  0%{transform:translateX(-50%);}
  100%{transform:translateX(0);}
}

/* Iframe placeholder areas for Gift Card and Table Booking */
.iframe-section-wrap{
  max-width:1100px;
  margin:0 auto;
}
.iframe-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.iframe-card-header{
  padding:34px 34px 24px;
  text-align:center;
  border-bottom:1px solid var(--line);
}
.iframe-card-header h2{margin-bottom:12px;}
.iframe-card-header p{max-width:760px;margin:0 auto;}
.iframe-box{
  padding:24px;
  background:#faf8f2;
}
.embed-frame{
  width:100%;
  min-height:760px;
  border:0;
  border-radius:18px;
  background:#fff;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.08);
}
.iframe-code-note{
  margin-top:18px;
  background:#111;
  color:#f4f4f4;
  padding:18px;
  border-radius:16px;
  font-size:13px;
  line-height:1.7;
  overflow:auto;
}
.iframe-code-note code{
  color:var(--gold);
  white-space:pre-wrap;
  word-break:break-word;
}

@media(max-width:720px){
  .hero.menu-hero{
    min-height:auto;
    padding:80px 0 110px;
  }
  .menu-buttons{
    margin-bottom:20px;
  }

  .special-track .card{width:285px;min-width:285px;}
  .special-track{gap:18px;animation-duration:24s;}
  .special-slider{-webkit-mask-image:none;mask-image:none;}
  .iframe-card-header{padding:26px 18px 18px;}
  .iframe-box{padding:14px;}
  .embed-frame{min-height:680px;}
}


/* Added premium motion + real contact map */
.contact-map-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transform-origin:center;
}
.map-info-card{
  padding:30px 30px 22px;
  background:linear-gradient(135deg,#fff,#faf6ea);
}
.map-info-card h3{
  font-size:28px;
  line-height:1.2;
  color:#202020;
  margin-bottom:10px;
}
.map-info-card p{
  color:#6f6f6f;
  line-height:1.8;
}
.contact-map-frame{
  display:block;
  width:100%;
  min-height:430px;
  filter:saturate(.95) contrast(.98);
}
.map-box{
  background:#fff;
  padding:0;
  border:1px solid var(--line);
}
.map-box iframe{
  display:block;
  width:100%;
  height:100%;
  border-radius:28px;
}
.contact-item,
.footer-col,
.card,
.menu-button,
.menu-btn{
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.contact-item:hover,
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 55px rgba(0,0,0,.12);
  border-color:rgba(228,177,88,.45);
}
.socials a{
  transition:transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.socials a:hover{
  transform:translateY(-4px) scale(1.08);
  background:#ffc247;
  box-shadow:0 14px 30px rgba(246,173,0,.28);
}
.slide-in-right.visible{
  animation:slideRightPremium .9s ease both;
}
.pulse-map.visible{
  animation:mapGlow 1.4s ease both;
}
.hero-content.visible h1,
.hero-content h1{
  animation:titleLift .95s ease both;
}
@keyframes slideRightPremium{
  0%{opacity:0;transform:translateX(45px) translateY(15px);}
  100%{opacity:1;transform:translateX(0) translateY(0);}
}
@keyframes mapGlow{
  0%{opacity:0;transform:scale(.96);box-shadow:0 0 0 rgba(228,177,88,0);}
  100%{opacity:1;transform:scale(1);box-shadow:0 22px 70px rgba(0,0,0,.16);}
}
@keyframes titleLift{
  0%{opacity:0;transform:translateY(28px);letter-spacing:-1px;}
  100%{opacity:1;transform:translateY(0);}
}
@media(max-width:720px){
  .contact-map-frame{min-height:360px;}
  .map-info-card{padding:24px 20px 18px;}
  .map-info-card h3{font-size:23px;}
}
