/* 
   SYF Hotel - Premium Modern Redesign 
   Style: Lovable "Modern Luxury"
*/

:root {
  /* ------------------------------
       Color Palette 
    ------------------------------ */
  /* Primary / Brand - Bright Neon Green */
  --primary: #66ff00;
  --primary-rgb: 102, 255, 0;
  --primary-light: #ccffaa;
  --primary-dark: #47b300;

  /* Neutrals */
  --bg-body: #f8f9fa;
  /* Very light off-white */
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f3f5;
  /* Light gray for sections */

  /* Text */
  --text-main: #1a1e21;
  /* Nearly Black */
  --text-muted: #5c636a;
  /* Readable Grey */
  --text-light: #aabbcc;

  /* Accents */
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(102, 255, 0, 0.5);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #66ff00 0%, #52cc00 100%);
  --gradient-overlay: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );

  /* ------------------------------
       Typography 
    ------------------------------ */
  /* Clean Sans-Serif Stack */
  --font-heading: "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* ------------------------------
       Layout & Effects 
    ------------------------------ */
  --max-w: 1280px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.1);
  --shadow-neon: 0 4px 15px rgba(102, 255, 0, 0.4);

  --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ------------------------------
   Reset & Base 
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Double protection */
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.rotate-left {
  transform: rotate(-90deg);
  transform-origin: center;
  max-width: none !important;
  /* Allow it to take height space */
}

/* Certificate Responsive Container */
.cert-card-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: var(--radius-sm);
}

.cert-card-inner img {
  max-width: 100%;
  height: auto;
  transition: var(--transition);
}

.cert-card-inner img.rotate-left {
  width: auto;
  height: 100%;
  max-height: 400px;
  /* Base constraint */
}

@media (max-width: 768px) {
  .cert-card-inner img.rotate-left {
    max-height: 300px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ------------------------------
   Typography 
------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.lead {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ------------------------------
   Utility Classes 
------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--primary);
  color: #000000;
  box-shadow: var(--shadow-neon);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(102, 255, 0, 0.5);
  background: #52cc00;
}

.btn-secondary,
.btn-map {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-secondary:hover,
.btn-map:hover {
  border-color: var(--primary);
  background: var(--bg-surface);
  /* Ensure bg stays white/light on hover for secondary, map overrides this below */
}

/* Specific Map Button Override for Neon Pop */
.btn-map {
  width: 100%;
  margin-top: 1.5rem;
  background: var(--white);
  color: var(--text-main);
  border: 2px solid var(--primary);
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn-map i {
  color: var(--primary);
  font-size: 1.2rem;
  transition: var(--transition);
}

.btn-map:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(102, 255, 0, 0.4);
  transform: translateY(-4px);
}

.btn-map:hover i {
  color: #000;
  transform: scale(1.1);
}

/* header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
} */

/* ------------------------------
   Header & Navigation 
------------------------------ */

header {
  position: fixed;
  /* FIXED header */
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* logo left, menu right */
  padding: 0 20px;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo {
  height: 50px;
  /* Adjust height as needed */
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .brand-logo {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

nav a:hover {
  color: var(--primary-dark);
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-surface-alt);
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  margin-right: 0.5rem;
}

.lang-item {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.lang-item.active {
  background: var(--primary);
  color: #000;
  box-shadow: var(--shadow-sm);
}

.lang-item:hover:not(.active) {
  color: var(--primary-dark);
}

/* Hero Contact Info */
.hero-contact-numbers {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-contact-numbers a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-contact-numbers a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-contact-numbers {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 1rem;
    }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: var(--transition);
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu ul {
  flex-direction: column;
  gap: 0;
  padding: 0 1.5rem;
}

.mobile-menu li {
  border-bottom: 1px solid var(--bg-surface-alt);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
}

/* ------------------------------
   Hero Section 
------------------------------ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  /* Removed the global margin hack. 
       The hero image handles the background.
    */
  background-color: var(--text-main);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Static image removed, handled by .hero-slider */
  background: transparent;
  opacity: 0.9;
}

/* .hero::after removed to prevent dimming the hero image */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}


/* Slider Styles */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  margin-top: 60px;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 800px;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------
   Section Styles 
------------------------------ */
section {
  position: relative;
  padding: 6rem 0;
  /* consistent spacing */
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* About Section */
.about {
  background-color: var(--bg-surface);
}

.about-grid {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-card {
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Rooms Section */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
  border-color: var(--border-hover);
}

.card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.amenities span {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--bg-surface-alt);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  margin-bottom: 1rem;
}

/* Services / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* Dining */
.food-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-neon);
  border-color: var(--primary);
}

.food-image {
  position: relative;
  height: 250px;
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diet-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Specific Button Polish */
.submit-wow {
  width: 100%;
  margin-top: 1rem;
  font-size: 1rem;
  padding: 1rem;
}

/* Quick Replies in Chat */
.quick-replies {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-top: auto;
  /* Push to bottom of chat body if flex */
}

.quick-replies button {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: var(--font-body);
  font-weight: 500;
}

.quick-replies button:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 2px 8px rgba(102, 255, 0, 0.3);
}

/* Events */
.conference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.conf-card {
  background: var(--bg-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: left;
  transition: var(--transition);
}

.conf-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-grid img:hover {
  filter: brightness(0.9);
}

/* Payment & Process */
.payment-process {
  background: var(--bg-surface-alt);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  color: var(--primary);
  font-size: 1.5rem;
  position: relative;
}

.step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--text-main);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.payment-card {
  background: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.payment-card .bank-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.acc-num-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
}

.copy-btn:hover {
  color: var(--primary);
}

/* Booking Form */
.premium-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
}

input,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-surface-alt);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(102, 255, 0, 0.15);
}

