/* =========================
   OM MIG – HERO
========================= */
.om-hero{
    position: relative;
    background: #4e73aa;
    padding: 110px 0 0;     /* plads til fixed nav */
    overflow: visible;      /* så billedet kan overlappe ned */
  }
  
  /* texture overlay */
  .om-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url("billeder/forsidebaggrund.jpg");
    background-size: 140% auto;
    background-position:center;
    opacity:0.9;
    mix-blend-mode:multiply;
    pointer-events:none;
  }
  
  .om-hero-inner{
    position: relative;
    width: min(1200px, 92vw);
    margin: 0 auto;
  
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
    padding: 70px 0 0;
  }
  
  .om-hero-left{
    padding-top: 10px;
  }
  
  .om-hero-title{
    margin: 0 0 22px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  
    font-size: clamp(4.6rem, 6.6vw, 6.4rem);
    line-height: 0.9;
    color: #e2f7fd;
  
    white-space: normal;
  }
  
  .om-hero-title .line{
    display: block;
  }
  
  .om-hero-subtitle{
    margin: 0;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(1.25rem, 1.7vw, 1.75rem);
    line-height: 1.7;
    color: rgba(0,0,0,0.45);
    max-width: 40ch;
  }
  
  .om-hero-right{
    display: flex;
    justify-content: flex-end;
  }
  
  /* Foto: ingen ramme/boks + overlap ned */
  .om-hero-photo{
    width: min(520px, 44vw);
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
  
    background: none;
    box-shadow: none;
    border: 0;
  
    margin-top: -110px;
    transform: translateY(120px);
  }
  
  .om-hero-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
    outline: 0;
  }
  
  
  /* =========================
     MENU SEKTION
  ========================= */
  .menu-section {
    background: #f2efe9;
    padding: 120px 0 140px;
  }
  
  .menu-inner {
    width: min(1100px, 92vw);
    margin: 0 auto;
  }
  
  .menu-intro{
    max-width: 820px;
    margin: 0 auto 140px;
    text-align: left;
  }
  
  .menu-intro-lead{
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 2.2vw, 2.1rem);
    line-height: 1.6;
    color: #2b3b55;
    margin: 0 0 24px;
  }
  
  .menu-intro-text{
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2b3b55;
    opacity: 0.8;
    max-width: 620px;
  }
  
  
  
  .menu-title {
    font-family: "Anton", sans-serif;
    font-size: clamp(3.5rem, 5vw, 5rem);
    letter-spacing: 0.05em;
    text-align: center;
    color: #4e73aa;
    margin: 0 0 80px;
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
  
  .menu-card {
    font-family: "Playfair Display", serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2b3b55;
    position: relative;
  }
  
  /* lodrette streger mellem kolonner */
  .menu-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
  }
  
  .menu-kicker {
    font-family: "Anton", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #6da0e3;
    margin-bottom: 12px;
  }
  
  .menu-lead {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  
  /* =========================
     OFFKITCHEN
  ========================= */
  .offkitchen{
    background: #74a5df;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
  }
  
  .offkitchen-sticky{
    width: min(1200px, 92vw);
    margin: 0 auto;
    height: calc(100vh - 180px);
  }
  
  .offkitchen-title{
    font-family: "Anton", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.9;
    margin: 0 0 60px;
    color: rgba(15, 25, 40, 0.45);
    font-size: clamp(3.1rem, 5.8vw, 5.2rem);
  }
  
  .offkitchen-grid{
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
    margin-top: 40px;
  }
  
  .offkitchen-text{
    font-family: "Playfair Display", serif;
    color: rgba(10, 18, 30, 0.55);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 58ch;
  }
  
  .offkitchen-text p{
    margin: 0 0 22px;
  }
  
  /* Kamera scene */
  .offkitchen-cameraWrap{
    --camW: 520px;
  
    --slotY: 215px;
    --startY: 260px;
  
    width: min(var(--camW), 42vw);
    margin-left: auto;
  
    position: relative;
    height: 620px;
    margin-top: 30px;
  }
  
  .camera{
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    filter: drop-shadow(0 22px 50px rgba(0,0,0,0.22));
  }
  
  .polaroid-stack{
    position: absolute;
    right: 0;
    bottom: var(--slotY);
    width: 100%;
    height: 620px;
    z-index: 4;
    pointer-events: none;
  }
  
  .polaroid{
    position: absolute;
    right: 12%;
    bottom: 0;
    width: 76%;
    height: auto;
    display: block;
  
    transform: translateY(var(--startY));
    opacity: 0;
  
    filter: drop-shadow(0 18px 32px rgba(0,0,0,0.20));
    will-change: transform, opacity;
  }
  
  .p1{ right: 14%; }
  .p2{ right: 9%;  }
  .p3{ right: 18%; }
  .p4{ right: 11%; }
  
  .camera-hint{
    position: absolute;
    top: 65%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.75);
    text-align: center;
    width: 190px;
    pointer-events: none;
    user-select: none;
    animation: fadePulse 2.5s ease-in-out infinite;
    z-index: 10;
  }
  
  @keyframes fadePulse {
    0%   { opacity: 0.5; }
    50%  { opacity: 0.9; }
    100% { opacity: 0.5; }
  }
  
  
  /* =========================
     REVIEWS
  ========================= */
  .reviews-section {
    background: #efefea;
    padding: 90px 16px 70px;
    overflow: hidden;
  }
  
  .reviews-title {
    text-align: center;
    font-size: clamp(44px, 6vw, 84px);
    letter-spacing: 1px;
    margin: 0 0 48px;
    color: #3f67a8;
    font-weight: 800;
    text-transform: uppercase;
  }
  
  .reviews-carousel {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 12px;
  }
  
  .reviews-viewport {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    z-index: 1;
  }
  
  .reviews-track {
    display: flex;
    width: 200%;
    transform: translateX(0%);
    transition: transform 450ms ease;
    will-change: transform;
  }
  
  .reviews-slide {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: transparent;
  }
  
  .review-card {
    padding: 24px 26px 18px;
    text-align: center;
    position: relative;
  }
  
  .review-card:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: rgba(0,0,0,0.18);
  }
  
  .review-hearts {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 6px 0 18px;
  }
  
  .heart {
    font-size: 22px;
    line-height: 1;
    color: #b77b86;
  }
  
  .review-quote {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 18px;
    color: #1c1c1c;
  }
  
  .review-meta {
    font-size: 18px;
    margin: 0 0 18px;
    color: #1c1c1c;
  }
  
  .review-body {
    font-size: 18px;
    line-height: 1.45;
    margin: 0;
    color: #1c1c1c;
  }
  
  .reviews-nav {
    height: 44px;
    width: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    font-size: 28px;
    display: grid;
    place-items: center;
    transition: transform 150ms ease, background 150ms ease;
    position: relative;
    z-index: 10;
  }
  
  .reviews-nav:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.8);
  }
  
  .reviews-dots {
    max-width: 1180px;
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.35);
    background: transparent;
    cursor: pointer;
  }
  
  .dot.is-active {
    background: rgba(0,0,0,0.35);
  }
  
  
  /* =========================
     KONTAKT 
  ========================= */
  .kontakt-section {
    background: #4e73aa;
    padding: 90px 7vw 110px;
    color: #fff;
  }
  
  .kontakt-card {
    max-width: 640px;
    margin: 0 auto;
    background: #f5f5f0;
    border-radius: 18px;
    padding: 40px 38px 36px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    text-align: center;
  }
  
  .kontakt-title {
    font-family: "Anton", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a5ea9;
    margin: 0 0 12px;
  }
  
  .kontakt-subtitle {
    font-style: italic;
    margin: 0 0 18px;
    color: #333;
  }
  
  .kontakt-text {
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0 0 22px;
    color: #333;
  }
  
  .kontakt-info {
    max-width: 420px;
    margin: 0 auto 24px;
    font-size: 0.98rem;
  }
  
  .kontakt-info a {
    color: #1c2c4f;
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 44, 79, 0.2);
  }
  
  .kontakt-info a:hover {
    border-bottom-color: rgba(28, 44, 79, 0.7);
  }
  
  .cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #f4a8c1;
    color: black;
    font-family: "Anton", sans-serif;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
  }
  
  
  /* =========================================================
   MOBIL: behold tekst, fjern kamera/billeder + kill carousel + kill overlap
   Læg nederst i ommig.css
========================================================= */

