html, body {
  /* Remove forced overflow, let JS handle scroll lock for modals */
}
/* Page fade-in effect */
.page-fade {
  opacity: 1;
  transition: none;
}
/* Full-screen grey overlay that fades out on load */
.page-fade-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
    opacity: 1;
    transition: none;
  pointer-events: all; /* block interactions until loaded */
  z-index: 2147480000; /* above everything */
}
.page-fade-overlay.hide {
  opacity: 0;
}
/* Center loader inside overlay */
.page-fade-overlay .loader-wrap {
  background: none !important;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-fade-overlay .loader-wrap img {
  background: none !important;
  max-width: min(90vw, 480px);
  height: auto;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .page-fade,
  .page-fade.loaded {
    transition: none !important;
    opacity: 1 !important;
  }
  .page-fade-overlay { display: none !important; }
}
/* --- Mobile Header & Hamburger Styles --- */
@media (max-width: 600px) {
  .modern-navbar { display: none !important; }
  .desktop-navbar { display: none !important; }
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100000;
    height: 80px;
    padding: 0 5vw;
    transition: box-shadow 0.2s;
  }
  .mobile-header-logo img {
    height: 58px;
    display: block;
    filter: brightness(0.1);
  }
  .mobile-hamburger {
    background: none;
    border: none;
    padding: 0.3rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    transition: background 0.18s;
  }
  .mobile-hamburger:active,
  .mobile-hamburger:focus {
    background: #f4f4f4;
    outline: none;
  }
  .mobile-hamburger-bar {
    display: block;
    width: 22px;
    height: 3px;
    background: #222;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.07);
    transition: 0.2s;
  }
  .mobile-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 48px;
    right: 2vw;
    width: 92vw;
    max-width: 340px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border-radius: 14px;
    z-index: 100001;
    padding: 0.7rem 0;
    animation: fadeInMenu 0.18s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-dropdown.show {
    display: flex;
  }
  .mobile-dropdown a {
    color: #111;
    text-decoration: none;
    font-size: 1.08rem;
    padding: 0.85rem 1.3rem;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    transition: background 0.18s, color 0.18s;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .mobile-dropdown a:hover {
    background: #f7f7f7;
    color: #222;
  }
  .mobile-dropdown a:last-child {
    border-bottom: none;
  }
  @keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
@media (min-width: 601px) {
  .mobile-header { display: none !important; }
  .modern-navbar { display: flex !important; }
}
@media (max-width: 600px) {
  .mobile-header { display: flex !important; }
}
@media (max-width: 600px) {
  .modern-navbar-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    padding: 0 1vw;
  }
  .modern-navbar-menu {
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-width: 600px;
    width: max-content;
    justify-content: flex-start;
  }
  .modern-navbar-menu a {
    font-size: 0.98rem;
    padding: 0.4rem 0.7rem;
  }
  .nav-logo-modern {
    height: 44px;
    margin: 0 0.5vw;
  }
}
/* Make the function section image slightly smaller for a rim effect */
.functions-section .about-image img {
  max-width: 88%;
  max-height: 88%;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #111;
  padding: 1.5%;
  object-fit: cover;
}
/* Menu Popup Modal Styles */
.menu-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: background 0.2s;
}
.menu-popup-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
  position: relative;
  animation: menu-popup-fadein 0.22s cubic-bezier(0.4,0,0.2,1);
}
.menu-popup-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #111;
}
.menu-popup-options {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.menu-popup-btn {
  display: block;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 1rem 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1.5px solid #111;
}
.menu-popup-btn:hover {
  background: #111;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}
.menu-popup-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #888;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.menu-popup-close:hover {
  color: #111;
}
@keyframes menu-popup-fadein {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
/* Modern, minimal navbar redesign */
.modern-navbar {
  width: 100vw;
  left: 0;
  right: 0;
  top: 0;
  position: fixed !important;
  z-index: 99999;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s, box-shadow 0.3s;
}
/* Center logo in nav bar with menu items on both sides */
.modern-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  align-items: center;
  height: 100px;
  justify-content: center;
  position: relative;
}
.modern-navbar-menu.left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  justify-content: flex-end;
}
.modern-navbar-menu.right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  justify-content: flex-start;
}
.modern-navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 2vw;
  z-index: 1;
}
@media (max-width: 900px) {
  .modern-navbar-inner {
    height: 70px;
  }
  .modern-navbar-logo {
    margin: 0 1vw;
  }
  .modern-navbar-menu.left,
  .modern-navbar-menu.right {
    gap: 1.1rem;
  }
}
.modern-navbar-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.modern-navbar-menu li {
  display: flex;
  align-items: center;
}
.modern-navbar-menu a {
  color: #111;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  opacity: 0.92;
}
.modern-navbar-menu a:hover, .modern-navbar-menu .nav-cta:hover {
  background: #f4f4f4;
  color: #111;
  opacity: 1;
}
.modern-navbar-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.5vw;
}
.nav-logo-modern {
  height: 90px;
  filter: brightness(0);
  display: block;
  margin: 0 0.5vw;
  transition: height 0.2s;
}
@media (max-width: 900px) {
  .modern-navbar-inner {
    height: 70px;
  }
  .nav-logo-modern {
    height: 54px;
  }
  .modern-navbar-menu {
    gap: 1.1rem;
  }
  .modern-navbar-menu a {
    font-size: 1rem;
    padding: 0.4rem 0.7rem;
  }
}
/* New nav flex bar layout */
.nav-flex-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 2vw;
}
.nav-menu-left,
.nav-menu-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu-left {
  flex: 1 1 0;
  justify-content: flex-end;
}
.nav-menu-right {
  flex: 1 1 0;
  justify-content: flex-start;
}
.nav-brand-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}
.nav-logo {
  height: 110px;
  filter: brightness(0);
  display: block;
  margin: 0 2vw;
}
@media (max-width: 800px) {
  .nav-logo {
    height: 70px;
    min-width: 90px;
  }
  .nav-menu-left, .nav-menu-right {
    gap: 1.2rem;
  }
}
.contact-content p {
  text-align: center;
}

