:root {
  --cream: #fffbe9;
  --coffee: #7c5e3c;
  --pink: #ffe6a7;
  --gold: #ffd700;
  --charcoal: #fffbe9;

    --radius: 1.2em;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--cream);
  color: var(--coffee);
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 0;
}
* {
  box-sizing: inherit;
}

/* Ensure all images and grids are responsive */
img, .gallery-img, .about-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
.gallery-grid, .menu-list {
  width: 100%;
  box-sizing: border-box;
}
.gallery-grid, .menu-categories, .menu-items, .about, .contact, .footer-social, .footer-links {
  max-width: 100vw;
  box-sizing: border-box;
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--coffee);
  box-shadow: var(--shadow);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7em 1.5em;
  background: var(--coffee);
}
.logo-img {
  height: 48px;
  max-width: 140px;
  vertical-align: middle;
  margin-right: 0.5em;
  display: inline-block;
}
.logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 1.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  padding: 0.4em 0.8em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--gold);
  color: var(--coffee);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1em;
}
.lang-select {
  border: none;
  background: var(--coffee);
  font-family: inherit;
  font-size: 1em;
  color: var(--cream);
  padding: 0.3em 0.7em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.lang-select:focus {
  outline: 2px solid var(--gold);
}
.btn {
  background: linear-gradient(90deg, var(--gold), var(--pink));
  color: var(--coffee);
  border: none;
  border-radius: var(--radius);
  padding: 0.6em 1.4em;
  font-weight: 600;
  font-size: 1em;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn:hover, .btn:focus {
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transform: translateY(-2px) scale(1.04);
}
.nav-cta {
  margin-left: 0.5em;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.25em;
  cursor: pointer;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hero Section */
.hero-bg-slideshow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s cubic-bezier(.4,0,.2,1);
  filter: brightness(0.45) blur(1.5px);
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  height: 100% !important;
  left: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}
.hero-bg-img.active {
  opacity: 1;
  z-index: 1;
}
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  overflow: hidden;
}
.hero, .hero-bg-slideshow {
  overflow-x: hidden !important;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--coffee);
  padding: 3em 1em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7em;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero-content h1 span {
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.28);
}
.hero-cta {
  font-size: 1.1em;
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  max-width: 1100px;
  margin: 3em auto;
  padding: 2em 1em;
  background: var(--coffee);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-img img {
  width: 320px;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2em;
  margin-bottom: 0.5em;
}
.about-text p {
  font-size: 1.1em;
  color: var(--cream);
  margin-bottom: 0.7em;
}

/* Menu Section */
.menu {
  max-width: 1200px;
  margin: 3em auto;
  padding: 2em 1em;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.menu h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2em;
  text-align: center;
  margin-bottom: 1em;
}
.menu-category-message {
  text-align: center;
  font-size: 1.15em;
  color: var(--coffee);
  margin-bottom: 1em;
  font-weight: 600;
  letter-spacing: 0.02em;
}
/* Sticky menu category selector within menu section */
.menu {
  position: relative;
  overflow: visible;
}
.menu-categories {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.2em;
  margin-bottom: 2em;
  flex-wrap: wrap;
  overflow-x: visible;
  width: auto;
  max-width: 1200px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 101;
  background: #fff;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.menu-tab {
  background: var(--coffee);
  color: var(--gold);
  border: none;
  border-radius: var(--radius);
  padding: 0.5em 1.2em;
  font-weight: 600;
  font-size: 1em;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  outline: none;
  margin-bottom: 0.2em;
}
.menu-tab.active, .menu-tab:hover {
  background: var(--gold);
  color: var(--coffee);
}
.menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}
.menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2em 1.2em;
  width: 100%;
}
.menu-card {
  background: var(--coffee);
  color: var(--cream);
  width: 260px;
  box-shadow: 0 2px 12px rgba(124,94,60,0.18);
  border: 1.5px solid #ffe6a7;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.menu-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}
.menu-card > div {
  padding: 1.1em 1em 1em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-card h3 {
  color: var(--gold);
  margin-bottom: 0.4em;
}
.menu-card p {
  color: var(--cream);
  margin-bottom: 0.7em;
}
.price {
  color: var(--gold);
  font-size: 1.15em;
  font-weight: 700;
}

/* Gallery Section */
.gallery {
  max-width: 1200px;
  margin: 3em auto;
  padding: 2em 1em;
  background: #fffbe9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2em;
  text-align: center;
  margin-bottom: 1em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2em;
}
.gallery-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--gold);
}
.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  border-color: var(--gold);
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24, 25, 26, 0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--gold);
}
.lightbox .close {
  position: absolute;
  top: 2em; right: 2em;
  color: var(--gold);
  font-size: 2em;
  cursor: pointer;
  z-index: 10;
}

/* Contact Section */
.contact {
  max-width: 1200px;
  margin: 3em auto;
  padding: 2em 1em;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2em;
  text-align: center;
  margin-bottom: 1em;
}
.contact-container {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background: #fffbe9;
  padding: 1.5em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 260px;
  flex: 1 1 320px;
  border: 1.5px solid #ffe6a7;
}
.contact-form input, .contact-form textarea {
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  padding: 0.7em;
  font-size: 1em;
  font-family: inherit;
  resize: none;
  background: var(--charcoal);
  color: var(--coffee);
  transition: border var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 1.5px solid var(--gold);
  outline: none;
}
.contact-form button {
  align-self: flex-end;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex: 1 1 320px;
}
.map-embed iframe {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: grayscale(0.2) brightness(0.8);
}
.business-details {
  background: #fffbe9;
  color: var(--coffee);
  border: 1.5px solid #ffe6a7;
}

