* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: #002366;
}
main {
  margin: 10px;
}

/***************** Splash Screen Styles************** */
/*====================================================*/

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002366; /* Your brand blue */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Higher than your navbar (9999) */
    transition: opacity 1s ease-in-out, visibility 1s;
}

.splash-content {
    text-align: center;
    color: white;
}

.splash-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 80px;
    color: white;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.splash-subtitle {
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
    font-size: 30px;
}

/* Splash Hidden State */
#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(-50px); }
}
/*========================= Slideshow Section ========================*/
/*====================================================================*/

#slideshow {
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: calc(50% - 10px);
  /* The slides handle the background image/gradient now. */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
  /* IMPORTANT: Keep this as 'fixed' and DO NOT add 'position: relative' here. */
}

/* ------------------- SLIDE CONTENT CONTAINER ------------------- */
.slideshow-container {
  padding: 25px;
  position: relative; /* CRITICAL: This positions the content relative to #slideshow */
  z-index: 2; /* CRITICAL: Ensures content (nav, card) sits ON TOP of the slides */
  height: 100%; /* Ensures content container fills the entire fixed box */
  /* Add this height for layering purposes. */
}

/* ------------------- INDIVIDUAL SLIDES ------------------- */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Hidden by default */
  transition: opacity 1s ease-in-out; /* Smooth fade effect */
  z-index: 1; /* Sits UNDER the content container (z-index: 2) */

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* Add the gradient overlay to each slide image */
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 40%
    ),
    var(--slide-image); /* Placeholder, the image URL is set inline in HTML */
}

.slide.current {
  opacity: 1; /* Visible slide */
}

/* ------------------- SLIDESHOW DOTS ------------------- */
.slideshow-dots {
  position: absolute;
  bottom: 30px;
  left: 15%;
  transform: translateX(-50%);
  z-index: 3; /* Ensure dots are on top of both slides and content */
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #002466a8;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot:hover,
.dot.active-dot {
  background-color: white;
}

/* ------------------- ORIGINAL CONTENT STYLES (Kept for completeness) ------------------- */

.slideshow-nav {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  border-radius: 7px;
  width: 45.2vw;
  height: 82px;
}
.slideshow-nav p {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: white;
}
.place {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  width: fit-content;
  position: absolute; /* Kept absolute positioning for the card */
  right: 25px;
  bottom: 25px;
}
.place-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.find {
  display: flex;
  justify-content: space-between;
}
.find p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.arrow {
  height: 20px;
  width: 20px;
}
.arrow img {
  width: 100%;
  transition: transform 0.3s ease;
}
.place:hover .arrow img {
  transform: rotate(-45deg);
}
.address {
  display: flex;
  flex-direction: column;
}
.address p {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #777;
}
.address span {
  height: 1px;
  width: 100%;
  margin: 10px 0;
  background-color: #002366;
}

/*========================= Content Section ========================*/
/*====================================================================*/

#content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*********** nav bar ***********/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #00246631;
  background-color: white;
  border-radius: 7px;
  padding: 2px 30px;
  position: fixed;
  z-index: 9999;
  height: 82px;
  top: 35px;

  /* --- THE LOCK --- */
  /* 32px = 10px (main margin) + 12px (section padding) + 10px (your desired gap) */
  left: 34px;

  /* Width = Half screen - (left offset + 10px for the right side gap) */
  width: calc(50% - 58px);
}
.navbar-logo {
  font-family: "Great Vibes", cursive;
  font-size: 55px;
  font-weight: 500;

  /* FIX: Standardize the line-height so it doesn't push the text up */
  line-height: 1;

  /* THE NUDGE: Move it down 5px to balance it visually */
  transform: translateY(6px);

  /* Ensures the link doesn't wrap */
  display: inline-block;
  white-space: nowrap;
  cursor: default;
  transition: 0.2s;
}
.navbar-logo:hover {
  opacity: 0.6; /* A subtle hint that it does something if clicked */
}
.order {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.order span {
  display: inline-block;
  transform: translateY(0);
  transition: none;
}
.hamburger {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 35px;
  background-color: #002366;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(5px) rotate(22.5deg);
}
.hamburger.open span:nth-child(2) {
  transform: translateY(-1px) rotate(-22.5deg);
}
.navbar-links {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  display: flex;
  flex-direction: column;
  width: calc(100% + 2px);
  background-color: white;
  border-radius: 0 0 7px 7px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in;
  z-index: 1000;
  border: 1px solid #00246631;
  border-top: none;
  border-bottom: none;
  margin-top: -4px;
}

.navbar-links.open {
  transition: max-height 0.6s ease-out;
}

.navbar-links a {
  padding: 3px 30px;
  text-decoration: none;
  text-align: left;
  border-top: none;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 50px;
  text-transform: uppercase;
  display: block; /* Ensures the whole line is part of the animation */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(0);
}

/* THE HOVER STATE */
.navbar-links a:hover {
  transform: translateX(8px);
}

.navbar-links a:first-child {
  padding-top: 20px;
}

.navbar-links a:last-child {
  padding-bottom: 20px;
}

.navbar-links.open {
  max-height: 90vh;
}
/** z-index navbar items**/
.hamburger,
.navbar-logo,
.navbar .call {
  z-index: 1001;
}

/*************** hero *****************/
/***************************************/
.hero {
  border: 1px solid #00246631;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hero-text {
  border: 1px solid #00246631;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 105px;
  padding-bottom: 60px;
}
.hero-text h1 {
  font-size: 55px;
  margin-bottom: 10px;
  text-align: center;
  font-family: "EB Garamond", serif;
  font-weight: 200;
}
.hero-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 35px;
}