.contact-section {
  background: #111;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 3.5rem 2.5rem 3.5rem 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}
.contact-content { position: relative; }
.contact-gif-floating {
  position: absolute;
  right: 12px;
  bottom: 12px;
  height: 160px;
  width: auto;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 600px) {
  .contact-gif-floating {
    height: 100px;
    right: 8px;
    bottom: 8px;
  }
}

/* Floating GIF for Closure section */
.closure-gif-floating {
  position: absolute;
  right: 12px;
  bottom: 12px;
  height: 140px;
  width: auto;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 600px) {
  .closure-gif-floating {
    height: 90px;
    right: 8px;
    bottom: 8px;
  }
}
.functions-section .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.functions-section h2 {
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}
.functions-section p {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2.2rem;
  max-width: 540px;
}
.functions-section h2,
.functions-section p {
  color: #fff;
}
/* Functions section button restyle */
.functions-section .menu-button {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 2rem auto 0 auto;
  background: #fff;
  color: #111;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.functions-section .menu-button:hover {
  background: #232323;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

/* Function Enquiry Button */
.function-enquiry-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 1rem auto 0 auto;
  background: #fff;
  color: #111;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.function-enquiry-btn:hover {
  background: #232323;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

/* Function Enquiry Modal Styles */
.function-enquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: background 0.2s;
}
.function-enquiry-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  width: 90vw;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  position: relative;
  animation: enquiry-popup-fadein 0.22s cubic-bezier(0.4,0,0.2,1);
}
.function-enquiry-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}
.function-enquiry-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}
.enquiry-form {
  text-align: left;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.18s;
  background: #fff;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #111;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit-btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.form-submit-btn:hover {
  background: #232323;
}
.function-enquiry-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #888;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.function-enquiry-close:hover {
  color: #111;
}
@keyframes enquiry-popup-fadein {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile responsive */
@media (max-width: 768px) {

  

  
  .festive-header {
    gap: 0.8rem;
  }
  
  .festive-icon {
    font-size: 1rem;
  }
  
  .order-now-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .function-enquiry-content {
    padding: 2rem 1.5rem;
    width: 95vw;
  }
  .function-enquiry-content h2 {
    font-size: 1.5rem;
  }
}







.section-header {
  text-align: center;
  margin-bottom: 1.2rem;
}

.christmas-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c41e3a, #8b1538);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
}

.header-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ornament-left, .ornament-right {
  color: #1a5d1a;
  font-size: 0.6rem;
}

.ornament-center {
  color: #CD853F;
  font-size: 1.2rem;
}







.seafood-offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0 1rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.offering-item {
  text-align: center;
  padding: 1rem 0.6rem;
  background: white;
  border: 1px solid #e8ecef;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.offering-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-color: #CD853F;
}

