/* gen stuff */

* {
    box-sizing: border-box;
}

html, body {
  background-color: #1a1919;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden; /* This kills global horizontal scrolling completely */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit; /* Ensures padding never breaks layout widths anywhere */
  }


/* text stuff */

p {
  color: rgb(241, 233, 233);
  margin-left: 40px; 
  margin-right: auto; 
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  line-height: 1.6
}

.p-left {
  color: rgb(241, 233, 233);
  margin-left: 40px; 
  margin-right: auto; 
  text-align: left;
  font-family: 'Fredoka', sans-serif;
}

h1 {
  color: orange;
  text-align: center;
}

h2 {
  color: black;
  text-align: center;

}



h3 {
  color: #ffffff;
  text-align: center;
}

.left-h2 {
  color: black;
  margin-left: 40px;
  margin-right: auto;
  margin-top: 40px;
}

h1, h2, h3, .bubbly-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600; 
    letter-spacing: 0.5px;
}

.p2 {
  color: rgb(15, 15, 15);
  font-family: 'Fredoka', sans-serif;
  font-size: 28px;
  line-height: 1.4;
  
}

.h4 {
  color: rgb(15, 15, 15);
  font-family: 'Fredoka', sans-serif;
  font-size: 50px;
  line-height: 1.2;
  max-width: 600px;
  margin-left: 40px;
  margin-top: 20px;

}



.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;            
  padding: 20px 10%;
  background-color: #333;
  color: black;
}

.hero-text {
    position: absolute;
    z-index: 2; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
}

.orange-accent {
  color: #f08914; /* Your brand orange */
}

.bold-heading {
  font-size: 3.5rem;       /* Bumps up the size significantly (approx 56px) */
  line-height: 1.2;        /* Keeps the stacked lines tight and clean so they don't drift apart */
  color: #1a1919;          /* Keeps it deep dark charcoal/black */
  margin-bottom: 20px;     /* Adds a nice gap between this header and the paragraph text */
  text-align: left;
  margin-left: 40px;
}

/* nav bar */

nav a {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

nav {
  width: 100%; 
  background-color: #181818; 
  position: fixed;
  z-index: 1000; 
  top: 0;
}

nav ul {
  list-style: none;               
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;          
  color: white;
}

nav a img, 
nav img {
    background: transparent !important;
    background-color: transparent !important;
    border: none;
}


.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}


nav a img {
    max-height: 100px; 
    width: auto;
    margin-right: 50px;
}

/* content sorting */ 

img {
    display: block;
    align-items: center;
    width: auto;
    max-height: 100px;
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 350px;
  height: auto; 
  max-height: 350px;
  margin-top: 100px;
  margin-bottom: 40px;
  align-items: center;
}

.diff-center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 350px;
  height: auto; 
  max-height: 350px;
  margin-top: 40px;
  margin-bottom: 100px;
}

.right-image {
  display: block;
  margin-left: auto;
  margin-right: 30px;
  width: 100%;
  max-width: 400px;
  height: 437px; 
  max-height: 500px;
  margin-bottom: 50px;
  margin-top: 50px;
}

.lil-left-image {
  display: block;
  margin-top: 50px;
  margin-bottom: 50px; 
  width: 100%;
  max-width: 400px;
  height: auto; 
  max-height: 450px;
}

.container {
  max-width: 1200px; 
  width: 100%; 
  margin: 0 auto; 
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 15px 20px; 
}

.center-container {
    display: flex;
    justify-content: center; 
    align-items: center;     
    background-color: #f08914;
    
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1; /* Lowest number = Background */
  object-fit: cover;
}


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* Change 0.55 to higher (like 0.7) for darker, lower for lighter */
    z-index: 1; /* Sits right on top of the video */
}


.hero-container {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}


.white-section {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 1000px; 
  background-color: #FDFBF7;
  padding: 40px; 
}