.btn-royale {
  display: inline-block;
  padding: 12px 30px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  border: 1px solid #002366;
  border-radius: 7px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

/* The Background Color with the 2px gap */
.btn-royale::before {
  content: "";
  position: absolute;
  /* This creates the 2px empty space from the edges */
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;

  background-color: #002366;
  border-radius: 5px; /* Slightly smaller radius so it follows the curve */
  z-index: -1;

  /* Animation: transitions the offsets and the opacity */
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); /* Optional: make it slightly lighter until hover */
}

/* THE HOVER STATE */
.btn-royale:hover {
  color: white;
}

.btn-royale:hover::before {
  /* Closes the gap by moving to the very edge */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  border-radius: 5px; /* Matches the outer border radius exactly */
}

.hero-pic {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}
.hero-vid,
.hero-img {
  border: 1px solid #00246631;
  width: 50%;
  border-radius: 7px;
  overflow: hidden;
  height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-img h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 23px;
}
.hero-img p {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}
.hero-vid {
  overflow: hidden;
  border-radius: 15px; /* Matches your image style */
  padding: 10px;

  /* If you want the video to look like it's floating with space around it: */
  box-sizing: border-box;
}
.vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-right: 6%;
}
/* 1. Add a transition to the span so it grows smoothly */
.hero-img span {
  display: block;
  height: 1px;
  background-color: #002366;
  width: 105px; /* Your new preferred width */
  margin: 20px 0;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. When the hero-img container contains a hovered hero-add, grow the span */
.hero-img:has(.hero-add:hover) span {
  width: 180px; /* How long it becomes on hover */
}

/****************** marquee **************/
/****************************************/
.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee-text,
.marquee-gallery {
  display: flex;
  overflow: hidden;
  padding: 15px;
  border: 1px solid #00246631;
  border-radius: 10px;
  margin: 12px 0;
}

/* animation */
@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll-right {
  0% {
    /* Start position: Shift the container left by the total width (700px) 
           of the original set, so the duplicated set is visible first. */
    transform: translateX(-700px);
  }
  100% {
    /* End position: Move the container back to 0. 
           This aligns the start of the duplicated set with the viewport edge, 
           and when the animation resets, the loop is seamless. */
    transform: translateX(0);
  }
}

.marquee-text .moving-text {
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}
.marquee-text span {
  font-size: 20px;
  text-transform: uppercase;
  padding: 0 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.gallery-cont {
  border: 1px solid #00246631;
  border-radius: 10px;
}
.marquee-gallery {
  margin: 12px;
}
.moving-gallery {
  display: flex;
  animation: scroll-right 10s linear infinite;
  margin: 0 12px;
  white-space: nowrap;
}
.gallery-img {
  margin-right: 15px;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

/***************** menu *************************/
/**************************************************/

.menu,
.about,
.contact {
  border: 1px solid #00246631;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 12px;
}
.menu-border,
.about-border,
.contact-border {
  border: 1px solid #00246631;
  border-radius: 10px;
  padding: 0 10px;
}

.menu-container {
  font-family: "Georgia", serif;
  margin-top: 0;
  padding-top: 2vw;
}

.menu-section {
  border: 1px solid #00246631;
  margin-bottom: 12px;
  border-radius: 7px;
  padding: 0 10px;
}

.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  user-select: none;
  color: #333;
}

.menu-title h2 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 400;
  color: #161616;
}

/* + to x */
.icon-wrapper {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.line {
  position: absolute;
  background-color: #00246683; /* Your theme color */
  border-radius: 2px;
  transition: transform 0.2s ease-in-out, opacity 0.2s;
}

/* The Horizontal Bar */
.horizontal {
  width: 100%;
  height: 2px;
}

/* The Vertical Bar */
.vertical {
  width: 2px;
  height: 100%;
}

/* ANIMATION: When the menu is active */
.icon-wrapper.active {
  transform: rotate(45deg);
}

.menu-content {
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding-bottom: 15px;
}

.menu-content.hidden {
  max-height: 0;
  padding-bottom: 0;
}

/* 1. Changed this to a column so description stays under the name/price row */
.menu-item {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

/* 2. Added this to handle the top row (Name + Dots + Price) */
.item-info {
  display: flex;
  /* Changed to baseline so dots align with the bottom of the text */
  align-items: baseline;
  gap: 0; /* Removing gap so dots can touch text if needed */
  width: 100%;
}

.item-name {
  font-size: 1.05rem;
  flex-grow: 0;
  flex-shrink: 1;
  white-space: nowrap;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #002366; /* Maintaining your color */
}

/* 3. Description is now clean and separate */
.item-description {
  display: block;
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  font-weight: normal;
  margin-top: 2px;

  /* THE FIX */
  max-width: 80%; /* Keeps it from reaching the price area */
  line-height: 1.3; /* Makes multi-line descriptions easier to read */
}

.dotted-spacer {
  flex-grow: 1;
  border-bottom: 2px dotted #aaa;
  /* This margin math ensures the dots start right after the text 
       and end right before the price */
  margin: 0 8px;
  /* We set height to a small value so the border-bottom 
       rests on the same line as the text */
  height: 12px;
  /* Ensures dots stay on the same line and don't push the price down */
  min-width: 10px;
}

.item-price {
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.05rem;
  color: #002366; /* Maintaining your color */
}

/***************** about *************************/
/**************************************************/

.about-border {
  padding: 0 0 18px 0;
}
.about-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  gap: 20px;
  padding: 5px 0 20px 0;
}
.about-text {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 20px;
}

.about-img {
  width: 100%; /* Let it take up the full width of your left column */
  width: 42vw; /* But cap it so it doesn't overpower the big titles */
  max-width: 670px;
  margin: 4vw 0;
  display: block;
}

.about-img img {
  width: 100%;
  /* This is a standard landscape ratio (like a cinema screen) */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 15px;
}

.about-img p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  width: 100%;
}

.about-reels {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}
.reels-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 12px;
  padding: 0 12px;
}
.reels-text h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.follow-text a {
  font-family: "Great Vibes", cursive;
  font-size: 30px;
  font-weight: 400;
  color: #002366;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease; /* Smooth fade for the whole link */
}

