body.no-scroll {
  overflow: hidden;
  height: 100vh;
}


.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  margin-top: 2rem;
}

header {
  margin-bottom: 3rem;
}

.about-header {
  text-align: center;
}

.logo {
  width: 230px;
  max-width: 100%;
  margin-bottom: 0.2rem;
}

.logo--home {
  width: 100px;
} 

.est {
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0.5rem 0;
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.content, .content p {
    /* font-family: 'Afterall', serif; */
    line-height: 1.5;
}

.content p:first-of-type {
  text-align: justify;
} 

strong {
    font-weight: 900;
}

.illustration img {
  max-width: 85%;
  height: auto;
  border: none;
  margin-bottom: 0rem;
}

.welcome-btn {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000;
  border: 2px solid #000;
  padding: 0.5rem 2rem;
  transition: background 0.3s;
}

.welcome-btn:hover {
  background-color: #000;
  color: #fff;
}

.logo-title img {
  max-width: 400px;
  width: 85%;
  margin-bottom: 0.2rem;
}

.about-logo {
  margin-bottom: 2rem;
}

.nav-links {
  margin-top: 3rem;
}

.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.nav-links ul li {
  margin: 0.7rem 0;
}

.nav-links ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  letter-spacing: 1px;
  border-bottom: 1px solid transparent;
  transition: border 0.2s;
}

.nav-links ul li a:hover {
  border-bottom: 1px solid #000;
}

.contact-info, .about-info {
  display: none;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info.open, .about-info.open {
  display: block;
}


.contact-info a, .about-info a {
  color: #000;
  text-decoration: none;
}

.contact-info a:hover, .about-info a:hover {
  text-decoration: underline;
}

.has-submenu {
    cursor: pointer;
}

.has-submenu .submenu {
    display: none;
    /*background: #fff;*/
    padding: 0.5rem 1rem;
    list-style: none;
    /*border: 1px solid #ccc;*/
    margin-top: 0.5rem;
    text-align: center;
    position: static; /* So it appears inline in flow, not absolutely positioned */
}

.has-submenu.open .submenu {
    display: block;
}

.submenu li {
    margin: 0.4rem 0 !important;
}

.submenu li a {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem !important;
    display: inline-block;
    font-family: 'Afterall', sans-serif;
}

.submenu li a:hover {
    /*text-decoration: underline;*/
    border-bottom: 1px dashed #000 !important;
}

@media (max-width: 600px) {
    .welcome-btn {
        font-size: 1.2rem;
        padding: 0.6rem 2rem;
        border-width: 3px;
    }
}

svg {
    height: 24px;
    width: 24px;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    margin-left: 4px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    
  .container {
    margin-top: 0rem;
  }
  .about-header {
    text-align: left;
  }
}

/* === Desktop Menu Layout for Top-Left Menu === */
.desktop-nav {
  display: none; /* default hidden, shown only on desktop */
}

@media screen and (min-width: 768px) {
  /* Hide mobile menu on desktop */
  .mobile-nav {
    display: none !important;
  }

  .desktop-nav {
    display: block;
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 999;
    width: 302px;
    text-align: left;
  }

  .desktop-nav .submenu {
    text-align: left;
  }

  .desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .desktop-nav ul li {
    margin: 0.7rem 0;
  }

  .desktop-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: border 0.2s;
  }

  .desktop-nav ul li a:hover {
    border-bottom: 1px solid #000;
  }

  /* Submenu handling */
  .desktop-nav .submenu {
    display: none;
    position: static;
    margin-top: 0.3rem;
  }

  .desktop-nav .has-submenu.open .submenu {
    display: block;
  }

  .desktop-nav .submenu li {
    margin: 0.3rem 0;
  }

  .desktop-nav .submenu li a {
    font-size: 0.8rem;
    border-bottom: 1px dashed transparent;
  }

  .desktop-nav .submenu li a:hover {
    border-bottom: 1px dashed #000;
  }
}

/* === Reservation Button and Discover Link Styles === */
.reservation-block {
  text-align: center;
  margin-top: 3rem;
}

.reservation-button {
  display: inline-flex;           /* Use flexbox instead of inline-block */
  align-items: center;            /* Vertically center text and arrow */
  justify-content: center;        /* Keep text centered */
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  background-color: #111;
  padding: 0.6rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* .reservation-button-mobile {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80vh;
  font-size: 1rem;
} */

.reservation-button:hover {
  background-color: #444;
}

.reservation-button .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 1rem;
  line-height: 1;                 /* Ensures no vertical misalignment */
}

.reservation-button:hover .arrow {
  transform: translateX(4px);
}


.discover-link {
  margin-top: 2rem;
}

.discover-link a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
}

.discover-link a:hover {
  text-decoration: underline;
}

/* ------------------------------ */

