@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Goblin+One&family=Open+Sans&display=swap");
/* Dark theme – Sushi Casco 2026. CSS editado manualmente; fuente SCSS no sincronizada. */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body,
html {
  scroll-behavior: smooth;
  width: 100%;
  font-size: 14px;
  color: #e8e8e8;
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  background-color: #0d0d0d;
}

h1, h2, h3 {
  color: #4ade80;
  font-family: "Archivo", sans-serif;
}

h1, h2 {
  text-align: center;
  margin-bottom: 15px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* Alerts */
.alert {
  text-align: center;
  border-radius: 10px;
  max-width: 600px;
  padding: 25px;
  margin: 25px auto;
  color: #e8e8e8;
  border: 1px solid #22c55e;
  background-color: rgba(34, 197, 94, 0.15);
}

/* Custom Buttons*/
.custom-btn a {
  padding: 15px;
  background-color: #22c55e;
  border: 1px solid #22c55e;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.custom-btn a * {
  color: #0d0d0d;
  margin: 0 !important;
  padding: 0 !important;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 9999;
}

.back-to-top a {
  border-radius: 50%;
  padding: 10px;
}

.back-to-top a span {
  vertical-align: bottom;
}

/* Icons */
body .material-symbols-outlined {
  vertical-align: middle;
  font-size: 22px;
  margin-right: 5px;
}

/* Top Section */
#top {
  height: 95vh;
  text-align: center;
  background-color: #0d0d0d;
  position: relative;
}
#top > svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: -1px;
  z-index: 2;
  pointer-events: none;
}
#top header {
  background-color: transparent;
}

/* Capa 1: solo la imagen de fondo (efecto parallax) */
#top::before {
  content: "";
  background-image: url("../assets/background-image.webp");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 1;
  z-index: 0;
}
@supports (-webkit-touch-callout: none) {
  #top::before {
    background-attachment: scroll;
  }
}

/* Capa 2: gradiente separado SIN fixed → desplaza con la página.
   Negro sólido arriba (logo+nav), cae rápido a transparente bajo el menú,
   foto visible en el centro, cierra en negro para el wave. */
#top::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(
    to bottom,
    #0d0d0d       0%,
    #0d0d0d      32%,
    transparent  44%,
    transparent  65%,
    rgba(13, 13, 13, 0.92) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Header – por encima del gradiente ::after */
#home {
  position: relative;
  height: 24vh;
  z-index: 2;
}

.logo img {
  max-height: 24vh;
  width: auto;
  padding: 30px 0 8px;
  filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.5));
}

/* Navbar Menu – por encima del gradiente ::after */
#top nav[role=custom-dropdown] {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
  background-image: linear-gradient(180deg, rgba(13,13,13,0.6), transparent 100%);
}
#top nav[role=custom-dropdown] li {
  background-color: rgba(13, 13, 13, 0.75);
}
#top nav[role=custom-dropdown] li a {
  color: #e8e8e8;
}
#top nav[role=custom-dropdown] li:hover {
  background-color: #22c55e;
  transition: background 0.3s;
}
#top nav[role=custom-dropdown] li:hover a {
  color: #0d0d0d;
}

/* Language Switcher */
.lang-switcher {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
  padding: 15px;
  background-color: #111111;
  right: 15px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border: 1px solid #222;
  border-top: none;
}

.lang-switcher ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
}

.lang-switcher a {
  text-decoration: none;
  color: #e8e8e8;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: sans-serif;
  font-size: 14px;
}

.lang-switcher img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.lang-switcher a:hover {
  opacity: 0.7;
}

/* Buy Online Button – por encima del gradiente ::after */
.buy-online {
  position: relative;
  z-index: 2;
}

