/* ============================================================
   Tollare Kök & Hotell — Art Deco 1920/30-tal
   Guld, svart, varmt elfenben, geometriska linjer
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --black: #1a1a1a;
  --charcoal: #2a2520;
  --dark-brown: #3a302a;
  --gold: #c5a55a;
  --gold-light: #d4bc7c;
  --gold-dark: #a08840;
  --cream: #f5f0e4;
  --warm-white: #faf7f0;
  --ivory: #ede8dc;
  --text: #3a3028;
  --text-light: #6b6055;
  --red-hotel: #8b3a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
}

/* ---- ART DECO ORNAMENTS ---- */
.deco-line {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.5rem auto; width: fit-content;
}
.deco-line::before, .deco-line::after {
  content: '';
  width: 60px; height: 1px; background: var(--gold);
}
.deco-line .diamond {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197,165,90,0.3);
  padding: 0.6rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; margin-right: 2.5rem;
}
.nav-logo img {
  height: 45px; width: auto;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
}

.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--gold-light); font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 1px; background: var(--gold);
  margin: 6px 0; transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--charcoal);
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--charcoal) 100%);
  z-index: 1;
}

/* Ken Burns-slideshow */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kb-cycle 21s ease-in-out infinite;
  will-change: transform, opacity;
}
.hero-slide:nth-child(1) { animation-delay: 0s;  animation-name: kb-t1; }
.hero-slide:nth-child(2) { animation-delay: 7s;  animation-name: kb-t2; }
.hero-slide:nth-child(3) { animation-delay: 14s; animation-name: kb-t3; }
@keyframes kb-t1 {
  0%   { opacity: 0; transform: scale(1.12) translate(2%, 1%); }
  5%   { opacity: 0.33; }
  33%  { opacity: 0.33; transform: scale(1.0) translate(0%, 0%); }
  38%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.12) translate(2%, 1%); }
}
@keyframes kb-t2 {
  0%   { opacity: 0; transform: scale(1.1) translate(-2%, 0%); }
  5%   { opacity: 0.33; }
  33%  { opacity: 0.33; transform: scale(1.0) translate(1%, -1%); }
  38%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.1) translate(-2%, 0%); }
}
@keyframes kb-t3 {
  0%   { opacity: 0; transform: scale(1.08) translate(0%, 2%); }
  5%   { opacity: 0.33; }
  33%  { opacity: 0.33; transform: scale(1.0) translate(-1%, 0%); }
  38%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.08) translate(0%, 2%); }
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-logo {
  width: 240px; height: auto; margin: 0 auto 3rem;
  display: block;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; font-style: italic;
  color: var(--gold-light); letter-spacing: 2px;
  margin-bottom: 2.5rem; opacity: 0.9;
}
.hero-cta {
  display: inline-block; padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; letter-spacing: 3px; font-size: 0.8rem;
  text-transform: uppercase; font-family: 'Cormorant Garamond', serif;
  font-weight: 600; transition: all 0.3s;
}
.hero-cta:hover { background: var(--gold); color: var(--charcoal); }

/* ---- SECTIONS ---- */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1000px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400; letter-spacing: 4px;
  color: var(--dark-brown); text-transform: uppercase;
}
.section-title p {
  color: var(--text-light); font-style: italic; font-size: 1.05rem;
  margin-top: 0.5rem;
}

.section-dark {
  background: var(--charcoal); color: var(--cream);
}
.section-dark .section-title h2 { color: var(--gold); }
.section-dark .section-title p { color: var(--gold-light); }
.section-dark .text h3 { color: var(--gold); }
.section-dark .text p { color: rgba(245,240,228,1.0); }
.section-dark .two-col .text p { color: rgba(245,240,228,1.0); }
.section-dark .two-col .text h3 { color: var(--gold); }
.section-dark .text-center p { color: rgba(245,240,228,1.0); }

.section-alt { background: var(--ivory); }

/* ---- ART DECO BORDER ---- */
.deco-border {
  border: 1px solid var(--gold);
  padding: 0.5rem;
  position: relative;
}
.deco-border-inner {
  border: 1px solid rgba(197,165,90,0.4);
  padding: 2rem;
}

/* ---- IMAGE GRID ---- */
.image-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 2rem 0;
}
.image-grid .img-placeholder {
  aspect-ratio: 4/3;
  border-radius: 0; overflow: hidden;
  border: 1px solid rgba(197,165,90,0.2);
}
.image-grid .img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.image-grid .img-placeholder:hover img { transform: scale(1.05); }