@media (max-width: 700px){

  /* ---------- HERO: fjern overlap (så det bliver roligt på mobil) ---------- */
  .om-hero{
    overflow: hidden;
  }

  .om-hero-inner{
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 46px;
  }

  .om-hero-right{
    justify-content: center;
  }

  .om-hero-photo{
    width: min(520px, 92vw);
    margin-top: 0;
    transform: none;     /* VIGTIG: fjerner overlap */
  }


  /* ---------- OFFKITCHEN: behold kun tekst (skjul hele kamera-delen) ---------- */
  .offkitchen{
    min-height: auto;
    height: auto;
    overflow: visible;
    padding: 80px 0;
    align-items: stretch;
  }

  .offkitchen-sticky{
    height: auto;
  }

  .offkitchen-grid{
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 18px;
  }

  /* skjul alt det visuelle + hint */
  .offkitchen-cameraWrap,
  .polaroid-stack,
  .camera,
  .camera-hint{
    display: none !important;
  }

  /* sørg for at teksten får fuld bredde */
  .offkitchen-text{
    max-width: none;
  }


  /* ---------- REVIEWS: slå carousel fra, vis alle i en ren liste ---------- */
  .reviews-nav{ display: none; }
  .reviews-dots{ display: none; }

  .reviews-carousel{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reviews-viewport{
    overflow: visible;
    border-radius: 0;
  }

  .reviews-track{
    width: 100%;
    transform: none !important;
    transition: none !important;
    display: block;
  }

  .reviews-slide{
    width: 100%;
    display: block;
  }

  .review-card{
    padding: 18px 14px;
    border-top: 1px solid rgba(0,0,0,0.12);
  }

  .review-card:first-child{
    border-top: none;
  }

  .review-card:not(:first-child)::before{
    display: none;
  }
}