.buy-online a {
  background-color: #22c55e;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
  color: #0d0d0d;
  padding: 1em 2.5em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.buy-online a .material-symbols-outlined {
  font-size: 24px;
  color: #0d0d0d;
  margin-right: 0;
}
.buy-online a:hover {
  background-color: #4ade80;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.6);
}
.buy-online a:active {
  box-shadow: none;
  top: 5px;
}

/* WHO WE ARE */
#who-we-are {
  color: #e8e8e8;
  background-color: #0d0d0d;
  max-width: 800px;
}
#who-we-are p {
  text-align: center;
  max-width: 85%;
  margin: auto;
  margin-bottom: 5px;
}
#who-we-are h1, #who-we-are h2, #who-we-are h3, #who-we-are h4, #who-we-are h5, #who-we-are h6 {
  color: #4ade80;
}
#who-we-are h2 {
  margin: 25px auto;
}
#who-we-are h3 {
  margin: 15px auto;
  color: #a3e6b8;
}
#who-we-are > div {
  text-align: center;
}
#who-we-are img {
  max-width: 600px;
  margin: 3rem auto;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.15);
}
#who-we-are ul {
  margin: 25px auto;
  max-width: 400px;
  text-align: left;
}
#who-we-are ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#who-we-are ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #4ade80;
}
#who-we-are #faq {
  margin: 25px auto;
  max-width: 600px;
  text-align: left;
}
#who-we-are #faq p {
  text-align: left;
}

/* Articles */
article {
  padding: 25px 15px;
  max-width: 1200px;
  margin: auto;
}

.title-area {
  margin: 25px auto;
  text-align: center;
}

.title-area img {
  max-width: 800px;
}

#images {
  background-color: #0d0d0d;
}

#images h2 {
  color: #4ade80;
}

.image-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.image-wrapper > * {
  flex-basis: 250px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.image-wrapper > *:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

/* Separator image */
#lg-separator-img {
  margin: 2rem auto;
  text-align: center;
  max-width: 800px;
}

#lg-separator-img img {
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.15);
}

/* NEWS */
#news {
  background-color: #111111;
}

#news a {
  text-align: center;
}

/* PRODUCTS MENU */
#products-menu {
  text-align: center;
}
#products-menu p {
  color: #e8e8e8;
  max-width: 85%;
  margin: 15px auto;
}
#products-menu p a span {
  font-size: 2em;
}

/* Timetable Table */
#timetables {
  background-color: #0d0d0d;
}

#timetables h2 {
  color: #4ade80;
}

#timetables table {
  margin: 25px auto;
  width: 100%;
  max-width: 500px;
  border-collapse: collapse;
  border: 1px solid #2a2a2a;
  color: #e8e8e8;
  background-color: #0d0d0d;
}

#timetables thead tr {
  background-color: #1a3a2a;
  color: #4ade80;
  border-bottom: 2px solid #22c55e;
}

#timetables tbody tr:nth-child(even) {
  background-color: #111111;
}

#timetables th,
#timetables td {
  padding: 9px;
}

#timetables tbody td {
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
}

#timetables tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #a3e6b8;
}

#location {
  color: #e8e8e8;
  background-color: #0d0d0d;
}

#location h2 {
  color: #4ade80;
}

.address {
  margin: 50px 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 1.3rem;
}
.address a, .address a:hover, .address a:visited, .address a:focus {
  color: inherit;
}
.address img {
  width: 28px;
  vertical-align: middle;
}
.address .material-symbols-outlined {
  font-size: 2.5rem !important;
  color: #4ade80;
}
.address > :first-child {
  justify-self: end;
}
.address > :last-child {
  justify-self: start;
}
.address .social-wrapper img {
  width: 3em;
  margin-right: 15px;
  filter: brightness(0.8) sepia(1) hue-rotate(80deg) saturate(2);
}
.address .social-wrapper a:last-child img {
  margin-right: 0;
}

#map {
  text-align: center;
}

#map iframe {
  width: 300px;
  height: 225px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

footer {
  color: #888;
  padding: 50px 0;
  margin-top: 50px;
  text-align: center;
  background-color: #0d0d0d;
  border-top: 1px solid #222;
}

footer img {
  vertical-align: bottom;
  height: 1.7rem;
  width: auto;
  filter: invert(1) opacity(0.65);
  transition: filter 0.3s ease;
}
footer a:hover img {
  filter: invert(1) opacity(1);
}

#marketingBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
#marketingBanner #banner {
  max-width: 300px;
  text-align: center;
}
#marketingBanner .controls .btn {
  padding: 8px 12px;
  margin: 10px;
  border-radius: 5px;
  border: none;
  background-color: #222;
  color: #e8e8e8;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}
