@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-light: #FFF0D9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border-color: rgba(0, 0, 0, 0.12);
  --border-hover: rgba(5, 150, 105, 0.4);
  
  --emerald: #047857;
  --emerald-glow: rgba(4, 120, 87, 0.1);
  --amber: #b45309;
  --amber-glow: rgba(180, 83, 9, 0.1);
  --gold: #92400e;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dark: #0f172a;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: transparent;
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  background-color: transparent;
}

/* Background Canvas & Decorative Elements */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background-color: var(--bg-light);
}

.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-glow-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  animation: float-glow 25s ease-in-out infinite alternate;
}

.bg-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 120, 87, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  animation: float-glow 30s ease-in-out infinite alternate-reverse;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, 8%) scale(1.15); }
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(4, 120, 87, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background: #035a41;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 48px;
  width: auto;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.nav-brand:hover .nav-logo {
  transform: rotate(5deg) scale(1.05);
}

.nav-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin-bottom: 5px;
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Page Container & Layouts */
.content-wrapper {
  padding-top: 100px;
  min-height: calc(100vh - 180px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* 3D Scroll Animation System */
.animate-on-scroll {
  transition: opacity 1.2s cubic-bezier(.16,1,.3,1), transform 1.2s cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity;
}

.js .animate-on-scroll {
  opacity: 0;
  transform: perspective(1000px) rotateX(10deg) translateY(60px) scale(0.95);
}

.js .animate-on-scroll.is-visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
}

/* Delay modifiers for scroll animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Interactive Cards (Solid backgrounds with border outlines and shadows instead of light transparencies) */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.08), 0 0 25px rgba(5, 150, 105, 0.04);
}

/* Headings & Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--text-dark) 30%, var(--emerald) 70%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: 3rem;
  color: var(--text-dark);
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald), #047857);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
  background: linear-gradient(135deg, #059669, #059669);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber), #b45309);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
}

/* Hero Section */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  font-size: 1rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.hero-image-glow {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 0.9; transform: scale(1.05); }
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
  transition: var(--transition-smooth);
}

.glass-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.icon-kava {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid var(--amber);
  color: var(--amber);
}

.icon-kratom {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid var(--emerald);
  color: var(--emerald);
}

.icon-vibes {
  background: rgba(180, 83, 9, 0.08);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-desc {
  color: var(--text-main);
  font-weight: 500;
}

/* About Page Columns */
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-main);
}

.about-text p {
  margin-bottom: 24px;
  font-weight: 500;
}

.about-text h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  margin-top: 32px;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.about-card-placeholder:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
}

.about-card-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  display: inline-block;
  animation: pulse-icon 4s ease-in-out infinite alternate;
}

@keyframes pulse-icon {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* About Lounge Gallery */
.lounge-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(4, 120, 87, 0.1);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

@media (max-width: 900px) {
  .lounge-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .gallery-item {
    aspect-ratio: 16 / 10;
  }
}

/* Menu Page Elements */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-dark);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--emerald), #047857);
  color: white;
  border-color: var(--emerald);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
}

.tab-btn[data-menu="cawfee"].active,
.tab-btn[data-menu="food"].active {
  background: linear-gradient(135deg, var(--amber), #b45309);
  color: white;
  border-color: var(--amber);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
}

.menu-images-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 60px auto;
}

.menu-image-card {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

#menu-quiggs,
#menu-cawfee,
#menu-food {
  max-width: 1100px;
}

.menu-image-card.active {
  display: flex;
  animation: menuFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-images-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  padding: 40px;
  background: #fffdfa;
}

.menu-images-row.single-image {
  padding: 40px;
}

@media (max-width: 900px) {
  .menu-images-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 24px;
  }
}

.menu-card-header {
  padding: 30px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(90deg, rgba(217,119,6,0.02), rgba(5,150,105,0.02));
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.menu-card-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.menu-image-frame {
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #fffdfa;
}

.portrait-frame {
  width: 100%;
  max-width: 502px;
}

.menu-view-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.menu-view-img:hover {
  transform: scale(1.02);
}

/* Events Page Elements */
.events-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.events-intro-text {
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 500;
}

.calendar-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.calendar-iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 12px;
  opacity: 1;
}

.weekly-events {
  margin-top: 80px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.event-day {
  color: var(--amber);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.event-time {
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 8px;
  font-weight: 600;
}

/* Contact & Visit Us Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.info-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.info-text {
  color: var(--text-main);
  font-weight: 500;
}

.map-card {
  height: 320px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
}

.contact-form-card {
  padding: 40px;
}

.contact-form-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-form-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--emerald);
  box-shadow: 0 0 10px rgba(5, 150, 105, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Modal styling for Ask about hosting */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1), 0 0 20px rgba(5, 150, 105, 0.05);
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-dark);
}

/* Footer */
.footer {
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  padding: 60px 24px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--emerald);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Page transitions styling */
.page-fade-in {
  animation: pageFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .about-columns {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(3, 90, 65, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-menu {
    gap: 16px;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
}

/* Cawfee Menu Grid */
.cawfee-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}

.cawfee-menu-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  background: var(--bg-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cawfee-menu-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 30px rgba(180, 83, 9, 0.08);
}

.menu-item-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.cawfee-menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.cawfee-menu-item:hover .cawfee-menu-img {
  transform: scale(1.05);
}

.menu-item-info {
  padding: 16px;
  background: #ffffff;
  text-align: center;
  border-top: 1px solid var(--border-color);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}