.item-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 0.2rem;
}

.item-desc {
  font-size: 0.75rem;
  color: #1a5d1a;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.availability-note {
  text-align: center;
  margin: 0.8rem 0 1rem;
}

.availability-note p {
  font-size: 0.8rem;
  color: #7a8691;
  margin: 0;
  font-style: normal;
}

.cta-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.christmas-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1a5d1a 0%, #0f4f0f 100%);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(26, 93, 26, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.christmas-order-btn:hover {
  background: linear-gradient(135deg, #0f4f0f 0%, #1a5d1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 93, 26, 0.3);
}

.btn-text {
  font-weight: 500;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.christmas-order-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Functions section black background */
.functions-section {
  background: #111;
  color: #fff;
  padding: 3.5rem 2.5rem 3.5rem 2.5rem;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  margin-bottom: 2.5rem;
}
/* Absolutely position the GIF at the top right of Visit Us */
.absolute-gif {
  position: absolute;
  top: 0;
  right: 0;
  height: 160px;
  width: auto;
  margin: 0;
  z-index: 10;
}
/* Visit Us header flex for GIF alignment */
.visit-header-flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 32px;
}
.visit-header-flex span {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-right: auto;
}
.visit-header-flex span {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}
/* Seasonal Closure area matches Functions style */
.seasonal-closure-area .about-content {
  background: #111;
  color: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.seasonal-closure-area .about-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: none;
}
@media (max-width: 800px) {
  .seasonal-closure-area .about-content {
    padding: 2rem 1rem;
  }
  .seasonal-closure-area .about-image img {
    max-width: 180px;
  }
}
/* Seasonal Closure Section Unique Styles */
.seasonal-closure-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 0 0;
  padding: 24px 0 0 0;
}
.seasonal-closure-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seasonal-closure-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 800px) {
  .seasonal-closure-section {
    flex-direction: column;
    gap: 18px;
    padding: 16px 0 0 0;
  }
  .seasonal-closure-content {
    align-items: center;
    text-align: center;
  }
}
/* Champs GIF for Visit Us header */
.champs-gif-header {
  height: 160px;
  width: auto;
  margin-left: 32px;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  vertical-align: middle;
  display: block;
}
/* Seasonal Closure image size */
.seasonal-closure-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.nav-top-menu {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.2rem 0 0.2rem 0;
  position: relative;
  top: 0;
  left: 0;
  z-index: 100000;
}
.nav-top-menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0 1.5rem 0 0;
}
.nav-top-menu a {
  color: #222;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
}
.nav-top-menu a:hover {
  color: #666;
  opacity: 1;
}
.modern-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
}
/* Partnered Venues Section */
.partnered-venues {
  width: 100%;
  background: #fafafa;
  padding: 32px 0 24px 0;
  border-top: 1px solid #ececec;
}
.partnered-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.partnered-venues h3 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  color: #222;
}
.partnered-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.partner-logo {
  height: 56px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.2s;
  background: none;
}
.partner-logo:hover {
  filter: grayscale(0) brightness(1.05) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}
@media (max-width: 600px) {
  .partnered-logos {
    gap: 18px;
  }
  .partner-logo {
    height: 38px;
    max-width: 110px;
  }
}
/* (Removed GIF-related styles) */

/* Removed blend-mode override to honor GIF native transparency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.modern-bg {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafafa;
  color: #111;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Website container with white border */
.modern-main {
  margin: 0 auto;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 1100px;
  box-sizing: border-box;
  min-height: 70vh;
  transition: box-shadow 0.3s, border-radius 0.3s, padding 0.3s;
}

/* (Removed) logo mask/clip rules */

/* Custom page frame overlay */
.page-frame-embed {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* non-interactive overlay */
  z-index: 99990; /* above content, below header and floating button */
}

/* Modern Navigation - Hide on scroll */
.modern-nav {
  position: fixed !important;
  top: 36px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 5% 0.5rem 5%;
  z-index: 99999;
  box-sizing: border-box;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.nav-top-menu {
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.2rem 0 0.2rem 0;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100000;
}
.nav-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0.2rem 0 0.2rem 0;
}

.modern-nav.hidden {
  transform: translateY(-120px);
}

/* Floating Book Now button (FAB) */
.book-now-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100000; /* above nav */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,0.25);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #111;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
  /* gentle breathing animation */
  animation: fab-float 3.2s ease-in-out infinite;
}