#marketingBanner .controls a.btn {
  background-color: #22c55e;
  color: #0d0d0d;
  text-transform: uppercase;
  font-weight: 700;
}
#marketingBanner .controls a.btn:hover {
  background-color: #4ade80;
}

/* MEDIA QUERIES */
@media (max-width: 767px) {
  #top nav[role=custom-dropdown] {
    z-index: 9998;
  }
  .buy-online {
    z-index: 1;
  }
}
@media (min-width: 576px) {
  #map iframe {
    width: 500px;
    height: 375px;
  }
}
@media (min-width: 768px) {
  #top nav[role=custom-dropdown] ul {
    display: flex;
    justify-content: center;
  }
  #top nav[role=custom-dropdown] ul li {
    background-color: transparent;
    box-shadow: none;
    width: 142px;
    line-height: 3em;
    float: none;
    align-self: center;
  }
  #top nav[role=custom-dropdown] ul li a {
    color: #e8e8e8;
  }
  #top nav[role=custom-dropdown] ul li:last-child {
    margin-bottom: 0;
  }
  #top nav[role=custom-dropdown] ul li:hover a {
    color: #0d0d0d;
  }
  .buy-online {
    position: relative;
    top: 10%;
  }
  #map iframe {
    width: 600px;
    height: 450px;
  }
}

/*# sourceMappingURL=styles.css.map */

/* ==========================================
   LEGAL FOOTER BAR
   ========================================== */
.legal-footer {
  background-color: #0a0a0a;
  border-top: 1px solid #222;
  padding: 14px 20px;
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 14px;
}
.legal-footer a {
  color: #666;
  text-decoration: none;
}
.legal-footer a:hover {
  color: #4ade80;
  text-decoration: underline;
}
.legal-footer .sep {
  color: #333;
  user-select: none;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-page-header {
  background-color: #0d0d0d;
  text-align: center;
  padding: 18px 20px;
  border-bottom: 1px solid #222;
}
.legal-page-header .logo {
  max-width: 220px;
  margin: auto;
}
.legal-page-header .logo img {
  width: auto;
  max-width: 100%;
  max-height: 80px;
}
.legal-page-header .logo .legal-logo-text {
  color: #4ade80;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 600;
}

.legal-breadcrumb {
  background-color: #0d0d0d;
  padding: 10px 20px;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 1px solid #222;
}
.legal-breadcrumb a {
  color: #4ade80;
  text-decoration: none;
}
.legal-breadcrumb a:hover {
  text-decoration: underline;
}

article.legal-content {
  color: #ccc;
  background-color: #0d0d0d;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
article.legal-content h1 {
  font-size: 2rem;
  color: #4ade80;
  margin-bottom: 6px;
}
article.legal-content .legal-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 30px;
  font-style: italic;
}
article.legal-content h2 {
  font-size: 1rem;
  color: #22c55e;
  margin-top: 28px;
  margin-bottom: 8px;
  text-align: left;
}
article.legal-content p {
  margin-bottom: 10px;
  line-height: 1.75;
}
article.legal-content ul {
  list-style: disc;
  margin-left: 22px;
  margin-bottom: 10px;
}
article.legal-content ul li {
  margin-bottom: 5px;
  line-height: 1.7;
}
article.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0 20px 0;
  font-size: 0.82rem;
}
article.legal-content table th {
  background-color: #1a3a2a;
  color: #4ade80;
  padding: 9px 10px;
  text-align: left;
  font-weight: 600;
}
article.legal-content table td {
  border: 1px solid #2a2a2a;
  padding: 8px 10px;
  color: #bbb;
  vertical-align: top;
}
article.legal-content table tr:nth-child(even) td {
  background-color: #111111;
}
article.legal-content .legal-last-update {
  margin-top: 35px;
  font-style: italic;
  font-size: 0.82rem;
  color: #555;
  border-top: 1px solid #222;
  padding-top: 15px;
}
article.legal-content a {
  color: #4ade80;
  text-decoration: underline;
}

.cookies-placeholder {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-style: italic;
}