@font-face {
			font-family: 'Funkis';
			src: url('fonts/Funkis-Mager.woff2') format('woff2'),
				url('fonts/Funkis-Mager.woff') format('woff'),
				url('fonts/Funkis-Mager.ttf') format('truetype');
			font-weight: normal;
			font-style: normal;
			font-display: swap;
		}

      @font-face {
          font-family: 'Afterall';
          src: url('fonts/AfterallSerif-Regular.woff2') format('woff2'),
          url('fonts/AfterallSerif-Regular.woff') format('woff');
          font-weight: normal;
          font-style: normal;
      }

      @font-face {
          font-family: 'Afterall';
          src: url('fonts/AfterallSerif-Italic.woff2') format('woff2'), url('fonts/AfterallSerif-Italic.woff') format('woff2');
          font-weight: 400;
          font-style: italic;
      }

      @font-face {
          font-family: 'Afterall';
          src: url('fonts/AfterallSerif-Bold.woff') format('woff2'), url('fonts/AfterallSerif-Bold.woff2') format('woff2');
          font-weight: 600;
          font-style: normal;
      }
		body {
			font-family: 'Afterall', sans-serif;
			margin: 0;
			padding: 0;
			background-color: #f4f2eb;
      color: #000;
		}

		h1, h2, h3, h4, h5, h6, strong, a {
			font-family: Funkis, sans-serif;
		}

		/* Hamburger Styles */
		.hamburger {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			cursor: pointer;
			position: absolute;
			top: -0.5rem;
			right: 1rem;
			padding: 0.5rem;
			border-radius: 8px;
			z-index: 100000000;
			transition: background-color 0.3s ease;
			@media screen and (min-width: 768px) {
			 display: none !important;
  			}
		}

		.hamburger div {
			width: 25px;
			height: 3px;
			background-color: #000;
			margin: 3px 0;
			transition: 0.4s;
		}

		/* Mobile Menu */
		.nav-mobile {
			display: none;
			position: fixed;
			top: 0;
			right: 0;
			width: 100%;
			max-width: 320px;
			height: 100vh;
			background-color: #f4f2eb;
			box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
			padding: 2rem;
			z-index: 9999;
			overflow-y: auto;
		}

		.nav-mobile.open {
			display: block;
		}

		.nav-mobile ul {
			list-style: none;
			padding: 0;
			margin: 0;
		}

		.nav-mobile .menu {
			margin-top: 50px
		}

		.nav-mobile ul li {
			margin: 1rem 0;
		}

		.nav-mobile ul li a {
			color: #000;
			text-decoration: none;
			font-size: 1rem;
			letter-spacing: 1px;
		}

		/* Swiper Slider with 4:1 Aspect Ratio */
		.hero-slider {
			width: 100%;
			aspect-ratio: 2 / 1;
			overflow: hidden;
			margin-bottom: 2rem;
		}

		.swiper-slide img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		/* Responsive Position Adjustments */
		@media screen and (min-width: 768px) {
			.desktop-nav {
				display: block;
			}
		}

		@media screen and (max-width: 768px) {
			.hamburger {
				top: -5rem;
				right: 0rem;
				padding: 0.4rem;
			}
			.nav-mobile {
				width: 55%;
			}
			.hamburger div {
				height: 2px;
				margin: 3px 0;
			}

			.hero-slider {
				aspect-ratio: 1.5 / 1;
			}

			.about-logo {
				margin-bottom: 0.75rem;
			}
		}
		
		/* Swiper Slider */
		.hero-slider {
			width: 100%;
			margin-bottom: 2rem;
		}
		.swiper-slide img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		main {
			position: relative;
		}
		.contact-links a {
			text-decoration: none;
			color: #000;
			cursor: pointer;
		}

				/* Animate hamburger into X */
		.hamburger.active div:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
		}

		.hamburger.active div:nth-child(2) {
		opacity: 0;
		}

		.hamburger.active div:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
		}

		.promo-section {
			position: relative;
			width: 100%;
			background: url("https://lancemore.com.au/assets/thediningroomredhill/WhatsApp-Image-2025-08-25-at-09.34.41_8968afbc.jpg?format=webp") center/cover no-repeat;
			overflow: hidden;
			margin: 15px 0;
		}

		.promo-section::before {
			content: "";
			position: absolute;
			inset: 0;
			background: rgba(0, 0, 0, 0.5); /* dark overlay */
		}

		.promo-content {
			position: relative;
			z-index: 1;
			color: #fff;
			text-align: center;
			padding: 20px;
		}

		.promo-title {
			font-size: 1.2rem;
			margin-bottom: 8px;
			font-weight: 400 !important;
		}

		.promo-text {
			font-size: 0.9rem;
			margin-bottom: 15px;
		}

		.promo-btn {
			display: inline-block;
			padding: 10px 20px;
			font-size: 0.9rem;
			color: #fff;
			background: transparent;
			border-radius: 0;
			text-decoration: none;
			border: 1px solid #fff;
		}

		.promo-btn:hover {
			color: #000;
			background-color: #fff;
			border-color: #fff;
		}

		.promo-btn:active {
			background: #fff;
		}