.book-now-fab:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255,255,255,0.55);
  border-color: rgba(17,17,17,0.35);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

@keyframes fab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Prevent nav hide from covering the button area on very small screens */
@media (max-width: 600px) {
  .book-now-fab {
    right: 16px;
    bottom: 16px;
    height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
  }
}

.nav-brand .nav-logo {
  height: 110px;
  filter: brightness(0);
}

.modern-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.modern-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.modern-nav a:hover {
  color: #666;
}

/* Header CTA style */
.modern-nav .nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,0.25);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.modern-nav .nav-cta:hover {
  background: rgba(255,255,255,0.55);
  border-color: rgba(17,17,17,0.35);
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-overlay p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}



/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 50vh;
  margin: 24px 0 0 0;
  padding: 16px 0 0 0;
  gap: 32px;
}

.about-content {
  background: none;
  color: #111;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.menu-button {
  display: inline-block;
  background: white;
  color: #111;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, color 0.3s ease;
}

.menu-button:hover {
  background: #f0f0f0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Function GIF: absolutely no styling, sits flush on background */
.function-media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}
.function-gif {
  display: block;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  filter: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

/* (Removed standalone GIF sections) */

/* Feature Section */
.feature-section {
  margin: 0;
  padding: 0;
  background: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
}

.feature-card a {
  display: block;
  text-decoration: none;
}

.feature-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: none;
  margin-bottom: 1.5rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.feature-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  font-weight: 300;
}



/* Contact Section */
.contact-section {
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0.1em;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.contact-item h4 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.contact-item p {
  color: #666;
  font-weight: 300;
}

/* Centered contact item for opening hours */
.contact-hours-center {
  grid-column: 1 / -1;
  text-align: center;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  background: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #111;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #111;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.contact-form button:hover {
  background: #333;
}

/* Footer */
.modern-footer {
  background: none;
  color: #111;
  text-align: center;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 900px) {
  .modern-main {
    padding: 32px 16px 24px 16px;
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  .modern-nav {
    padding: 1rem 3%;
  }
  .modern-main {
    margin: 32px 0 16px 0;
    padding: 12vw 2vw 8vw 2vw;
    border-radius: 10px;
  }
  .modern-nav ul {
    gap: 1rem;
  }
  .hero-overlay h1 {
    font-size: 2.5rem;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding: 2rem 0.5rem;
  }
  .feature-section {
    padding: 2rem 3%;
  }
  .contact-section {
    padding: 2rem 3%;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .form-group {
    grid-template-columns: 1fr;
  }
}



/* Seafood Orders Section */
.seafood-section {
  padding: 6rem 3%;
  background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 50%, #2c2c2c 100%);
  position: relative;
  overflow: hidden;
}

.seafood-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(205, 133, 63, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.seafood-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #CD853F, transparent);
}

.seafood-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.seafood-text h2 {
  font-size: 2.8rem;
  font-weight: 300;
  color: #CD853F;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  position: relative;
}

.seafood-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #CD853F, #8B4513);
  border-radius: 2px;
}

.seafood-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.seafood-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #CD853F 0%, #8B4513 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(205, 133, 63, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(205, 133, 63, 0.3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.seafood-cta:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(205, 133, 63, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.seafood-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.seafood-link {
  color: #CD853F;
  transition: color 0.3s ease;
}

.seafood-link:hover {
  color: #8B4513;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .christmas-seafood-section {
    margin: 1.5rem 1rem;
  }
  
  .seafood-card {
    max-width: 100%;
  }
  
  .card-header {
    padding: 1rem;
  }
  

  

  
  .seafood-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .seafood-text h2 {
    font-size: 2.2rem;
  }
  
  .seafood-img {
    height: 300px;
  }
}

/* Prominent Order Button */
.prominent-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 16px 28px;
  background: linear-gradient(135deg, #CD853F 0%, #8B4513 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(205, 133, 63, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.prominent-order-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.prominent-order-btn:hover::before {
  left: 100%;
}

.prominent-order-btn:hover {
  background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(205, 133, 63, 0.4);
}

.btn-icon {
  font-size: 1.1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-1px); }
}

.btn-text {
  font-weight: 700;
}

.btn-arrow {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.prominent-order-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Mobile styles for prominent button */
@media (max-width: 768px) {
  .prominent-order-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
    gap: 0.6rem;
  }
}
