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

:root {
  --cream: #f0ebe0;
  --warm-white: #f7f4ee;
  --black: #1a1612;
  --dark-brown: #712E37;
  --gold: #D57239;
  --muted: #A47864;
  --border: #DCCEDF;
  --apple: #A79555;
}

/* html { scroll-behavior: smooth; } */

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--warm-white);
  color: var(--black);
  overflow-x: hidden;
}

.hidden { display: none; }

/* —— NAV —— */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.nav-logo {
  font-family: 'Cubano', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto;
  text-align: center;
  white-space: nowrap;
  margin: 0 1.5rem;
}

.nav-links {
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 2rem);
  flex: 1 1 0;
  min-width: 0;
}

.nav-links:first-child {
  justify-content: space-evenly;
}

.nav-links:last-child {
  justify-content: space-evenly;
}

.nav-links a {
  font-family: 'Noto Sans', sans-serif;
  font-size: clamp(0.7rem, 1vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.6; }

.nav-active {
  color: var(--gold) !important;
  font-weight: 600;
}

/* —— NAV RESPONSIVE —— */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-mobile a:hover { opacity: 0.6; }

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* —— FOOTER LINKS —— */
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

.footer-links a:hover { opacity: 1; }

/* —— HERO —— */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--black);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transform: scale(1.05);
  animation: zoomOut 8s ease forwards;
}

@keyframes zoomOut {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px;
}

.hero-logo {
  width: 320px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeUp 1.2s ease 0.3s both;
}

.hero-tagline {
  font-family: 'Noto Sans', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  max-width: 680px;
  line-height: 1.7;
  animation: fadeUp 1.2s ease 0.6s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1.2s ease 1.2s both;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: #fff;
  margin: 0 auto;
  animation: lineGrow 1.5s ease 1.5s both;
  transform-origin: top;
}

@keyframes lineGrow {
  from { scaleY: 0; }
  to   { scaleY: 1; }
}

/* —— MARQUEE —— */
.marquee-section {
  background: #DCCEDF;
  color: var(--black);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.08em;
  padding: 0 40px;
  white-space: nowrap;
  color: var(--black);
}

.marquee-track span.sep { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* —— ABOUT —— */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.about-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--apple);
  margin-bottom: 20px;
}

.about-text h2 {
  font-family: 'Cubano', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--dark-brown);
}

.about-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 440px;
}

.about-text .label { color: var(--apple); }

/* —— INFO GRID —— */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  color: var(--cream);
}

.info-cell {
  padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.info-cell:last-child { border-right: none; }

.info-cell .label {
  color: var(--apple);
  margin-bottom: 16px;
  opacity: 1;
}

.info-cell h3 {
  font-family: 'Cubano', sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--cream);
}

.info-cell p,
.info-cell li {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,235,224,0.75);
}

.info-cell ul { list-style: none; }

/* —— MARQUEE 2 —— */
.marquee-section-2 {
  background: #C9A84C;
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track-2 {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite reverse;
}

.marquee-track-2 span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.1em;
  padding: 0 32px;
  white-space: nowrap;
  color: var(--black);
}

.marquee-track-2 span.sep { color: rgba(26,22,18,0.3); }

/* —— MENU —— */
#menu { background: var(--warm-white); }

.menu-section {
  background: var(--warm-white);
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: 'Cubano', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  color: var(--dark-brown);
  margin-bottom: 12px;
}

.section-header p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 32px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--dark-brown);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active { color: var(--dark-brown); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--dark-brown); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-pdf-link {
  display: block;
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}

.menu-pdf-link:hover { color: var(--apple); }

.menu-category { margin-bottom: 48px; }

.menu-category h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--apple);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(167,149,85,0.15);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-brown);
}

.menu-item-desc {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.5;
  font-style: italic;
}

.menu-item-price {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--apple);
  white-space: nowrap;
}

/* —— INSTAGRAM —— */
.instagram-section {
  background: var(--cream);
  padding: 80px;
  text-align: center;
}

.instagram-section .label {
  justify-content: center;
  display: block;
  margin-bottom: 8px;
  color: var(--apple);
}

.instagram-section h2 {
  font-family: 'Cubano', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 48px;
  color: var(--dark-brown);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto 32px;
}

.insta-placeholder {
  aspect-ratio: 1;
  background: var(--border);
  overflow: hidden;
  position: relative;
}

.insta-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-placeholder:hover img { transform: scale(1.06); }

.insta-handle {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* —— CONTACT / FAQ —— */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-form-side {
  background: var(--black);
  color: var(--cream);
  padding: 80px 72px;
}

.contact-form-side .label {
  margin-bottom: 16px;
  color: var(--apple);
}

.contact-form-side h2 {
  font-family: 'Cubano', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--cream);
}

.contact-form-side .warning {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* —— FAQ —— */
.faq-list { margin-top: 32px; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,235,224,0.75);
  padding-bottom: 18px;
}

.faq-item.open .faq-answer { display: block; }

.contact-info-side {
  background: var(--cream);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-side h3 {
  font-family: 'Cubano', sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--dark-brown);
}

.info-block { margin-bottom: 36px; }

.info-block .label {
  margin-bottom: 10px;
  color: var(--apple);
}

.info-block p,
.info-block a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  text-decoration: none;
}

.info-block a:hover { color: var(--gold); }

/* —— FOOTER —— */
footer {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 48px 24px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* —— VACATURES —— */
.vacatures-section {
  background: var(--cream);
  padding: 100px 80px;
}

.vacatures-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vacatures-intro {
  font-family: 'Noto Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.vacatures-intro a {
  color: var(--gold);
  text-decoration: underline;
}

.vacatures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vacature-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px 32px;
}

.vacature-card h3 {
  font-family: 'Cubano', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark-brown);
  margin-bottom: 12px;
}

.vacature-card p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* —— RESPONSIVE —— */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }

  .vacatures-section { padding: 80px 32px; }
  .vacatures-grid { grid-template-columns: 1fr; }

  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 360px; }
  .about-text { padding: 60px 40px; }

  .info-grid { grid-template-columns: 1fr; }
  .info-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .menu-section { padding: 80px 32px; }
  .instagram-section { padding: 60px 24px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-section { grid-template-columns: 1fr; }
  .contact-form-side,
  .contact-info-side { padding: 60px 40px; }
}

@media (max-width: 600px) {
  .nav-logo { font-size: 17px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }

  .info-grid { grid-template-columns: 1fr; }

  .tab-btn { padding: 12px 18px; font-size: 12px; letter-spacing: 0.12em; }
  .menu-section { padding: 60px 20px; }
  .instagram-section { padding: 48px 20px; }

  .contact-form-side,
  .contact-info-side { padding: 48px 24px; }

  .vacatures-section { padding: 60px 20px; }
}

/* —— CAROUSEL —— */
.about-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: var(--black);
  display: flex;
  align-items: center;
}

.carousel-track-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 400px;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-btn:hover { background: rgba(0,0,0,0.7); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

@media (max-width: 600px) {
  .footer-logos {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}