@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Prompt:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
    --bg-main: #0a0b0f;
    --bg-secondary: #11141c;
    --bg-tertiary: #161b26;
    --text-main: #d5d9e2;
    --text-soft: #a9b0bf;
    --heading: #e0a39a;
    --accent: #b9786f;
    --accent-dark: #8d4f47;
    --border: rgba(185, 120, 111, 0.35);
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* CUSTOM FONTS */
@font-face {
  font-family: 'Ananda';
  src: url('../fonts/Ananda Black Personal Use_2.ttf') format('truetype');
}

@font-face {
  font-family: 'Calling';
  src: url('../fonts/A Calling Font_D by 7NTypes.otf') format('opentype');
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'GilroyExtra';
  src: url('../fonts/Gilroy-ExtraBold.otf') format('opentype');
}

@font-face {
  font-family: 'Gobold';
  src: url('../fonts/Gobold Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Myriad';
  src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Ultimate';
  src: url('../fonts/Ultimate-Serial Regular.ttf') format('truetype');
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Prompt", sans-serif;
    color: var(--text-main);
    background:
    linear-gradient(rgba(10,11,15,.55), rgba(10,11,15,.75)),
    url("../assets/bg1.jpg") center/cover no-repeat;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
    max-height: 100%;
    border: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Baskervville", sans-serif;
    font-weight: 400;
    margin: 10px 0;
    color: var(--heading);
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 56px;
}
h2 {
    font-size: 48px;
    line-height: 1.2;
}

h3 {
    font-size: 32px;
    color: var(--heading);
    font-weight: 600;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 11.9px;
}

strong {
    font-weight: 600;
    color: var(--white);
}

p,
li,
dd,
dt,
span,
label,
input,
textarea,
button,
a {
    font-family: "Prompt", sans-serif;
}

a {
    transition: all ease 150ms;
    text-decoration: none;
    color: var(--text-main);
}

a:hover {
    text-decoration: none;
    color: var(--heading);
}

a:active {
    color: var(--heading);
}

hr {
    background: linear-gradient(to right, transparent, var(--border), transparent);
    border: 0;
    height: 1px;
    margin: 40px 0;
}

blockquote {
    margin: 1em 0;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    text-align: left;
    color: var(--text-soft);
}

dt,
dd {
    padding: 0;
    margin: 0 0 25px 0;
}

.btn {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--white);
    border: 1px solid rgba(224, 163, 154, 0.2);
    transition: all 250ms ease;
    box-shadow: 0 10px 30px rgba(141, 79, 71, 0.25);
}