.arrow-char {
  font-family: sans-serif;
  font-size: 22px;
  /* Manual nudge: Script fonts sit low, so we push the arrow down 
       slightly to hit the visual center of the letters */
  transform: translateY(3px);
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

/* Hover Interaction */
.follow-text a:hover {
  opacity: 0.6; /* Sophisticated "editorial" fade */
}

.follow-text a:hover .arrow-char {
  /* Arrow slides out 8px to invite the click */
  transform: translateY(3px) translateX(5px);
}
.reels-marquee {
  display: flex;
  overflow: hidden;
}

@keyframes scroll-leftt {
  0% {
    /* Start with the first set of content visible */
    transform: translateX(0);
  }
  100% {
    /* Scroll left by the exact width of the original content (5 reels + 5 margins) */
    /* 5 * (260px + 15px) = 1375px */
    transform: translateX(-1375px);
  }
}

.reels-container {
  display: flex;
  /* Use the same animation, but it now scrolls across the original + duplicated content */
  animation: scroll-leftt 15s linear infinite;
  /* You may also want to explicitly set a large width to ensure it can hold all the content */
  /* width: calc(2 * 5 * (260px + 15px)); */
}

.reel {
  margin-right: 15px;
  width: 260px;
  height: 300x;
  flex-shrink: 0;
}

.reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/***************** contact *************************/
/**************************************************/
.contact-border {
  overflow: hidden;
  padding: 10px;
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.con-text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
/* Updated .con-link styles */
.con-link {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 2.25vw;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.con-vid {
  width: 100%;
  margin-top: 50px;
}

.con-vid video {
  width: 100%;
  object-fit: cover;
}

/*================== Text Wave Animation CSS (Rewind Trick) ==================*/

.con-link span {
  display: inline-block;
  transform: translateY(0);
  transition: none; /* Let JS handle everything */
}

/***************** footer *************************/
/**************************************************/
.footer {
  border: 1px solid #00246631;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.footer-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.social,
.scroll-up {
  transition: 0.2s;
}
.social:hover,
.scroll-up:hover {
  opacity: 0.6;
}
.social img {
  width: 15px;
}

/******************* scrollbar ***********************/

/* 1. The width of the entire scrollbar */
::-webkit-scrollbar {
  width: 7px; /* slim and modern */
}

/* 2. The background "track" (the part the handle slides in) */
::-webkit-scrollbar-track {
  background: transparent; /* Makes it look like it's floating over your images */
}

/* 3. The draggable handle (the thumb) */
::-webkit-scrollbar-thumb {
  background: #002366; /* Your theme's Navy Blue */
  border-radius: 10px; /* Makes it rounded like a capsule */
}

/* 4. Hover effect - makes it light up slightly when you touch it */
::-webkit-scrollbar-thumb:hover {
  background: #003399;
}

/********** titles **********/

.big-title {
  font-weight: 600;
  text-align: center;
  font-family: "Playfair Display", serif;
  /* PREVENTS TEXT SELECTION */
  user-select: none; /* Standard syntax */
  -webkit-user-select: none; /* Safari/Chrome */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

.menu .big-title,
.about .big-title,
.contact .big-title {
  line-height: 0.8; /* Pulls the 'bounding box' tight to the letters */
  margin-top: 1rem; /* Provides a consistent physical gap */
  margin-bottom: 40px; /* Standard spacing below the title */
  display: block;
  cursor: default;
}

/* Keep your specific font sizes */
.menu .big-title {
  font-size: 14.64vw;
  transform: scaleX(1);
  transform: scaleY(1.2);
}
.about .big-title {
  font-size: 12.9vw;
  transform: scaleX(1);
  transform: scaleY(1.12);
}
.contact .big-title {
  font-size: 9.37vw;
  transform: scaleX(1);
  transform: scaleY(1.16);
}

.mobile-only {
  display: none;
}

/*====================================================================*/
/*======================== MOBILE & TABLET  ===================*/
/*====================================================================*/

@media (max-width: 1135px) {
  .navbar {
    height: 65px; /* Reduced from 82px */
    padding: 0 20px; /* Slightly tighter side padding */
  }

  .slideshow-nav {
    height: 65px;
    padding: 0 20px;
  }

  .navbar-logo {
    font-size: 45px; /* If your logo is text-based */
  }

  .navbar-links a {
    font-size: 40px;
  }

  .con-link {
    font-size: 22px;
  }

  .contact .big-title {
    font-size: 9.18vw;
  }
  .menu-container {
    padding-top: 1.7vw;
  }
}

@media (max-width: 991px) {
  /* merge slideshow and hero */

  /* 1. Toggle visibility */
  .pc-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }

  /* 2. Position the mobile text over the image */
  .slideshow-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the text vertically on the slide */
    align-items: center; /* Centers the text horizontally */
    height: 100%;
    text-align: center;
  }

  .mobile-only.hero-text {
    width: 90%;
    z-index: 10;
  }

  .mobile-only.hero-text h1,
  .mobile-only.hero-text p {
    color: white; /* Make it pop against the image */
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  }

  /* 3. Add a darkening filter to the images so white text is readable */
  .slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }

  .btn-royale {
    color: #002366;
    border: 1px solid white;
  }
  .btn-royale::before {
    background-color: white;
  }
  .btn-royale:hover {
    color: #002366;
    font-weight: 600;
  }

  /* STACKING THE LAYOUT */
  main {
    display: flex;
    flex-direction: column; /* Stacks Left and Right halves */
    margin: 10px; /* Tighter margins for small screens */
  }
  #content {
    width: 100%;
    padding: 10px 0px 10px 0px; /* Extra top padding for the fixed navbar */
  }
  #slideshow {
    position: relative;
    width: 100%;
    height: 60vh; /* Takes up half the screen height */
    top: 0;
    right: 0;
    bottom: auto;
    border-radius: 15px; /* Slightly softer corners for mobile */
    order: -1; /* Moves slideshow ABOVE the hero text */
  }

  /* slideshow adjustements */

  .place {
    display: none;
  }
  .slideshow-nav {
    display: none;
  }
  .slideshow-dots {
    position: absolute;
    bottom: 30px; /* Distance from the bottom of the slide */
    left: 50%; /* Move to the horizontal center */
    transform: translateX(
      -50%
    ); /* Offset by its own width to be perfectly centered */

    display: flex; /* Align dots in a row */
    gap: 12px; /* Space between each dot */
    z-index: 10; /* Keep them above the image */
  }

  /* navbar */

  .navbar {
    /* This makes it span the full width of the mobile screen */
    width: calc(100% - 68px);
    left: 34px; /* Keeps it centered relative to your 10px main margin + 12px gap */

    height: 65px; /* Keeps it slim for mobile */
    top: 25px; /* Pulls it slightly higher */
    padding: 0 20px;

    /* Optional: Ensure the links don't wrap and stay hidden if you have a hamburger menu */
    justify-content: space-between;
  }
  .hamburger span {
    width: 30px;
  }
  .order {
    font-size: 12px;
  }
  .navbar-logo {
    font-size: 30px;
  }
  .navbar-links a {
    font-size: 30px;
  }
  .navbar-links a:first-child {
    padding-top: 5px;
  }

  /* hero */

  .hero-text {
    padding-top: 40px;
    padding-bottom: 40px;
    border: none;
  }
  .hero-text h1 {
    font-size: 40px;
  }
  .hero-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .hero-pic {
    margin-top: 0px;
  }
  .hero-vid,
  .hero-img {
    height: 210px;
  }
  .hero-img h2 {
    font-size: 16px;
  }
  .hero-img p {
    font-size: 12px;
  }
  .hero-add p {
    font-size: 9px;
  }
  .hero-img:has(.hero-add:hover) span {
    width: 120px;
  }

  /* big titles */

  .menu .big-title {
    font-size: 28vw;
    transform: scaleX(1);
    transform: scaleY(1.2);
  }
  .about .big-title {
    font-size: 24vw;
    transform: scaleX(1);
    transform: scaleY(1.12);
  }
  .contact .big-title {
    font-size: 17vw;
    transform: scaleX(1);
    transform: scaleY(1.16);
  }

  /* menu */

  .menu-title h2 {
    font-size: 18px;
  }
  .item-name {
    font-size: 12px;
  }
  .item-price {
    font-size: 12px;
  }
  .item-description {
    font-size: 11px;
  }
  .menu-container {
    padding-top: 10px;
  }

  /* about */

  .about-text {
    font-size: 18px;
  }
  .about-img p {
    font-size: 12px;
  }
  .about-img {
    width: 81vw;
    margin: 4vw 0;
  }
  .about-img img {
    width: 100%;
    /* This is a standard landscape ratio (like a cinema screen) */
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
  }
  .reels-text h3 {
    font-size: 12px;
    font-weight: 700;
  }
  .follow-text a {
    font-size: 20px;
    font-weight: 400;
  }
  .arrow-char {
    font-size: 18px;
    transform: translateY(0px) translateX(-7px);
  }
  .follow-text a:hover .arrow-char {
    /* Arrow slides out 8px to invite the click */
    transform: translateY(0px) translateX(0px);
  }

  /* contact */

  .con-link {
    font-size: 4vw;
  }
}