/* Footer */
footer {
  background: #fffbe9;
  color: var(--coffee);
  padding: 2em 1em 1em 1em;
  text-align: center;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 3em;
  box-shadow: 0 -2px 12px rgba(124,94,60,0.10);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 1em;
}
.footer-social a {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.1em;
  transition: color var(--transition);
}
.footer-social a:hover {
  color: var(--pink);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 0.7em;
}
.footer-links a {
  color: var(--coffee);
  text-decoration: none;
  font-size: 1em;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-size: 0.95em;
  color: var(--coffee);
  margin-top: 0.5em;
}
.aldesigns-link {
  color: #e53935;
  font-weight: bold;
  text-decoration: none;
}
.aldesigns-link:hover {
  text-decoration: underline;
}

/* Modal Popup */
.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24, 25, 26, 0.95);
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: var(--coffee);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2em 2.5em;
  text-align: center;
  position: relative;
  min-width: 260px;
  max-width: 90vw;
  animation: popin 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes popin {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.modal .close {
  position: absolute;
  top: 1em; right: 1em;
  color: var(--gold);
  font-size: 1.5em;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 900px) {
  .about, .menu, .gallery, .contact {
    padding: 1.2em 0.5em;
  }
  .about {
    flex-direction: column;
    gap: 1.2em;
    text-align: center;
  }
  .about-img img {
    width: 90vw;
    max-width: 340px;
  }
  .contact-container {
    flex-direction: column;
    gap: 1.2em;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0.7em 0.5em;
    position: relative;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    background: var(--coffee);
    position: fixed;
    top: 0; right: -260px;
    width: 220px;
    height: 100vh;
    box-shadow: var(--shadow);
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 2em 1em 1em 1em;
    z-index: 9999;
    transition: right 0.35s var(--transition);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
  }
  .nav-links.open {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
  .nav-links a {
    padding: 1em 0.8em;
    font-size: 1.1em;
    margin-bottom: 0.5em;
    border-radius: var(--radius);
    touch-action: manipulation;
  }
  .side-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(24,25,26,0.6);
    z-index: 9998;
    transition: opacity 0.3s;
  }
  .side-nav-overlay.active {
    display: block;
  }
  .hamburger {
    display: flex;
    z-index: 2100;
  }
  .menu {
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: visible !important;
    max-width: 100vw !important;
    width: 100vw !important;
    position: relative !important;
  }
  .menu-categories {
    gap: 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 1.2rem 1rem;
    border-bottom: 1.5px solid #eee;
    margin: 0 0 1.2rem 0;
    scrollbar-width: none;
    background: #e8dcc6;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    justify-content: flex-start;
  }
  .menu-items {
    position: relative !important;
  }
  .menu-categories::-webkit-scrollbar {
    display: none;
  }
  .menu-categories {
    scrollbar-width: none;
  }
  .menu-tab {
    background: #d4c4a8 !important;
    color: #2d1f0f !important;
    border: 1.5px solid #b8a889 !important;
    border-radius: 20px !important;
    padding: 0.8rem 1.4rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s, border 0.3s;
    white-space: nowrap !important;
    outline: none;
    flex: 0 0 auto !important;
    margin: 0 !important;
    min-width: 120px !important;
    text-align: center !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  }
  .menu-tab.active, .menu-tab:focus {
    background: #ffcc00 !important;
    color: #1a1100 !important;
    border: 2px solid #cc9900 !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255,204,0,0.6);
    font-weight: 700 !important;
    position: relative;
  }
  .menu-tab.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: #cc9900;
    border-radius: 2px;
  }
  .menu-list {
    gap: 1.2em 0.5em;
  }
  .menu-card {
    margin: 0 auto;
  }
}
@media (min-width: 701px) {
  .menu-categories {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.2em;
    margin-bottom: 2em;
    flex-wrap: wrap;
    overflow-x: visible;
    width: auto;
    max-width: 1200px;
    box-sizing: border-box;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  .menu-tab {
    border-radius: 2em;
    background: #fff;
    color: var(--coffee);
    border: 2px solid var(--gold);
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(124,94,60,0.10);
    font-size: 1.15em;
    padding: 0.9em 2.2em;
    margin-bottom: 0.2em;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    outline: none;
  }
}
@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1.5em;
  }
  .about-img img {
    width: 98vw;
    max-width: 98vw;
  }
  .menu-card {
    width: 98vw;
    max-width: 320px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.scroll-up-btn {
  display: none;
  position: fixed;
  bottom: 2.5em;
  right: 1.5em;
  z-index: 1000;
  background: var(--gold, #e0b04b);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.scroll-up-btn.show {
  display: flex;
  opacity: 1;
}
@media (max-width: 600px) {
  .scroll-up-btn {
    bottom: 1.5em;
    right: 1em;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
} 