.view-menu-button {
    display: block;
    margin: 20px auto; 
    padding: 10px 20px;
    font-size: 1.2rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    color: #ffffff;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

ul::view-menu-button(*):hover,
ul::view-menu-button(*):focus {
  opacity: 1;
}

/* moving header */

.scroll-container {
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;

}

.scroll {
  white-space: nowrap;
  margin: 0 2em;
}

.scroll div{
  display: flex;
  gap: 2em
}

.scroll img {
  margin-bottom: 0
}

.RightToLeft {
  animation: RightToLeft 25s infinite linear;
}

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

/* welcome message */
  
  /* The main wrapper for the whole block */

  .welcome-message {
    
    background-color: #FDFBF7;
    width: 1800px;
    max-width: 92%;
    height: auto;
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border: 5px solid rgb(0, 0, 0);
    border-radius:50px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 60px 40px;
    max-height: none;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 5px 15px rgba(0, 0, 0, 0.2);
    
  }

  /* Target the middle paragraph specifically */
.welcome-message p {
  text-align: left;       /* Changes it from center to left alignment */
  margin-left: 0;         /* Removes any inherited center offsets */
  margin-right: 0;
  font-size: 2.2rem;      /* Slightly bumps up size if needed for readability */
  color: #383333;         /* A soft dark gray looks cleaner than harsh pure black on white */
}

.text-group {
  display: flex;
  flex-direction: column; /* Stacks header on top of paragraph */
  justify-content: center;/* Vertically centers them relative to the food photos */
  gap: 15px;              /* Adds a perfect uniform space between heading and paragraph */
  max-width: 45%;         /* Keeps the text from spilling over into the images */
}

.welcome-message img {
  border-radius: 16px; /* Smooth rounded edges */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

  .welcome-message img:hover {
  transform: scale(1.03);
}

  .welcome-message::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#f08914 20%, transparent 20%);
  background-size: 15px 15px;
  z-index: 1; /* Sits cleanly behind the white card */
  opacity: 0.5;

  
}

/* Replace the .welcome-message::before or add to a new class */
.welcome-message::after {
  content: '';
  position: absolute;
  top: -25px;
  left: -25px;
  width: 140px;
  height: 140px;
  background-color: #f08914; /* Brand orange */
  opacity: 0.25;             /* Kept soft so it doesn't distract */
  z-index: -1;
  
  /* The secret sauce: This creates an irregular, fluid blob shape */
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  
  /* Gives it a playful float animation */
  animation: blobFloat 6s ease-in-out infinite alternate;
}

/* Subtle floating animation to make the site feel premium */
@keyframes blobFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  100% {
    transform: translate(10px, 10px) rotate(15deg);
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
  }
}
  

/* image carousel */
/* image carousel container */
.carousel-container {
  width: 100%;
  position: relative; /* Acts as the anchor point for buttons and dots */
  overflow: hidden; 
}

ul {
width: 100%;
height: 600px;
padding: 20px;
display: flex;
gap: 4vw;
box-sizing: border-box;
margin: 0;
overflow-x: hidden; /* JavaScript will handle the scrolling smoothly */
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
}

li {
list-style-type: none;
background-color: #242322;
border: 1px solid #dddddd;
padding: 20px;
flex: 0 0 100%;
box-sizing: border-box;
scroll-snap-align: center;
}

li:nth-child(even) {
background-color: #242322;
}

@keyframes smoothReveal {
0% { opacity: 0; transform: translateY(-15px) scale(0.98); }
70% { transform: translateY(2px) scale(1.01); }
100% { opacity: 1; transform: translateY(0) scale(1); }
}

.menu-panel.is-active {
display: block;
animation: smoothReveal 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Traditional, Cross-Browser Carousel Buttons */
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
border: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
background: none;
color: #ffffff;
opacity: 0.7;
cursor: pointer;
transition: transform 0.2s, opacity 0.2s;
}

.carousel-btn:hover, .carousel-btn:focus {
opacity: 1;
}

.carousel-btn:active {
transform: translateY(-50%) translate(1px, 1px);
}

.prev-btn {
left: 200px;
}

.next-btn {
right: 200px;
}

/* Scroll Markers (Dots) */
.scroll-marker-group {
position: absolute;
bottom: 80px;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
gap: 20px;
z-index: 10;
}

.scroll-marker {
width: 16px;
height: 16px;
background-color: transparent;
border: 2px solid #ffffff;
border-radius: 50%;
cursor: pointer;
transition: background-color 0.2s;
box-sizing: border-box; 
}

.scroll-marker.active {
background-color: #ffffff;
}

/* footer */
footer {
  position: relative !important;
  display: block !important;
  clear: both !important;
  background-color: #242322 !important;
  width: 100% !important;
  padding: 40px 0;
  text-align: center;
  color: #ffffff;
  margin-top: 80px !important;
}

/* about me specific */

.black-section {
  background-color: #1a1919;
  width: 100%;
  padding: 60px 20px;
}