.btn:hover {
    background: linear-gradient(135deg, #c7887f, #a86158);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-download {
    border-radius: 0 8px 0 0;
    font-weight: bold;
    width: 25px;
    overflow: hidden;
}

.btn-download img {
    width: 25px;
    float: left;
    margin-top: 18px;
    margin-right: 15px;
}

.btn-download:hover {
    width: 165px;
}

.wrapper {
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin: 50px 100px;
    background: rgba(17, 20, 28, 0.84);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

header {
    width: 100%;
    overflow: hidden;
    padding: 1em 0;
    background: linear-gradient(180deg, rgba(10, 11, 15, 0.95), rgba(17, 20, 28, 0.95));
    color: var(--heading);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

header h2 {
    margin: 0 0 1em 0;
}

.container {
    width: 95%;
    max-width: 950px;
    position: relative;
    margin: auto;
}

.lone-header {
    margin: 0;
    padding-top: 20px;
    text-align: center;
}

/* ===============================
NAV LAYOUT WITH MARQUEE
=============================== */

.sk-nav-inner{
  display:flex;
  align-items:center;
  gap:28px;
}

.sk-logo{
  flex:0 0 auto;
  white-space:nowrap;
}

.sk-marquee-wrap{
  flex:1 1 auto;
  min-width:180px;
  max-width:920px;
  overflow:hidden;
  position:relative;
  height:50px;
  display:flex;
  align-items:center;

  /* fade both sides */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 14%,
    black 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 14%,
    black 86%,
    transparent 100%
  );
}

.sk-marquee-track{
  display:flex;
  width:max-content;
  gap:8px;
  white-space:nowrap;
  animation: skMarquee 22s linear infinite;
}

.sk-marquee-track span{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(224,163,154,.9);
  line-height:1;
  white-space:nowrap;
}

@keyframes skMarquee{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* keep nav links on the right */
.sk-menu{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:28px;
  background:transparent !important;
  margin:0 !important;
  padding:0 !important;
  border:none !important;
  box-shadow:none !important;
}

.sk-menu a{
  padding:0 !important;
  margin:0 !important;
  height:auto !important;
  line-height:normal !important;
  display:inline-block !important;
  background:transparent !important;
  white-space:nowrap;
}

/* responsive */
@media (max-width: 1100px){
  .sk-marquee-wrap{
    max-width:320px;
  }
}

@media (max-width: 900px){
  .sk-marquee-wrap{
    display:none;
  }

  .sk-nav-inner{
    justify-content:space-between;
  }
}

footer {
    text-align: center;
    padding: 1.5em 0;
    background: linear-gradient(180deg, rgba(17, 20, 28, 0.95), rgba(10, 11, 15, 0.98));
    border-top: 1px solid var(--border);
}

footer p {
    margin: 0;
    color: var(--text-main);
}

footer a {
    color: var(--heading);
}

nav {
    background: transparent;
    border: none;
    backdrop-filter: none;
}

nav ul,
nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav a {
    padding: 0 1em;
    text-decoration: none !important;
    font-size: 0.9em;
    height: 60px;
    line-height: 60px;
    display: block;
    color: var(--text-main);
    transition: all 0.25s ease;
}

nav a:hover {
    color: var(--heading);
}

nav h1 {
    padding: 7px 1em;
    height: 45px;
    line-height: 60px;
    color: var(--white);
}

nav h1 img {
    margin-right: 10px;
    float: left;
    margin-top: 9px;
}

nav h1 span {
    float: left;
    margin-top: -5px;
    color: var(--heading);
}

nav a:active {
    color: var(--white);
    cursor: default;
}

nav ul.site {
    padding: 20px 0 0 0;
}

nav #menu {
    overflow: hidden;
    max-height: 0;
    clear: left;
}

nav #menu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    padding: 0 16px;
    color: var(--heading);
}

section {
    padding: 1em 0 3em;
    text-align: center;
    color: var(--text-main);
}

nav::before,
nav::after,
header::before,
header::after,
section::before,
section::after {
    content: " ";
    display: table;
}

nav::after,
header::after,
section::after {
    clear: both;
}

input {
    display: block;
    line-height: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    transition: all linear 0.2s;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(185, 120, 111, 0.25);
    color: var(--white);
    border-radius: 8px;
    padding: 10px 14px;
}

input:focus {
    border-color: var(--accent);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(185, 120, 111, 0.15);
}

.docs-nav {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    list-style: none;
    margin: 0 0 0 20px;
    padding: 15px 20px;
    font-size: 0.97em;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.docs-nav a {
    display: block;
    margin: 0 -20px;
    padding: 10px 20px;
    text-decoration: none;
    border-right: 2px solid transparent;
    color: var(--text-main);
}

.docs-nav a:hover {
    color: var(--heading);
}

ul {
    padding-left: 30px;
}

ul ul {
    list-style-type: disc;
}

p.note {
    padding: 20px;
    background-color: rgba(141, 79, 71, 0.18);
    border: 1px solid rgba(185, 120, 111, 0.22);
    border-radius: 10px;
    color: var(--text-main);
}

p.info {
    padding: 20px;
    background-color: rgba(224, 163, 154, 0.08);
    border: 1px solid rgba(224, 163, 154, 0.18);
    border-radius: 10px;
    color: var(--text-main);
}

.c_head {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    margin-top: 30px;
    color: var(--heading);
}

@media (min-width: 680px) {
    nav {
        height: 60px !important;
    }

    nav #menu {
        height: 60px !important;
    }

    nav li,
    nav a {
        float: left;
    }

    nav ul.site {
        float: left;
        padding: 0;
        clear: none;
    }

    nav ul.site li {
        margin: 0 0 0 10px;
    }

    nav #menu-toggle {
        display: none !important;
    }

    nav #menu {
        max-height: 9999px;
        clear: none;
    }
}

