:root {
  --bg-dark: #0A0A0A;
  --bg-darker: #121212;
  --color-gold: #c49a45;
  --color-gold-hover: #e0b863;
  --text-gray: #a0a0a0;
  --text-light-gray: #cccccc;
  --font-title: 'Plus Jakarta Sans', 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease-in-out;

  /* Crayfish Theme Variables */
  --crayfish-red: #c8232c;
  --crayfish-dark-red: #9e141b;
  --crayfish-light-bg: #ffffff;
  --crayfish-card-bg: #fdfdfd;
  --crayfish-text-main: #222222;
  --crayfish-text-sub: #666666;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
body {
  background-color: var(--crayfish-light-bg) !important;
  color: var(--crayfish-text-main) !important;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Floating Phone Call Button & Pulsing Wave Animation */
.fixed-call-btn {
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 52px;
  height: 52px;
  background-color: var(--crayfish-red);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.fixed-call-btn:hover {
  transform: scale(1.1);
  background-color: var(--crayfish-dark-red);
}
.call-icon {
  font-size: 20px;
  animation: phone-shake 1.2s infinite ease-in-out;
  z-index: 2;
}
.call-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(200, 35, 44, 0.4);
  animation: pulse-wave 2s infinite ease-out;
  z-index: 1;
}
.call-pulse-ring-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(200, 35, 44, 0.2);
  animation: pulse-wave 2s infinite ease-out 0.6s;
  z-index: 1;
}

@keyframes phone-shake {
  0%, 100% { transform: rotate(0deg) scale(1); }
  10%, 30%, 50%, 70% { transform: rotate(-15deg) scale(1.1); }
  20%, 40%, 60%, 80% { transform: rotate(15deg) scale(1.1); }
  90% { transform: rotate(0deg) scale(1); }
}

@keyframes pulse-wave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Unique Seafood Page Preloader */
#page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0f1115;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-icon {
  font-size: 42px;
  color: var(--crayfish-red);
  animation: preloader-bounce 1.5s infinite ease-in-out;
  z-index: 2;
}
.preloader-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid transparent;
  border-top-color: var(--crayfish-red);
  border-bottom-color: var(--crayfish-red);
  border-radius: 50%;
  animation: preloader-spin 1.2s infinite linear;
}
.preloader-ring-outer {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(200, 35, 44, 0.4);
  border-radius: 50%;
  animation: preloader-spin-reverse 2.5s infinite linear;
}
.preloader-bar-bg {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--crayfish-red);
  animation: preloader-progress 1.5s ease-in-out infinite;
}

@keyframes preloader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes preloader-spin-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
@keyframes preloader-bounce {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.15) translateY(-6px); }
}
@keyframes preloader-progress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* Color Utility Classes */
.text-crayfish {
  color: var(--crayfish-red) !important;
}
.hover-crayfish:hover {
  color: var(--crayfish-red) !important;
}

/* Header Styling */
header.bg-header {
  background: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 1000;
}
header.bg-header .nav-link {
  color: #333333 !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
header.bg-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--crayfish-red);
  transition: width 0.3s ease;
}
header.bg-header .nav-link:hover,
header.bg-header .nav-link.active {
  color: var(--crayfish-red) !important;
}
header.bg-header .nav-link:hover::after,
header.bg-header .nav-link.active::after {
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo-icon {
  width: 38px;
  height: 38px;
  color: var(--crayfish-red);
}
.site-logo-text {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--crayfish-red);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: #555555;
  display: block;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* Mobile Offcanvas Header */
#mobileMenu {
  background-color: #ffffff !important;
}
#mobileMenu .nav-link {
  color: #222222 !important;
  font-weight: 700;
  font-size: 14px;
}
#mobileMenu .nav-link:hover {
  color: var(--crayfish-red) !important;
}