.booking-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 980px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .premium-form {
    padding: 1.5rem;
    /* Reduce padding on mobile */
  }

  /* Prevent iOS zoom & overflow */
  input,
  select,
  textarea {
    font-size: 16px !important;
    max-width: 100%;
    min-width: 0;
    /* Allow shrinking in flex/grid */
  }
}

.contact-card {
  background: var(--text-main);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-list li {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
  color: var(--primary);
  margin-top: 4px;
}

/* Footer */
.footer {
  background: var(--text-main);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer a {
  color: inherit;
}

.footer a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

/* Chat Bubble */
.chat-bubble {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
}

.chat-toggle {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: var(--shadow-float);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.chat-toggle:hover {
  transform: translateY(-4px);
}

.chat-window {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  border: 1px solid var(--border);
  animation: slideUp 0.3s ease;
}

.chat-header {
  background: var(--text-main);
  color: var(--white);
  padding: 1rem;
  font-weight: 600;
}

.chat-body {
  height: 300px;
  overflow-y: auto;
  padding: 1rem;
  background: var(--bg-surface-alt);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.msg {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  max-width: 85%;
}

.msg.ai {
  background: var(--white);
  border: 1px solid var(--border);
  align-self: flex-start;
}

.msg.user {
  background: var(--primary);
  color: #000;
  font-weight: 500;
  align-self: flex-end;
}

.chat-input {
  display: flex;
  padding: 0.75rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.chat-input input {
  border: none;
  background: transparent;
  padding: 0.5rem;
  flex: 1;
}

.chat-input input:focus {
  box-shadow: none;
}

#chatSend,
#chatClose {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.2rem;
  padding: 0 0.5rem;
  transition: var(--transition);
}

#chatSend:hover {
  transform: scale(1.1);
  color: var(--primary-dark);
}

#chatClose {
  color: var(--text-muted);
}

#chatClose:hover {
  color: var(--text-main);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal-up {
  animation: fadeUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 980px) {
  .nav nav ul,
  .nav-cta .btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .chat-window {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    z-index: 1200;
    /* Ensure it's above everything */
    margin: 0;
    max-height: 80vh;
    /* Prevent it from taking over too much height */
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* Custom File Upload Button */
input[type="file"] {
  position: relative;
  padding: 10px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

input[type="file"]::file-selector-button {
  background: var(--primary);
  color: #000;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-right: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

input[type="file"]::file-selector-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 255, 0, 0.3);
}

input[type="file"]:hover {
  border-color: var(--primary);
}

/* Food Menu Highlights */
.menu-highlights {
  margin-top: 4rem;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.menu-highlights h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-category h4 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.menu-item span:first-child {
  color: var(--text-muted);
}

.menu-item span:last-child {
  font-weight: 600;
  color: var(--primary);
}

/* Menu Content Wrapper (Side-by-Side) */
.menu-content-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 980px) {
  .menu-content-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
    /* Stack single column on mobile */
  }

  .menu-item {
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 0.5rem;
  }

  .menu-item span:first-child {
    font-weight: 500;
    color: var(--text-main);
  }
}

.menu-mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-food-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.mini-food-img:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

/* Booking Notice Box */
.booking-notice-box {
  margin: 0 auto 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: #e3f2fd; /* Light Blue */
  border: 1px solid #bbdefb;
  color: #0d47a1; /* Dark Blue */
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  max-width: var(--max-w);
}

.booking-notice-box .notice-icon {
  font-size: 1.8rem;
  color: #1976d2;
  flex-shrink: 0;
}

.booking-notice-box h4 {
  margin: 0 0 0.25rem;
  color: #0d47a1;
  font-size: 1.2rem;
}

.booking-notice-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1565c0;
}

@media (max-width: 768px) {
  .booking-notice-box {
    padding: 1.25rem;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .booking-notice-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .booking-notice-box .notice-icon {
    font-size: 2.2rem; /* Larger icon on mobile when centered */
  }
}

/* Copy Text Interactive Styles */
.copy-text {
  cursor: pointer;
  border-bottom: 1px dashed var(--primary);
  position: relative;
  transition: var(--transition);
}

.copy-text:hover {
  color: var(--primary-dark);
  background-color: rgba(102, 255, 0, 0.1);
}

.copy-text.copied {
  background-color: rgba(102, 255, 0, 0.3);
}