@media (min-width: 960px) {
    .docs-nav {
        position: absolute;
        top: 0;
        width: 220px;
        transition: top linear 50ms;
    }

    .docs-nav.fixed {
        position: fixed;
        top: 49px;
        width: 220px;
    }

    .docs-nav a:hover {
        background: rgba(185, 120, 111, 0.14);
        color: var(--white);
    }

    .docs-nav a:active {
        background: rgba(185, 120, 111, 0.16);
        color: var(--white);
        border-right: 2px solid var(--accent);
    }

    .docs-nav .active {
        background: rgba(185, 120, 111, 0.18);
        color: var(--white);
        border-right: 2px solid var(--heading);
    }

    .docs-nav .separator {
        height: 20px;
    }

    .docs-content {
        padding-left: 310px;
    }

    .container {
        max-width: 90%;
        padding: 0 20px;
    }

    section {
        padding: 3em 0;
        text-align: left;
        background: transparent;
    }

    section.centered {
        text-align: center;
    }

    input {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .wrapper {
        margin: 0;
        border: none;
        box-shadow: none;
        border-radius: 0;
        background: rgba(17, 20, 28, 0.94);
    }

    .nav {
        border-radius: 0;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 26px;
    }
}

/* =========================
   CLEAN HERO + NAV
========================= */

.sk-navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 18px 0;
  background: rgba(10, 11, 15, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(185, 120, 111, 0.18);
}

.sk-menu{
  display: flex;
  align-items: center;
  gap: 28px;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.sk-menu a{
  color: #fff !important;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  line-height: normal !important;
  height: auto !important;
  display: inline-block !important;
  transition: color 0.3s ease;
}

.sk-menu a:hover{
  color: var(--heading) !important;
}

/* hero section */
.sk-hero{
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding-top: -5px;
  padding-bottom: -400;
  background:
    linear-gradient(rgba(4,13,16,.6), rgba(4,13,16,.8)),
    url("images/hero.jpg") center/cover no-repeat;
}

.sk-hero .container{
  max-width: 1400px;
  width: 100%;
	margin-bottom: -400;
}

.hero-grid{
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: start;
  gap: 0;
  margin-top: -400px;
  margin-bottom: 0;
	padding-bottom: -20px;
}

.sk-hero-content{
  max-width: 760px;
  justify-self: end;
  margin-top: 0;
  padding-top: 0;
}

.hero-logo{
  max-width: 430px;
  width: 100%;
  justify-self: start;
  transform: translateX(-40px);
  margin-top: -20px;
}

.hero-logo img{
  max-width: 430px;
  width: 100%;
  height: auto;
  display: block;
}

.sk-hero h1{
  font-family: 'Ananda', 'Calling', cursive !important;
  font-size: clamp(70px, 7vw, 110px);
  line-height: 0.95;
  margin-bottom: 18px;
  max-width: none;
}

.sk-hero p{
  max-width: 760px;
  margin-bottom: 0;
}

@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .sk-hero-content{
    justify-self: center;
    max-width: 100%;
  }

  .hero-logo{
    justify-self: center;
    transform: none;
    max-width: 300px;
  }

  .hero-logo img{
    max-width: 300px;
  }
}
/* =========================
   FOOD MARQUEE
========================= */

.food-marquee-section{
  margin-top: -100px;
  padding-top: 0;
}

.food-marquee-wrap::before,
.food-marquee-wrap::after{
  content:"";
  position:relative;
  margin-top: 30px;
  width:250px;
  height:100%;
  z-index:2;
  pointer-events:none;
}

.food-marquee-wrap::before{
  left:0;
  background: linear-gradient(to right, #0a0b0f, transparent);
}

.food-marquee-wrap::after{
  right:0;
  background: linear-gradient(to left, #0a0b0f, transparent);
}

.food-marquee-track{
  display: flex;
  gap: 24px;
  width: max-content;
  animation: foodScroll 28s linear infinite;
  will-change: transform;
}

.food-marquee-item{
  flex: 0 0 auto;
  width: 260px;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(185,120,111,.2);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
  background: rgba(255,255,255,.03);
}

.food-marquee-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.food-marquee-item:hover img{
  transform: scale(1.05);
}

@keyframes foodScroll{
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px){
  .hero-grid{
    flex-direction: column;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    gap: 40px;
  }

  

  .hero-logo img{
    max-width: 300px;
  }

  .food-marquee-item{
    width: 220px;
    height: 150px;
  }

  .food-marquee-track{
    gap: 16px;
    animation-duration: 24s;
  }
}
.food-marquee-wrap{
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* HERO WIDTH FIX */
.sk-hero .container{
  max-width: 1600px;
  width: 100%;
}

/* HERO LAYOUT */
.hero-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  margin-left: 80px;
  margin-right: 80px;
}

/* HERO TEXT */
.sk-hero .container{
  max-width: 1600px;
  width: 100%;
}

.hero-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* reduced */
  margin-left: 80px;
  margin-right: 80px;
}

.sk-hero-content{
  flex: 1 1 65%; /* GIVE TEXT MORE SPACE */
  max-width: none; /* REMOVE LIMIT */
}

.sk-hero h1{
  font-size: clamp(70px, 7vw, 110px);
  line-height: 0.95;
  margin-bottom: 25px;
  max-width: none;
}

/* HERO LOGO */
.hero-logo{
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
}

.hero-logo img{
  max-width: 420px;
  width: 100%;
}/* FINAL HERO TITLE FIX */

.sk-hero .container{
  max-width: 2700px !important;
  width: 100% !important;
}

.hero-grid{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important; /* was space-between */
  gap: 20px !important; /* smaller gap = closer together */
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.sk-hero-content{
  flex: 0 1 700px !important;
  max-width: 700px !important;
  margin-right: 0 !important;
}

.hero-logo{
  flex: 0 0 520px !important; /* smaller logo column */
  display: flex !important;
  justify-content: center !important;
  margin-left: 0 !important;
}

.hero-logo img{
  max-width: 520px !important;
  width: 100% !important;
  height: auto !important;
}
.hero-title{
  font-size: clamp(70px, 7vw, 110px) !important;
  line-height: 0.95 !important;
  margin-bottom: 25px !important;
  max-width: none !important;
}

.hero-line-1,
.hero-line-2{
  display: block;
}

.hero-line-1{
  white-space: nowrap;
}

@media (max-width: 900px){
  .hero-grid{
    flex-direction: column !important;
    text-align: center !important;
    margin-left: 30px !important;
    margin-right: 30px !important;
  }

  .hero-logo{
    flex: 0 0 auto !important;
  }

  .hero-logo img{
    max-width: 300px !important;
  }

  .hero-line-1{
    white-space: normal;
  }
}.hero-title,
.hero-title span{
  font-family: "Baskervville", sans-serif !important;
  font-weight: 400 !important;
  color: var(--heading) !important;
	font-size: 80px
}

.hero-title{
  font-size: clamp(70px, 7vw, 110px) !important;
  line-height: 0.95 !important;
  margin-bottom: 25px !important;
  max-width: none !important;
}

.hero-line-1,
.hero-line-2{
  display: block;
}

.hero-line-1{
  white-space: nowrap;
}

@media (max-width: 900px){
  .hero-line-1{
    white-space: normal;
  }
}
.sk-hero{
  min-height: 40vh; /* was 100vh */
  padding-bottom: 0;
}
.food-marquee-section{
  margin-top: 0; /* fixed overlap */
  padding-top: 0;
}
.sk-subtitle{
  color: #ffffff !important;
}
.sk-subtitle{
  font-size: 12px;
  letter-spacing: 0.25em;
  opacity: 0.85;
}
.sk-subtitle{
  margin-bottom: 20px; /* tighten gap */
  letter-spacing: 0.18em; /* optional: cleaner spacing */
}

/* MENU */
.sk-bistro-menu{
  padding: 110px 0;
  display: flex;
  justify-content: flex-start; /* push everything left */
}

.sk-bistro-menu .container{
  max-width: 650px;   /* controls width of the menu block */
  margin-left: 60px;  /* pushes it off the edge a bit */
  margin-right: auto; /* keeps it left */
}

.sk-bistro-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.sk-bistro-kicker{
  display: inline-block;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  margin-bottom: 14px;
}

.sk-bistro-head h2{
  margin: 0 0 14px;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: .98; font-family: 'Ananda', serif; /* change this to any font you want */
	color: #FFFFFF;
}

.sk-bistro-head p{
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.sk-bistro-tabs{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.sk-tab{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(185,120,111,.24);
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: .25s ease;
}

.sk-tab.active,
.sk-tab:hover{
  background: rgba(185,120,111,.12);
  color: var(--heading);
  border-color: rgba(185,120,111,.5);
}

.sk-tab-panel{
  display: none;
}

.sk-tab-panel.active{
  display: block;
}

.sk-menu-list{
  max-width: 980px;
  margin: 0 auto;
}

.sk-menu-item{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(185,120,111,.18);
}

.sk-menu-item:last-child{
  border-bottom: 1px solid rgba(185,120,111,.18);
}

.sk-menu-copy h3{
  margin: 0 0 8px;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1;
	font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.otf') format('opentype');
}

.sk-sides-item .sk-menu-copy h3{
  margin-bottom: 14px;
}

.sk-sides-grid{
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  justify-content: start; /* ðŸ”¥ keeps both columns grouped together */
}

.sk-sides-col p{
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
}

.sk-sides-item{
  align-items: start;
}

@media (max-width: 768px){
  .sk-sides-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.sk-menu-copy p{
  margin: 0;
  color: #f1f1f1;
  font-size: 18px;
  line-height: 1.65;
}

.sk-menu-price{
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: .95;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.sk-menu-note{
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 800px){
  .sk-menu-item{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sk-menu-price{
    white-space: normal;
  }
}

/* MOVE MENU HIGHLIGHTS LEFT */
.sk-bistro-head-left{
  text-align: left;
  max-width: none;
  margin: 0 0 24px 0;
  padding-left: 0;
}

.sk-bistro-head-left h2{
  margin: 0;
}

/* SCRIPT-STYLE SECTION TITLE */
.sk-menu-divider-title{
  margin: 46px 0 22px;
  text-align: left;
}

.sk-menu-divider-title h2{
  margin: 0;
  font-family: 'Ananda', 'A Calling Font_D by 7NTypes', cursive;
  font-size: clamp(56px, 5vw, 92px);
  line-height: .95;
  color: #ffffff;
  font-weight: 400;
}

/* DESSERTS + ADD-ONS TWO COLUMN LAYOUT */
.sk-desserts-addons-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* KEEP THESE MENU BLOCKS CLEAN */
.sk-menu-item{
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(185,120,111,.22);
}

.sk-menu-copy h3{
  margin: 0 0 12px;
}

.sk-menu-copy p{
  margin: 0;
  line-height: 1.45;
}

/* SIDES GRID */
.sk-sides-grid{
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
  justify-content: start;
}

.sk-sides-col p{
  margin: 0;
  line-height: 1.45;
}

/* MOBILE */
@media (max-width: 768px){
  .sk-desserts-addons-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sk-sides-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sk-menu-divider-title h2{
    font-size: clamp(42px, 10vw, 64px);
  }
}
.sk-desserts-addons-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sk-dessert-addon-item{
  padding: 0;
  border: 0;
}

.sk-dessert-addon-item .sk-menu-copy h3{
  margin: 0 0 18px;
}

.sk-dessert-addon-item .sk-menu-copy p{
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px){
  .sk-desserts-addons-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
}.sk-dessert-addon-item .sk-menu-copy{
  display: flex;
  flex-direction: column;
}
.sk-desserts-addons-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.sk-dessert-addon-item{
  display: flex;
  justify-content: flex-start; /* ðŸ”¥ key fix */
}

.sk-dessert-addon-item .sk-menu-copy{
  text-align: left;
  align-items: flex-start;
}
.sk-desserts-addons-grid > div:last-child{
  justify-self: start; /* ðŸ”¥ locks it left */
}

/* HERO */
.hero-section {
  position: relative;
  padding-bottom: 140px; /* creates room for marquee */
  overflow: hidden;
}

/* MARQUEE WRAPPER */
.food-marquee {
  position: relative;     /* not absolute */
  z-index: 2;
  margin-top: 30px;       /* adjust as needed */
}

/* if you currently have something like this, remove it */
.food-marquee {
  top: auto;
  bottom: auto;
  left: auto;
}

/* FORCE HERO + MARQUEE CLOSER */

.food-marquee-section{
  margin-top: -300px !important;
  padding-top: 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

/* =========================
   SIDE BY SIDE MENU LAYOUT
========================= */

.sk-menu-split{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 40px 60px;
}

.sk-menu-left,
.sk-menu-right{
  flex: 1 1 0;
  max-width: 650px;
}

.sk-menu-right .sk-bistro-head{
  text-align: left;
  margin: 0 0 24px 0;
}

@media (max-width: 900px){
  .sk-menu-split{
    flex-direction: column;
    padding: 30px;
    gap: 40px;
  }

  .sk-menu-left,
  .sk-menu-right{
    max-width: 100%;
  }
}
/* SCRIPT HEADINGS (Menu Highlights, Private Dinners, Catering Packages) */
.sk-bistro-head h2{
  font-size: clamp(38px, 3.2vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

/* SECTION TITLES (CLASSIC ENTREES, SIDES, etc.) */
.sk-menu-copy h3{
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* BODY TEXT */
.sk-menu-copy p{
  font-size: 15px;
  line-height: 1.6;
}

/* PRICE (right side) */
.sk-menu-price{
  font-size: 32px;
  font-weight: 600;
}

/* REMOVE PINK DIVIDER LINES */
.sk-menu-item,
.sk-menu-copy,
.sk-menu-copy h3,
.sk-menu-copy p,
.sk-bistro-head,
.sk-sides-grid,
.sk-desserts-addons-grid{
  border: none !important;
}

/* remove any pseudo-element lines */
.sk-menu-item::after,
.sk-menu-item::before,
.sk-menu-copy::after,
.sk-menu-copy::before,
.sk-bistro-head::after,
.sk-bistro-head::before{
  content: none !important;
  display: none !important;
}

/* CENTER THE WHOLE SECTION + ADD SIDE PADDING */
.sk-menu-split{
  display: flex;
  justify-content: center;   /* centers the whole block */
  align-items: flex-start;
  gap: 80px;                 /* space between columns */
  padding: 80px 0;           /* remove side padding */
  max-width: 1400px;         /* controls total width */
  margin: 0 auto;            /* centers it */
}

/* LEFT + RIGHT COLUMNS */
.sk-menu-left,
.sk-menu-right{
  flex: 1;
  max-width: 600px;          /* slightly tighter */
}

/* ADD INTERNAL PADDING SO TEXT ISN’T TOUCHING EDGES */
.sk-menu-left{
  padding-left: 40px;
}

.sk-menu-right{
  padding-right: 40px;
}

/* =========================
   CONTACT FOOTER SECTION
========================= */

.sk-contact-footer{
  padding: 80px 20px;
  text-align: center;
}

/* CONTACT ROW */
.sk-contact-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* EACH ITEM */
.sk-contact-item{
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: #e7e7e7;
}

.sk-icon{
  color: #e8a9a0; /* your pink tone */
  font-size: 10px;
}

/* NOTES TEXT */
.sk-contact-notes p{
  font-size: 12px;
  margin: 6px 0;
  font-weight: 500;
}

/* TAGLINE */
.sk-contact-tagline{
  margin-top: 30px;
}

.sk-contact-tagline p{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

/* TAGLINE */
.sk-contact-tagline{
  margin-top: 30px;
  text-align: center;
}

.sk-contact-tagline p{
  font-family: 'Ananda', 'Calling', cursive;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
}

/* TARGET THE BIG CENTER TEXT BLOCK */
.sk-contact-footer p{
  font-size: 50px !important;
}

/* TARGET THE SMALL CONTACT LINE */
.sk-contact-footer p:last-child{
  font-size: 22px !important;
}

/* TAGLINE */
.sk-contact-tagline{
  text-align: center !important;
  margin: 0 auto 20px !important;
}

.sk-contact-tagline p{
  font-family: 'Ananda', 'Calling', cursive !important;
  font-size: 56px !important;
  line-height: 1.15 !important;
  text-align: center !important;
  margin: 0 auto !important;
  color: #ffffff !important;
}

/* ABOUT / BOOKING NOTICE SECTION */
#contact{
  padding: 60px 0 !important;
  background: #040d10 !important;
}

#contact .container{
  max-width: 1800px !important;
  width: 94% !important;
  margin: 0 auto !important;
}

/* TOP LINE (48-hour text) */
#contact h2{
  font-family: "Baskervville", sans-serif !important;
  font-size: 40px !important;
  line-height: 1.2 !important;
  margin: 0 0 18px 0 !important;
  color: var(--heading) !important;
  text-align: center !important;
  white-space: nowrap !important;
}

/* CONTACT LINE (Erie, phone, email) */
#contact .about-contact{
  font-size: 28px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  color: #ffffff !important;
  text-align: center !important;
  font-family: "Prompt", sans-serif !important;
  font-weight: 500 !important;
}

#contact .about-contact a{
  color: #ffffff !important;
  text-decoration: none !important;
}

#contact .about-contact a:hover{
  color: var(--heading) !important;
}
@media (max-width: 1200px){
  #contact h2{
    white-space: normal !important;
    font-size: 32px !important;
  }

  #contact .about-contact{
    font-size: 22px !important;
  }
}

@media (max-width: 768px){
  #contact h2{
    font-size: 26px !important;
  }

  #contact .about-contact{
    font-size: 18px !important;
  }
}

/* FORCE SCRIPT FONT ON HERO HEADLINE */
.sk-hero h1,
.sk-hero .hero-title,
.sk-hero .hero-title span,
.sk-hero .hero-line-1,
.sk-hero .hero-line-2{
  font-family: 'Ananda', 'Calling', cursive !important;
  font-weight: 200 !important;
}

/* keep your sizing */
.sk-hero h1,
.sk-hero .hero-title{
  font-size: clamp(70px, 7vw, 110px) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center; /* this is key */
  padding: 80px 8% 40px; /* more top, less bottom */
  gap: 60px; /* controls space between text + logo */
}

/* =========================
   HERO FINAL SIZE MATCH
========================= */

.sk-hero{
  padding: 120px 0 10px !important;
  min-height: auto !important;
}

.sk-hero .container{
  max-width: 1820px !important;
  width: 96% !important;
  margin: 0 auto !important;
}

.hero-grid{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 70px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* LEFT SIDE */
.sk-hero-content{
  flex: 0 1 980px !important;
  max-width: 980px !important;
  min-width: 0 !important;
}

.sk-hero h1,
.sk-hero .hero-title{
  font-family: 'Ananda', 'Calling', cursive !important;
  font-size: clamp(92px, 7.2vw, 150px) !important;
  line-height: 0.92 !important;
  margin: 0 0 28px 0 !important;
  letter-spacing: 0 !important;
}

.sk-hero p{
  max-width: 900px !important;
  font-size: 25px !important;
  line-height: 1.45 !important;
  margin: 0 0 30px 0 !important;
}

/* BUTTON */
.sk-hero .btn,
.sk-hero-content .btn,
.sk-hero-content a.btn{
  font-size: 15px !important;
  padding: 18px 36px !important;
  display: inline-block !important;
}

/* RIGHT SIDE LOGO */
.hero-logo{
  flex: 0 0 620px !important;
  max-width: 620px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transform: none !important;
  margin: 0 !important;
}

.hero-logo img{
  width: 100% !important;
  max-width: 620px !important;
  height: auto !important;
  display: block !important;
}

/* FOOD STRIP CLOSER TO HERO LIKE THE LARGE VERSION */
.food-marquee-section{
  margin-top: 10px !important;
  padding-top: 0 !important;
}

.food-marquee-track{
  gap: 22px !important;
}

.food-marquee-item{
  width: 290px !important;
  height: 195px !important;
}

/* DESKTOP TIGHTENING */
@media (min-width: 1400px){
  .hero-grid{
    gap: 55px !important;
  }

  .sk-hero-content{
    flex-basis: 1020px !important;
    max-width: 1020px !important;
  }

  .hero-logo{
    flex-basis: 660px !important;
    max-width: 660px !important;
  }

  .hero-logo img{
    max-width: 660px !important;
  }
}

/* TABLET / SMALLER */
@media (max-width: 1200px){
  .sk-hero h1,
  .sk-hero .hero-title{
    font-size: clamp(72px, 8vw, 110px) !important;
  }

  .sk-hero p{
    font-size: 21px !important;
    max-width: 760px !important;
  }

  .hero-logo{
    flex: 0 0 480px !important;
    max-width: 480px !important;
  }

  .hero-logo img{
    max-width: 480px !important;
  }

  .food-marquee-item{
    width: 240px !important;
    height: 165px !important;
  }
}

/* MOBILE */
@media (max-width: 900px){
  .sk-hero{
    padding: 110px 0 20px !important;
  }

  .hero-grid{
    flex-direction: column !important;
    text-align: center !important;
    gap: 28px !important;
  }

  .sk-hero-content{
    max-width: 100% !important;
    flex-basis: auto !important;
  }

  .sk-hero h1,
  .sk-hero .hero-title{
    font-size: clamp(58px, 11vw, 88px) !important;
  }

  .sk-hero p{
    font-size: 18px !important;
    max-width: 100% !important;
  }

  .hero-logo{
    flex: 0 0 auto !important;
    max-width: 360px !important;
  }

  .hero-logo img{
    max-width: 360px !important;
  }

  .food-marquee-item{
    width: 220px !important;
    height: 150px !important;
  }
}

@media (max-width: 900px){

  .sk-nav-inner{
    justify-content: center !important;
  }

  .sk-menu{
    justify-content: center !important;
    width: 100%;
    gap: 24px;
  }

}@media (max-width: 900px){

  .sk-hero h1,
  .sk-hero .hero-title{
    line-height: 1.1 !important;   /* was too tight */
    letter-spacing: 0.5px !important;
  }

  .hero-line-1,
  .hero-line-2{
    margin-bottom: 6px; /* adds breathing room between lines */
  }

}@media (max-width: 900px){

  .sk-hero h1{
    font-size: clamp(58px, 11vw, 82px) !important;
  }

}
@media (max-width: 768px){

  .sk-desserts-addons-grid{
    grid-template-columns: 1fr !important; /* stack them */
    gap: 28px;
    padding: 0 24px;
  }

  .sk-dessert-addon-item{
    width: 100%;
  }

}

@media (max-width: 768px){

  .sk-menu-split{
    padding: 0 24px !important;
  }

  .sk-menu-left,
  .sk-menu-right{
    padding: 0 !important;
  }

}
/* DESKTOP DEFAULT */
.hero-tagline,
.booking-note{
  display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px){

  /* hide desktop versions on mobile */
  .sk-contact-tagline p{
    display: none !important;
  }

  #contact .container > h2:not(.booking-note){
    display: none !important;
  }

  /* show mobile versions */
  .hero-tagline,
  .booking-note{
    display: block !important;
  }

  .hero-tagline{
    font-size: clamp(40px, 8.5vw, 54px) !important;
    line-height: 1.08 !important;
    text-align: center !important;
    padding: 0 18px !important;
    margin: 0 auto 24px !important;
    color: #ffffff !important;
  }

  .booking-note{
    font-size: clamp(18px, 4.8vw, 24px) !important;
    line-height: 1.35 !important;
    text-align: center !important;
    padding: 0 18px !important;
    margin: 0 auto 18px !important;
    white-space: normal !important;
  }

  .about-contact{
    font-size: 18px !important;
    line-height: 1.45 !important;
    text-align: center !important;
    padding: 0 18px !important;
  }
}

@media (max-width: 768px){

  .sk-sides-grid{
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .sk-sides-col{
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

}
@media (max-width: 768px){

  .sk-desserts-addons-grid{
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    padding: 0 18px !important;
  }

  .sk-dessert-addon-item{
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .sk-dessert-addon-item .sk-menu-copy{
    width: 100% !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .sk-dessert-addon-item .sk-menu-copy h3,
  .sk-dessert-addon-item .sk-menu-copy p{
    text-align: left !important;
  }

}