/* Buttons */
.btn-crayfish-red {
  background-color: var(--crayfish-red);
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  border: 1px solid var(--crayfish-red);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-crayfish-red:hover {
  background-color: var(--crayfish-dark-red);
  color: #ffffff !important;
  border-color: var(--crayfish-dark-red);
}
.btn-crayfish-outline {
  background-color: transparent;
  color: var(--crayfish-red) !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  border: 1px solid var(--crayfish-red);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-crayfish-outline:hover {
  background-color: var(--crayfish-red);
  color: #ffffff !important;
}

/* Typography & General */
.font-2 {
  font-family: var(--font-title);
}

.hero-section {
  padding: 120px 0 60px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-img-col {
  text-align: center;
}
.hero-img-wrapper {
  position: relative;
  display: inline-block;
}
.hero-img {
  max-width: 480px;

}

@media (min-width: 992px) {
  .hero-section {
    padding: 100px 0;
  }
  .hero-img-col {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 55vw;
    text-align: right;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 35%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 35%);
  }
  .hero-img-wrapper {
    display: block;
    width: 100%;
  }
  .hero-img {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 35%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 35%);
  }
}

.hero-subtitle {
  color: var(--crayfish-red);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}
.hero-title {
  color: var(--crayfish-red);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title span {
  color: #111111;
  display: block;
}
.hero-desc {
  color: var(--crayfish-text-sub);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

@media (min-width: 1400px) {
  .hero-subtitle {
    font-size: 26px;
  }
  .hero-title {
    font-size: 64px;
  }
  .hero-desc {
    font-size: 17px;
    max-width: 540px;
  }
  .feature-text h6 {
    font-size: 14px;
  }
  .feature-text p {
    font-size: 13px;
  }
}

/* Features Row */
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 35, 44, 0.08);
  color: var(--crayfish-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-text h6 {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #111;
}
.feature-text p {
  margin: 0;
  font-size: 12px;
  color: var(--crayfish-text-sub);
}

/* Banner Strip Red */
.red-strip-banner {
  background-color: var(--crayfish-red);
  color: #ffffff;
  padding: 35px 0;
}
.strip-box {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 15px;
}
.strip-box:last-child {
  border-right: none;
}
.strip-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.strip-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.strip-desc {
  font-size: 12px;
  opacity: 0.85;
  margin: 0;
}

/* Section Header */
.section-sub {
  color: var(--crayfish-red);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
}
.section-main-title {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
  letter-spacing: 1px;
}
.section-main-title span {
  color: var(--crayfish-red);
}

/* Dish Card */
.dish-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
.dish-img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px auto;
  background: #f9f9f9;
}
.dish-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dish-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 8px;
}
.dish-desc {
  font-size: 13px;
  color: var(--crayfish-text-sub);
  margin-bottom: 15px;
  min-height: 40px;
}
.dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dish-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--crayfish-red);
}
.btn-add-dish {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--crayfish-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-add-dish:hover {
  background: var(--crayfish-dark-red);
}

/* Guest Review Card */
.guest-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.guest-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--crayfish-red);
}

/* Menu Tab Buttons (Light Theme) */
.menu-tab-btn {
  background: #ffffff;
  color: #555555;
  border: 1px solid #e0e0e0;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.menu-tab-btn:hover,
.menu-tab-btn.active {
  background-color: var(--crayfish-red);
  color: #ffffff;
  border-color: var(--crayfish-red);
  box-shadow: 0 4px 15px rgba(200, 35, 44, 0.25);
}

/* Hover Dish Card Gallery Overlay */
.hover-dish-card {
  height: 340px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.hover-dish-card img {
  transition: transform 0.6s ease;
}
.hover-dish-card:hover img {
  transform: scale(1.08);
}
.hover-dish-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 15%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  opacity: 0.85;
  transition: opacity 0.4s ease, background 0.4s ease;
}
.hover-dish-card:hover .hover-dish-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(158, 20, 27, 0.95) 20%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
}
.hover-dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Contact Info Card Overlay */
.contact-info-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

/* Callout Red Section */
.callout-red-bar {
  background: var(--crayfish-red);
  color: #ffffff;
  padding: 40px 0;
}
.callout-title {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

/* Scroll To Top Button */
.scroll-to-top {
  border: 1px solid #ddd;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(20px);
  background: #ffffff !important;
  color: var(--crayfish-red) !important;
  z-index: 99;
  cursor: pointer;
  width: 45px;
  height: 45px;
  bottom: 25px !important;
  right: 25px !important;
}
.scroll-to-top.active {
  transform: translateY(0);
  opacity: 1;
}
.scroll-to-top:hover {
  color: #ffffff !important;
  background: var(--crayfish-red) !important;
}

.w-fit {
  width: fit-content;
}
.h-fit {
  height: fit-content;
}
section {
  overflow: hidden;
}

/* Comprehensive Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 110px 0 50px 0;
    flex-direction: column;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-desc {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-img-col {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
  }
  .hero-img {
    max-width: 100%;
    width: 100%;
    border-radius: 16px;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .strip-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
  }
  .strip-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .selection-box {
    text-align: center !important;
  }
  .section-main-title {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 28px;
  }
  .btn-crayfish-red,
  .btn-crayfish-outline {
   padding: 10px 24px;
        font-size: 13px;
    justify-content: center;
    white-space: nowrap;
  }
  .hero-section .d-flex.gap-3 {
    gap: 12px !important;
  }
  .feature-item {
    text-align: left;
  }
  .site-logo-text {
    font-size: 10px;
  }
  .strip-title {
    font-size: 11px;
  }
  .strip-desc {
    font-size: 10px;
  }
}

@media (min-width: 1650px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    }
}