@media screen and (min-width: 616px) and (max-width: 991px) {
  #slideshow {
    height: 80vh;
  }
  .navbar {
    height: 80px;
  }
  .navbar-links a {
    font-size: 50px;
  }
  .navbar-links a:first-child {
    padding-top: 20px;
  }
  .hamburger span {
    width: 35px;
  }
  .order {
    font-size: 16px;
  }
  .navbar-logo {
    font-size: 55px;
  }
  .hero-text h1 {
    font-size: 50px;
    font-weight: 400;
  }
  .hero-text p {
    font-size: 16px;
    margin-bottom: 35px;
  }
  .hero-vid,
  .hero-img {
    height: 36vw;
  }
  .hero-img h2 {
    font-size: 3vw;
  }
  .hero-img p {
    font-size: 1.8vw;
  }
  .hero-add p {
    font-size: 1.8vw;
  }
  .hero-img:has(.hero-add:hover) span {
    width: 22vw;
  }
  .menu-container {
    padding-top: 3vw;
  }
  .menu-title h2 {
    font-size: 4vw;
  }
  .item-name {
    font-size: 2.4vw;
  }
  .item-price {
    font-size: 2.4vw;
  }
  .item-description {
    font-size: 1.9vw;
  }
  .about-img img {
    width: 100%;
    /* This is a standard landscape ratio (like a cinema screen) */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
  }
  .reels-text h3 {
    font-size: 18px;
    font-weight: 700;
  }
  .follow-text a {
    font-size: 30px;
    font-weight: 400;
  }
  .arrow-char {
    font-size: 22px;
    transform: translateY(3px);
  }
  .follow-text a:hover .arrow-char {
    /* Arrow slides out 8px to invite the click */
    transform: translateY(3px) translateX(5px);
  }
}
