:root {
  --color-bg: #ffffff;
  --color-fg: #111111;

  --font-base: "Poppins", sans-serif;
  --font-head: "Montserrat", sans-serif;

  --font-color: #ffffff;

  --poster-img: url("media/vinter-video/vinter-poster.jpg");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;

  scroll-behavior: smooth;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  width: min(440px, calc(100% - 32px));
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #111111;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-family: var(--font-base);
}

.cookie-banner h2 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 17px;
}

.cookie-banner p {
  margin: 0;
  color: #d1d1d1;
  font-size: 12px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 9px;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #ffffff;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
}

.cookie-decline {
  background: transparent;
  color: #ffffff;
}

.cookie-accept {
  background: #ffffff;
  color: #111111;
}

@media (max-width: 600px) {
  .cookie-banner {
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }
  .cookie-actions button {
    flex: 1;
  }
}

header {
  width: 100%;
  height: 92px;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid #1c1c1c;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: Arial, Helvetica, sans-serif;
}

.header-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  display: block;
  width: 158px;
  height: auto;
  transition: opacity 0.25s ease;
}

.header-logo:hover img {
  opacity: 0.85;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 42px;

  margin-left: auto;
  margin-right: 80px;
}

.header-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 92px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.header-nav a:hover {
  color: #cfcfcf;
}

.header-nav a.active {
  color: #fff;
}

.header-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.header-nav a.active:hover::after {
  width: 34px;
}

.header-nav .contact-btn {
  height: auto;

  padding: 12px 24px;

  background: #fff;
  color: #000;

  border: 1px solid #fff;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  transition: transform 0.2s ease;
}

.header-nav .contact-btn:hover {
  background: #fff;
  color: #000;

  opacity: 1;

  transform: scale(1.05);
}

.header-nav .contact-btn::after {
  display: none;
}

.site-footer {
  width: 100%;
  background: linear-gradient(180deg, #101010 0%, #080808 100%);
  border-top: 1px solid #242424;
  color: white;
}

.footer-main {
  max-width: 1500px;
  margin: auto;
  padding: 70px 50px 65px;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1.35fr;
  gap: 55px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 180px;
  display: block;
}

.footer-tagline {
  margin: 25px 0 0;
  color: #777;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 1.8;
}

.footer-column {
  border-left: 1px solid #292929;
  padding-left: 42px;
}

.footer-column h3 {
  margin: 0 0 30px;
  font-size: 13px;
  letter-spacing: 3px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 25px;
  font-size: 20px;
}

.contact-item > div,
.address > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  color: #777;
  font-size: 11px;
}

.contact-item a,
.address a {
  color: #eee;
  font-size: 14px;
  text-decoration: none;
}

.booking-note {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #292929;
  display: flex;
  gap: 15px;
  color: #ccc;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #999;
  font-size: 14px;
}

.hours-row strong {
  color: #eee;
  font-weight: 500;
}

.footer-cta {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #292929;
}

.footer-contact-btn {
  width: 100%;
  min-height: 55px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.footer-contact-btn:hover {
  transform: scale(1.025);
  background: #f2f2f2;
}

.footer-cta p {
  margin: 18px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.7;
}

.address {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.location-icon {
  font-size: 18px;
}

.map-wrapper {
  height: 180px;
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 8px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) brightness(0.7);
}

.map-link {
  margin-top: 13px;
  display: flex;
  justify-content: flex-end;
  color: #aaa;
  font-size: 12px;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #292929;
  padding: 25px 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-company {
  display: flex;
  gap: 8px;
  color: #aaa;
  font-size: 13px;
}

.footer-company strong {
  color: #eee;
}

.footer-links {
  display: flex;
  gap: 13px;
  font-size: 12px;
  color: #444;
}

.footer-links a {
  color: #888;
  text-decoration: none;
}

.instagram-link {
  justify-self: end;
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.instagram-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

i {
  color: white;
}

@media (max-width: 1100px) {
  .header-nav {
    gap: 22px;
    margin-right: 0;
  }
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  header {
    height: auto;
    min-height: 72px;
  }
  .header-inner {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .header-logo img {
    width: 128px;
  }
  .header-nav {
    order: 2;
    width: 100%;
    height: 48px;
    gap: 20px;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
  .header-nav a {
    height: 48px;
    flex: 0 0 auto;
    font-size: 12px;
  }
  .header-nav a.active::after {
    bottom: 7px;
  }
  .header-nav .contact-btn {
    padding: 9px 16px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px;
  }
  .footer-column {
    padding-left: 0;
    border-left: 0;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 24px;
    text-align: center;
  }
  .footer-company,
  .instagram-link {
    justify-self: center;
  }
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 720px) {
  .header-inner {
    position: relative;
    min-height: 72px;
    flex-wrap: nowrap;
  }
  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    width: 23px;
    height: 2px;
    background: #fff;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header-nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 20px 18px;
    overflow: visible;
    background: #080808;
    border-top: 1px solid #1c1c1c;
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.3);
  }
  .header-nav.is-open {
    display: flex;
  }
  .header-nav a {
    height: 46px;
    flex: none;
    font-size: 14px;
  }
  .header-nav a.active::after {
    display: none;
  }
  .header-nav .contact-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 16px;
  }
}