/* ---- TEXT BLOCKS ---- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center;
}
.two-col .text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--dark-brown);
  margin-bottom: 1rem; letter-spacing: 2px; text-transform: uppercase;
}
.two-col .text p {
  color: var(--text); margin-bottom: 1rem; font-size: 1.05rem;
}
.two-col .img-placeholder {
  overflow: hidden; border: 1px solid rgba(197,165,90,0.2);
}
.two-col .img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}

.text-center { text-align: center; }
.text-center p {
  max-width: 650px; margin: 0 auto 1.5rem;
  color: var(--text-light); font-size: 1rem;
}

/* ---- MENY / PRISER ---- */
.menu-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.menu-card {
  background: var(--warm-white);
  border: 1px solid rgba(197,165,90,0.3);
  padding: 2.5rem 2rem; text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card::before {
  content: '';
  position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(197,165,90,0.15);
  pointer-events: none;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(58,48,42,0.1);
}
.menu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--dark-brown); margin-bottom: 0.5rem;
  letter-spacing: 2px; text-transform: uppercase;
}
.menu-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold-dark); margin: 0.8rem 0;
  font-weight: 400;
}
.menu-card .price small { font-size: 0.85rem; color: var(--text-light); }
.menu-card p { color: var(--text); font-size: 1.05rem; }
.menu-card .hours {
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(197,165,90,0.2);
  font-size: 0.85rem; color: var(--gold-dark); letter-spacing: 1px;
}

/* ---- BOENDE TEASER ---- */
.boende-teaser {
  background: var(--red-hotel); color: var(--cream);
  padding: 5rem 2rem; text-align: center;
  position: relative;
}
.boende-teaser::before {
  content: '';
  position: absolute; inset: 1rem;
  border: 1px solid rgba(245,240,228,0.2);
  pointer-events: none;
}
.boende-teaser h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.boende-teaser p {
  max-width: 550px; margin: 0 auto 1.5rem;
  opacity: 0.9; font-size: 1.05rem;
}
.boende-teaser .badge {
  display: inline-block; padding: 0.7rem 2rem;
  border: 1px solid rgba(245,240,228,0.5);
  letter-spacing: 3px; font-size: 0.8rem; text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
}

/* ---- CATERING FORM ---- */
.catering-form { max-width: 600px; margin: 2rem auto 0; }
.catering-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1rem;
}
.catering-form .form-full { margin-bottom: 1rem; }
.catering-form label {
  display: block; font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.4rem;
  font-weight: 600;
}
.catering-form input,
.catering-form select,
.catering-form textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid rgba(197,165,90,0.3);
  background: var(--warm-white); font-family: inherit;
  font-size: 1rem; color: var(--text);
  transition: border-color 0.3s;
}
.catering-form input:focus,
.catering-form select:focus,
.catering-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.catering-form textarea { min-height: 100px; resize: vertical; }
.catering-form button {
  display: block; width: 100%; padding: 1rem;
  background: var(--charcoal); color: var(--gold);
  border: 1px solid var(--gold); font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s;
}
.catering-form button:hover { background: var(--gold); color: var(--charcoal); }
.catering-form .form-msg {
  text-align: center; margin-top: 1rem;
  font-style: italic; color: var(--gold-dark); display: none;
}
.catering-form .form-msg.visible { display: block; }

/* ---- KONTAKT ---- */
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-top: 2rem;
}
.kontakt-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--dark-brown);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem;
}
.kontakt-info p {
  color: var(--text-light); margin-bottom: 0.5rem; font-size: 1rem;
}
.kontakt-info a { color: var(--gold-dark); text-decoration: none; }
.kontakt-info a:hover { text-decoration: underline; }
.kontakt-map {
  aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid rgba(197,165,90,0.3);
}
.kontakt-map iframe { width: 100%; height: 100%; border: 0; }

/* ---- FOOTER ---- */
footer {
  background: var(--black); color: rgba(197,165,90,0.9);
  text-align: center; padding: 2.5rem 2rem;
  font-size: 0.85rem; letter-spacing: 2px;
  border-top: 1px solid rgba(197,165,90,0.3);
}
footer p { color: rgba(197,165,90,0.9); }
footer a { color: var(--gold); text-decoration: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); padding: 1rem 2rem;
    border-bottom: 1px solid rgba(197,165,90,0.3);
  }
  .nav-toggle { display: block; }
  .hero-logo { width: 180px; }
  .section-title h2 { font-size: 1.6rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .image-grid { grid-template-columns: 1fr 1fr; }
  .menu-cards { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .catering-form .form-row { grid-template-columns: 1fr; }
}
