@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #101613;
  color: #F5F5F5;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0A3D2E;
  color: #F29E2E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: 'Georgia', serif;
}
.logo span {
  color: #F29E2E;
  font-size: 1rem;
  font-weight: normal;
  margin-left: 0.3em;
}
.burger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  justify-content: center;
}
.burger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #F29E2E;
  border-radius: 2px;
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 70vw;
  max-width: 320px;
  height: 100vh;
  background: #0A3D2E;
  box-shadow: -2px 0 10px rgba(0,0,0,0.3);
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
  padding-top: 4.5rem;
  overflow-y: auto;
  z-index: 100;
}
.nav ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.nav.open {
  right: 0;
}
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav li {
  margin: 1.5rem 0;
  text-align: center;
}
.nav a {
  color: #F29E2E;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover {
  color: #fff;
}
@media (min-width: 700px) {
  .burger {
    display: none;
  }
  .nav {
    position: static;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    flex-direction: row;
    padding-top: 0;
    transition: none;
    display: flex;
    align-items: center;
    overflow: visible;
  }
  .nav ul {
    flex: unset;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-ig-follow {
    display: none;
  }
}
.section {
  padding: 2.5rem 1rem 1.5rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.section h1, .section h2, .section h3 {
  color: #F29E2E;
  margin-bottom: 1rem;
}
.drinks-category {
  margin-bottom: 2.5rem;
}
.drinks-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.drink-card {
  background: #18382B;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.2rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  width: 100%;
  min-width: 0;
}
.drink-card img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  background: #222;
  display: block;
}
.drink-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  margin-bottom: 0.18em;
}
.drink-info:last-child {
  margin-bottom: 0;
}
.drink-info span,
.price {
  font-size: 0.93rem;
  line-height: 1.2;
}
.price {
  color: #F29E2E;
  font-weight: bold;
  min-width: 44px;
  text-align: right;
  margin-left: 0.5em;
  font-size: 0.93rem;
}
.drink-title, .drinks-list h3 {
  font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  font-size: 1.55rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 0.32em;
  margin-top: 0.18em;
  text-shadow: 0 3px 16px rgba(0,0,0,0.28), 0 2px 0 #F29E2E;
  line-height: 1.18;
  font-style: italic;
  background: linear-gradient(90deg, #fff 70%, #F29E2E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (min-width: 600px) {
  .drinks-list {
    flex-direction: row;
    gap: 2rem;
  }
  .drink-card {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }
  .drink-card img {
    width: 100%;
    height: 120px;
    margin-bottom: 0.5rem;
    border-radius: 8px;
  }
  .drink-info span {
    font-size: 1.1rem;
  }
  .price {
    font-size: 1rem;
  }
}
@media (max-width: 599px) {
  .section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .drinks-list {
    gap: 2.2rem;
  }
  .drink-card {
    padding: 2rem 1.2rem;
    border-radius: 22px;
    min-width: 0;
    width: 92vw;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .drink-card img {
    width: 100%;
    height: auto;
    max-height: 180px;
    border-radius: 18px 18px 0 0;
  }
  .drink-info {
    width: 100%;
  }
  .drink-info span,
  .price {
    font-size: 0.93rem;
    line-height: 1.2;
  }
  .price {
    min-width: 44px;
    text-align: right;
    margin-left: 0.5em;
    color: #F29E2E;
    font-weight: bold;
    font-size: 0.93rem;
  }
  .drink-card > .drink-title, .drink-card > h3, .drink-title, .drinks-list h3 {
    font-size: 1.13rem !important;
    color: #fff !important;
    font-weight: 900 !important;
    line-height: 1.15;
    margin-bottom: 0.22em;
    margin-top: 0.12em;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.22), 0 1.5px 0 #F29E2E;
    font-style: italic;
    background: linear-gradient(90deg, #fff 70%, #F29E2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    border: 2px solid red;
    background-color: yellow;
  }
}
.footer {
  background: #0A3D2E;
  color: #F29E2E;
  text-align: center;
  padding: 1.2rem 0 1.5rem 0;
  font-size: 1rem;
  margin-top: 2rem;
}
.hours-list {
  list-style: none;
  padding: 0;
  color: #F5F5F5;
  font-size: 1.1rem;
}
.logo-img {
  max-height: 48px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
.nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #F29E2E;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 110;
  display: block;
}
@media (min-width: 700px) {
  .nav-close {
    display: none;
  }
}
.carousel {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 1.5rem auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  background: #222;
  position: relative;
  height: 270px;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.carousel img {
  width: 100%;
  display: block;
  height: 100%;
  min-height: 180px;
  max-height: 270px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.carousel-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,61,46,0.7) 40%, rgba(242,158,46,0.5) 100%);
  z-index: 2;
  transition: background 0.5s;
}
.carousel-welcome {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fff 60%, #F29E2E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  opacity: 0.97;
  animation: fadeIn 1.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 0.93; transform: translate(-50%, -50%); }
}
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10,61,46,0.7);
  color: #F29E2E;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  text-align: left;
  letter-spacing: 1px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 4;
}
@media (max-width: 600px) {
  .carousel {
    height: 180px;
    min-height: 120px;
  }
  .carousel img {
    min-height: 120px;
    max-height: 180px;
  }
  .carousel-welcome {
    font-size: 1.3rem;
  }
}
.category-bar {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: #101613;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.7rem 0.5rem 0.7rem 0.5rem;
  border-bottom: 1.5px solid #18382B;
  margin-bottom: 1.2rem;
  scrollbar-width: none;
}
.category-bar::-webkit-scrollbar {
  display: none;
}
.category-btn {
  background: #18382B;
  color: #F29E2E;
  border: none;
  border-radius: 18px;
  padding: 0.5rem 1.1rem;
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  outline: none;
}
.category-btn.active, .category-btn:focus {
  background: #F29E2E;
  color: #0A3D2E;
}
@media (max-width: 700px) {
  .category-bar {
    top: 56px;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    gap: 0.3rem;
  }
  .category-btn {
    font-size: 0.98rem;
    padding: 0.45rem 0.8rem;
  }
}
.category-helper {
  font-size: 1rem;
  color: #F29E2E;
  margin-bottom: 0.3rem;
  margin-top: 0.2rem;
  text-align: left;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* Enhanced contact form styles */
/* Contact form: dark theme, smaller, and more compact */
.contact-form {
  max-width: 340px;
  margin: 2em auto 1.5em auto;
  padding: 1.1em 0.7em 0.8em 0.7em;
  background: linear-gradient(135deg, #18382B 80%, #0A3D2E 100%);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(10,61,46,0.13), 0 1.5px 0 #F29E2E;
  border-left: 5px solid #F29E2E;
  border-top: 3px solid #0A3D2E;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: relative;
}
.contact-form .form-group label {
  color: #F29E2E;
  background: transparent;
  font-weight: 600;
  opacity: 0.92;
}
/* Floating label styles for contact form */
.contact-form .form-group {
  position: relative;
  margin-bottom: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form .form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #0A3D2E;
  font-size: 1em;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.18s cubic-bezier(.4,0,.2,1);
  opacity: 0.85;
  padding: 0 4px;
  z-index: 2;
}
.contact-form input,
.contact-form textarea {
  background: #101613;
  color: #F5F5F5;
  border: 1.5px solid #18382B;
  padding: 1.1em 0.9em 0.5em 0.9em;
  font-size: 1em;
  border-radius: 8px;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(242,158,46,0.07);
  margin-bottom: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: #18382B;
  border: 2px solid #F29E2E;
  color: #fff;
  box-shadow: 0 0 0 2px #F29E2E33;
}
.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: 0.2em;
  left: 10px;
  font-size: 0.82em;
  color: #F29E2E;
  background: #18382B;
  opacity: 1;
  z-index: 3;
  padding: 0 4px;
  transform: none;
}
.contact-form input,
.contact-form textarea {
  min-height: 2.3em;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: transparent;
}
.contact-form button[type="submit"] {
  background: linear-gradient(90deg, #F29E2E 60%, #0A3D2E 100%);
  color: #fff;
  border-radius: 8px;
  font-size: 1.08em;
  font-weight: 700;
  padding: 0.7em 0;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus {
  background: linear-gradient(90deg, #0A3D2E 10%, #F29E2E 90%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(242,158,46,0.13);
  transform: translateY(-2px) scale(1.03);
}
.contact-form input:disabled,
.contact-form textarea:disabled {
  background: #eee;
  color: #aaa;
  border: 1.5px dashed #ccc;
}
@media (max-width: 600px) {
  .contact-form {
    max-width: 96vw;
    padding: 0.7em 0.2em 0.6em 0.2em;
    border-left: 3px solid #F29E2E;
    border-top: 2px solid #0A3D2E;
  }
  .contact-form .form-group label {
    left: 10px;
    font-size: 0.98em;
  }
  .contact-form input:focus + label,
  .contact-form input:not(:placeholder-shown) + label,
  .contact-form textarea:focus + label,
  .contact-form textarea:not(:placeholder-shown) + label {
    left: 7px;
    font-size: 0.8em;
  }
}
#google-maps-placeholder {
  max-width: 600px;
  margin: 0 auto;
}
#google-maps-placeholder iframe {
  width: 100%;
  min-height: 250px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
@media (max-width: 600px) {
  #google-maps-placeholder {
    max-width: 98vw;
  }
  #google-maps-placeholder iframe {
    min-height: 180px;
  }
} 
.ig-link, .ig-link-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.7em;
  transition: transform 0.15s, box-shadow 0.15s;
  border-radius: 50%;
  background: none;
  box-shadow: none;
}
.ig-link svg, .ig-link-contact svg {
  display: block;
  transition: stroke 0.2s, box-shadow 0.2s;
}
.ig-link:hover svg, .ig-link-contact a:hover svg {
  stroke: #e1306c;
  box-shadow: 0 2px 8px rgba(225,48,108,0.10);
}
.ig-link-header {
  margin: 0 0 0 1em;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .ig-link-header {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .ig-link-contact {
    margin-bottom: 1em;
  }
} 
.nav-ig-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  padding: 2.2em 0 1.2em 0;
  gap: 0.3em;
}
.nav-ig-label {
  color: #F29E2E;
  font-size: 1.08em;
  font-weight: 600;
  margin-bottom: 0.2em;
  letter-spacing: 0.5px;
  opacity: 0.92;
}
.ig-link-nav {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: box-shadow 0.15s, transform 0.15s;
}
.ig-link-nav svg {
  stroke: #F29E2E;
  transition: stroke 0.2s, box-shadow 0.2s;
}
.ig-link-nav:hover svg {
  stroke: #e1306c;
  box-shadow: 0 2px 8px rgba(225,48,108,0.10);
}
@media (min-width: 700px) {
  .nav-ig-follow {
    padding-bottom: 0.7em;
  }
} 
.ig-link-contact-main {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  text-decoration: none;
  color: #F29E2E;
  font-size: 1.13em;
  font-weight: 600;
  transition: color 0.18s;
}
.ig-link-contact-main svg {
  stroke: #F29E2E;
  transition: stroke 0.2s, box-shadow 0.2s;
  filter: drop-shadow(0 2px 8px rgba(242,158,46,0.13));
}
.ig-link-contact-main:hover svg {
  stroke: #e1306c;
  box-shadow: 0 2px 8px rgba(225,48,108,0.13);
}
.ig-link-contact-label {
  color: #F29E2E;
  font-size: 1.08em;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-left: 0.1em;
  transition: color 0.18s;
}
.ig-link-contact-main:hover .ig-link-contact-label {
  color: #e1306c;
} 
.photo-carousel {
  width: 100%;
  max-width: 370px;
  margin: 0 auto 2.2em auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10,61,46,0.13);
  background: #222;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.photo-carousel img {
  width: 100%;
  display: block;
  height: 750px; /* was 650px */
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  background: #101613;
}
@media (max-width: 600px) {
  .photo-carousel img {
    height: 450px; /* was 350px */
  }
  .photo-carousel {
    max-width: 100vw;
    border-radius: 0;
  }
  .photo-carousel-caption {
    font-size: 1.08em;
    padding: 0.6em 0.2em;
    border-radius: 0 0 16px 16px;
  }
} 
.photo-carousel-caption {
  width: 100%;
  background: linear-gradient(90deg, #fff8e1 60%, #F29E2E 100%);
  color: #0A3D2E;
  font-size: 1.13em;
  font-weight: 700;
  text-align: center;
  padding: 0.7em 0.5em;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  letter-spacing: 0.5px;
  opacity: 0.97;
  box-shadow: 0 2px 8px rgba(242,158,46,0.08);
}
@media (max-width: 600px) {
  .photo-carousel {
    max-width: 98vw;
  }
  .photo-carousel img {
    height: 320px; /* was 220px */
  }
  .photo-carousel-caption {
    font-size: 1em;
    padding: 0.5em 0.2em;
  }
} 
.scroll-to-top {
  position: fixed;
  right: 1.2em;
  bottom: 1.2em;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F29E2E 70%, #0A3D2E 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(10,61,46,0.13);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.25s, box-shadow 0.18s, background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-to-top::before {
  content: "▲";
  font-size: 1.3em;
  color: #fff;
  line-height: 1;
}
.scroll-to-top:hover {
  background: linear-gradient(135deg, #0A3D2E 60%, #F29E2E 100%);
  box-shadow: 0 6px 20px rgba(242,158,46,0.18);
}
@media (max-width: 600px) {
  .scroll-to-top {
    right: 0.7em;
    bottom: 0.7em;
    width: 38px;
    height: 38px;
    font-size: 1em;
  }
} 
.section#momente {
  min-height: unset;
  padding-top: unset;
  padding-bottom: unset;
  display: unset;
  flex-direction: unset;
  align-items: unset;
  justify-content: unset;
} 
.footer-credit {
  margin-top: 1em;
  text-align: center;
  font-size: 1.05em;
}
.footer-credit a {
  text-decoration: none;
}
.footer-credit-powered {
  color: #888;
  font-size: 0.95em;
  margin-right: 0.4em;
}
.footer-credit-ald {
  color: #e53935;
  font-weight: bold;
}
.footer-credit-designs {
  color: #111;
  font-weight: 500;
} 