.seoul-container {
  position: relative;
  width: 100%;
  height: 300px;           /* Sets the exact ideal height you want */
  overflow: hidden;
  margin-top: 60px;       
  background-color: #1a1919;
}

.seoul-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;            /* Stretches the gradient to match the full 300px height */
  background: linear-gradient(to bottom, transparent, #1a1919);
  z-index: 2;              /* Forces the gradient to sit nicely on top of the image */
  pointer-events: none;
}

.seoul-container img {
  position: absolute;      /* Added absolute positioning to force the image to anchor to the container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important; /* Overrides any rogue 100px limitations */
  max-height: none !important;
  object-fit: cover;       /* Forces the image to stretch out landscape-style to cover the area */
  object-position: center; 
  z-index: 1;              /* Sits right below the gradient layer */
}

/* Container holding map and image side-by-side */
.location-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;             /* Adds a balanced gap between the map and image */
  width: 100%;
  max-width: 1200px;     /* Keeps it aligned with your site's content grid */
  margin: 50px auto;     /* Centers the entire block on the page */
  padding: 0 20px;
}

/* Give the map box and the image box equal fluid width splits */
.location-map-box,
.location-image-box {
  flex: 1;               /* Forces both columns to stay exactly proportional */
  width: 100%;
  max-width: 550px;
  position: relative;
}

.location-map-box iframe {
  width: 100%;
}

/* Force the image to elegantly match the aspect ratio of the map element */
img.location-photo {
  width: 100%;
  height: 450px;         /* Match the exact pixel height setting of your map iframe */
  max-height: none;
  object-fit: cover;     /* Prevents distortion or squishing */
  border-radius: 20px;   /* Clean rounded borders to match your bubbly vibe */
  transition: transform 0.3s ease;
}

img.location-photo:hover {
  transform: scale(1.02);
}

/* Optional: Smooth out the map corners to match the image rounding */
.location-map-box iframe {
  border-radius: 20px;
}

.owners-section-row {
  display: flex;
  flex-direction: row;      /* Forces side-by-side layout */
  align-items: center;      /* Vertically aligns text and image in the middle */
  justify-content: space-between; /* Pushes text to left, image to right */
  gap: 40px;                /* Adds a clean space between text and image */
  width: 100%;
  max-width: 1200px;        /* Limits layout expansion on massive screens */
  margin: 40px auto;        /* Centers the entire block on the page */
  padding: 0 20px 100px;
}

div.owners-container {
  display: flex;
  justify-content: right;
  align-items: right;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;  
  padding-bottom: 80px;     
}

.owners-text-group {
  flex: 1;                  /* Allows text to dynamically take up remaining space */
  text-align: left;
  min-width: 280px;
}

.owners-text-group p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.owners-image-container {
  flex: 0 0 45%;            /* Image wrapper takes up exactly 45% of the row width */
  max-width: 500px;
  position: relative;
}

.owners-image-container::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  /* Use a high z-index to place it underneath or above depending on taste */
  z-index: -1; 
  background-image: radial-gradient(orange 20%, transparent 20%);
  background-size: 15px 15px;
  opacity: 0.6;
}

img.owners-photo {
  width: 100%;
  height: auto;         
  max-height: 450px;
  object-fit: cover;       
  border-radius: 20px;
  transition: transform 0.3s ease;
}

img.owners-photo:hover {
  transform: scale(1.02);
}

/* ---------------- Menu page ---------------- */

.menu-page {
  padding: 160px 20px 100px;
  text-align: center;
}

.menu-subtitle {
  color: #cfcfcf;
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 1.2rem;
}

.menu-book-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 20px;
}

.menu-book-wrapper::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 97, 0.35), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}

.menu-book {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  z-index: 1;
}

.menu-book::before {
  content: '';
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 97, 0.7), transparent);
  transform: translateX(-50%);
  z-index: 2;
}

