@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #3A4148;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
  margin-bottom: 16px;
}

.section {
  padding: 64px 0;
}
.section__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4D9EC4;
  margin-bottom: 8px;
}
.section__title {
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 1.1rem;
  color: #777777;
  max-width: 600px;
  margin-bottom: 32px;
}
.section--light {
  background-color: #F5F1EB;
}
.section--dark {
  background-color: #3A4148;
  color: #ffffff;
}
.section--dark h2, .section--dark h3 {
  color: #ffffff;
}
.section__center {
  text-align: center;
}
.section__center .section__subtitle {
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: #3D7EA0;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #5AAAD4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.btn--outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #3D7EA0;
}
.btn--gold {
  background-color: #4D9EC4;
  color: #3A4148;
}
.btn--gold:hover {
  background-color: #3D7EA0;
  transform: translateY(-2px);
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #4D9EC4;
  margin: 16px 0 32px;
}
.section__center .divider {
  margin: 16px auto 32px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.header--scrolled {
  background-color: #3A4148;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-block;
  line-height: 0;
}
.logo img {
  height: 72px;
  width: auto;
}
.footer__brand .logo img {
  height: 44px;
}

.nav__list {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4D9EC4;
  transition: width 0.3s ease;
}
.nav__link:hover, .nav__link.active {
  color: #4D9EC4;
}
.nav__link:hover::after, .nav__link.active::after {
  width: 100%;
}
.nav__cta {
  padding: 10px 22px;
  border: 2px solid #4D9EC4;
  border-radius: 4px;
  color: #4D9EC4;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav__cta::after {
  display: none;
}
.nav__cta:hover {
  background-color: #4D9EC4;
  color: #3A4148;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
  .nav__list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background-color: #3A4148;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right 0.3s ease;
    padding: 64px 32px;
  }
  .nav__list.open {
    right: 0;
  }
  .nav__link {
    font-size: 1.2rem;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #3A4148;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: -30%;
  left: 0;
  right: 0;
  bottom: -30%;
  background-image: url("img/aletstueble-temp.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  will-change: transform;
}
.hero__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 700px;
}
.hero__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4D9EC4;
  margin-bottom: 16px;
}
.hero__title {
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.hero__text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s infinite;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: #4D9EC4;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__image {
  position: relative;
}
.about__image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.about__image::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid #4D9EC4;
  border-radius: 4px;
  z-index: -1;
}
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about__highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #777777;
}
.about__highlight::before {
  content: "✓";
  color: #4D9EC4;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  .about__image img {
    height: 300px;
  }
  .about__image::before {
    display: none;
  }
}

.menu__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.menu__tab {
  padding: 10px 24px;
  border: 2px solid #d5dae0;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #777777;
  transition: all 0.3s ease;
  cursor: pointer;
}
.menu__tab:hover, .menu__tab.active {
  border-color: #3D7EA0;
  background-color: #3D7EA0;
  color: #ffffff;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed #d5dae0;
}
.menu__item:last-child {
  border-bottom: none;
}
.menu__info {
  flex: 1;
}
.menu__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #3A4148;
  margin-bottom: 4px;
}
.menu__desc {
  font-size: 0.88rem;
  color: #777777;
  margin-bottom: 0;
}
.menu__price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3D7EA0;
  white-space: nowrap;
}
.menu__note {
  text-align: center;
  margin-top: 32px;
  color: #777777;
  font-size: 0.9rem;
}
.menu__group {
  margin-bottom: 32px;
}
.menu__group:last-child {
  margin-bottom: 0;
}
.menu__group-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #3A4148;
  padding-bottom: 8px;
  border-bottom: 2px solid #4D9EC4;
  margin-bottom: 16px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery__grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery__grid img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover {
  opacity: 1;
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 16px;
  user-select: none;
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

.hours .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hours__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
}
.hours__row:last-child {
  border-bottom: none;
}
.hours__day {
  font-weight: 500;
}
.hours__time {
  color: #4D9EC4;
  font-weight: 600;
}
.hours__closed {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}
.hours__note {
  margin-top: 32px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .hours .container {
    grid-template-columns: 1fr;
  }
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact__block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(61, 126, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact__block-title {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 4px;
}
.contact__block-text {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 0;
}
.contact__block-text a:hover {
  color: #3D7EA0;
}
.contact__form {
  background-color: #F5F1EB;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact__form-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 32px;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 576px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}
.contact__group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.5px;
}
.contact__input, .contact__textarea, .contact__select {
  padding: 12px 14px;
  border: 1px solid #d5dae0;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background-color: #ffffff;
  width: 100%;
}
.contact__input:focus, .contact__textarea:focus, .contact__select:focus {
  outline: none;
  border-color: #3D7EA0;
}
.contact__textarea {
  resize: vertical;
  min-height: 100px;
}
.contact__submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .contact .container {
    grid-template-columns: 1fr;
  }
}

.map {
  height: 400px;
  background-color: #d5dae0;
  border-radius: 4px;
  overflow: hidden;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background-color: #252B30;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 16px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer__brand .logo {
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.footer__social-link:hover {
  border-color: #4D9EC4;
  color: #4D9EC4;
}
.footer__title {
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__link {
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #4D9EC4;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Reviews ──────────────────────────────────────────── */
.reviews__overall {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}
.reviews__score {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: #3A4148;
  line-height: 1;
}
.reviews__stars {
  color: #f5a623;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.reviews__count {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 6px;
}
.reviews__link {
  font-size: 0.85rem;
  color: #3D7EA0;
  text-decoration: none;
  transition: color 0.2s;
}
.reviews__link:hover {
  color: #4D9EC4;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}
.review__card {
  background: #ffffff;
  border: 1px solid #d5dae0;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review__header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3D7EA0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #3A4148;
}
.review__card-stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: 2px;
}
.review__text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.review__meta {
  font-size: 0.8rem;
  color: #999;
}

/* ── Map Consent ──────────────────────────────────────── */
.map__consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  background: #f5f1eb;
  border-radius: 4px;
  text-align: center;
  height: 100%;
  min-height: 220px;
}
.map__consent p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ── Cookie Banner ────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #252B30;
  color: #ccc;
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 9000;
  font-size: 0.88rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}
.cookie-banner.visible {
  display: flex;
}
.cookie-banner__text a {
  color: #4D9EC4;
  text-decoration: underline;
  margin-left: 6px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}