.menu-page-frame {
  position: relative;
  flex: 1;
  max-width: 480px;
  padding: 14px;
  background: linear-gradient(160deg, #2a2620, #1a1919);
  border: 1px solid rgba(212, 175, 97, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.menu-page-frame:first-child {
  border-radius: 18px 4px 4px 18px;
}

.menu-page-frame:last-child {
  border-radius: 4px 18px 18px 4px;
}

.menu-photo {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.menu-photo:hover {
  transform: scale(1.02);
}

.menu-hint {
  color: #9c9c9c;
  font-size: 0.95rem;
  margin-top: 30px;
  font-style: italic;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 2000;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 34px;
  font-size: 2.6rem;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}

img.restaurant-photo {
  width: 100%;
  height: auto;         
  max-height: 450px;
  object-fit: cover;       
  border-radius: 20px;  

}

.owners-text {
  text-align: left;
  color: white;
  max-width: 900px;
  margin-left: 30px auto;
}

.owners-text-group h1 {
  display: inline-block;
  background-color: #f08914; /* Warm orange */
  color: #1a1919;            /* Dark text for contrast */
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  padding: 6px 18px;
  border-radius: 30px;       /* Cute, bubbly rounded pill shape */
  margin-top: 25px;
  margin-bottom: 10px;
  text-align: left;          /* Overrides global center alignment */
}

/* ---------------- About page flair ---------------- */

.section-heading-accent {
  display: table; /* shrinks to content width while staying block-level */
  margin: 0 auto;
  position: relative;
}

.section-heading-accent::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #f08914;
  border-radius: 4px;
  margin: 10px auto 0;
}

.badge-sticker {
  position: absolute;
  top: -18px;
  right: -14px;
  background-color: #f08914;
  color: #1a1919;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  transform: rotate(9deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.owners-image-container::after {
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  width: 110px;
  height: 110px;
  background-color: #f08914;
  opacity: 0.2;
  z-index: -1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blobFloat 7s ease-in-out infinite alternate;
}

/* ---------------- Order Now dropdown ---------------- */

.order-now-dropdown {
  position: relative;
  margin-left: 50px;
}

.order-now-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  line-height: 0;
}

.order-dropdown-menu {
  position: absolute;
  top: 130%;
  right: 0;
  min-width: 190px;
  background-color: #242322;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
}

.order-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.order-dropdown-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.order-dropdown-menu a:last-child {
  border-bottom: none;
}

.order-dropdown-menu a:hover,
.order-dropdown-menu a:focus {
  background-color: #f08914;
  color: #1a1919;
}

/* ---------------- Hamburger (mobile nav) ---------------- */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

@media (max-width: 1024px) {
  .welcome-message {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .bold-heading {
    font-size: 2.6rem;
    text-align: center;
    margin-left: 0;
  }

  .welcome-message p {
    text-align: center;
  }

  .p2 {
    font-size: 1.4rem;
  }

  .text-group {
    max-width: 100%;
  }

  .owners-image-container {
    flex: 0 0 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .owners-section-row {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 260px;
    background-color: #181818;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.3s ease;
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .menu-page {
    padding-top: 130px;
  }

  .menu-book {
    flex-direction: column;
    align-items: center;
  }

  .menu-book::before {
    display: none;
  }

  .menu-page-frame,
  .menu-page-frame:first-child,
  .menu-page-frame:last-child {
    max-width: 520px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  nav a img {
    max-height: 70px;
    margin-right: 0;
  }

  .order-now-btn img {
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .welcome-message {
    flex-direction: column;
    text-align: center;
    max-height: none;
    padding: 40px 25px;
  }

  .welcome-message p {
    text-align: center;
  }

  .bold-heading {
    text-align: center;
    margin-left: 0;
    font-size: 2.1rem;
  }

  .lil-left-image,
  .right-image {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    height: auto;
  }

  .white-section {
    height: auto;
    padding: 40px 15px;
  }

  ul {
    height: auto;
    padding: 10px;
  }

  li {
    padding: 10px;
  }

  .center-image,
  .diff-center-image {
    max-width: 85%;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .scroll-marker-group {
    bottom: 20px;
  }

  .location-row,
  .owners-section-row {
    flex-direction: column;
    padding-bottom: 60px;
  }

  .location-map-box,
  .location-image-box {
    max-width: 100%;
  }

  .location-map-box iframe {
    width: 100%;
    height: 280px;
  }

  img.location-photo {
    height: 280px;
  }

  .owners-text-group,
  .owners-text-group p,
  .owners-text-group h1 {
    text-align: center;
    margin-left: 0;
  }

  .owners-text-group h1 {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .badge-sticker {
    width: 72px;
    height: 72px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .bold-heading {
    font-size: 1.6rem;
  }

  .p2 {
    font-size: 1.1rem;
  }

  .view-menu-button {
    width: 90%;
  }

  nav a img {
    max-height: 55px;
  }

  .order-now-btn img {
    max-height: 55px;
  }

  .container {
    padding: 12px 15px;
  }
}
