/* ===================================================
   DENNINGS NEGLE — Stylesheet
   Tilpas farver øverst under :root for at ændre tema
   =================================================== */

:root {
  --cream:      #fdf8f5;
  --blush:      #f2e4dc;
  --rose:       #c9a99a;
  --rose-dark:  #a8796a;
  --charcoal:   #2d2d2d;
  --gray:       #6b6b6b;
  --white:      #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.10);
  --radius:    12px;
  --max-width: 1100px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 12px;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 56px;
}
.section-subtitle.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--rose-dark);
  color: var(--white);
  border-color: var(--rose-dark);
}
.btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--rose-dark);
  border-color: var(--rose-dark);
}
.btn-outline:hover {
  background: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.navbar.scrolled {
  background: rgba(253, 248, 245, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  z-index: 101;
}
.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-menu a {
  font-size: 0.88rem;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--rose-dark); }
.nav-cta {
  background: var(--rose-dark) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
}
.nav-cta:hover {
  background: var(--charcoal) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fdf8f5 0%, #f8ede5 45%, #ecddd4 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,169,154,0.22) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(201,169,154,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 22px;
  color: var(--charcoal);
}
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 44px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--rose);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===================================================
   OM MIG
   =================================================== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  background: var(--blush);
  border-radius: 20px;
  z-index: 0;
}
.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--blush);
  box-shadow: var(--shadow-md);
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--rose-dark);
  font-size: 0.85rem;
}
.about-img-placeholder svg { opacity: 0.4; }

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.about-text .btn { margin-top: 12px; }

/* ===================================================
   PRISER
   =================================================== */
.prices { background: var(--cream); }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,154,0.2);
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  background: var(--rose-dark);
  color: var(--white);
  border-color: var(--rose-dark);
  position: relative;
}
.price-card.featured::before {
  content: 'Mest populær';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,169,154,0.3);
}
.price-card.featured h3 { border-bottom-color: rgba(255,255,255,0.25); }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(201,169,154,0.12);
  font-size: 0.92rem;
}
.price-card.featured .price-list li { border-bottom-color: rgba(255,255,255,0.1); }
.price-list li:last-child { border-bottom: none; }
.price {
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.price-card-sub {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: -14px;
  margin-bottom: 16px;
  font-style: italic;
}
.prices-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
  font-style: italic;
}

/* ===================================================
   GALLERI
   =================================================== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 52px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blush);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  font-size: 1.6rem;
  opacity: 0.35;
}
.gallery-cta {
  text-align: center;
  border-top: 1px solid var(--blush);
  padding-top: 48px;
}
.gallery-cta p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ===================================================
   BOOK TID / KONTAKT
   =================================================== */
.contact { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-info p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.contact-instagram-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid rgba(201,169,154,0.4);
  border-radius: var(--radius);
  padding: 18px 24px;
  transition: all 0.25s;
}
.contact-instagram-box:hover {
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-instagram-box svg { flex-shrink: 0; }
.contact-instagram-box span {
  font-size: 0.85rem;
  color: var(--gray);
}
.contact-instagram-box strong {
  display: block;
  font-size: 1rem;
  color: var(--rose-dark);
}

.contact-address {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 18px 24px;
  background: var(--white);
  border: 1.5px solid rgba(201,169,154,0.4);
  border-radius: var(--radius);
}
.contact-address svg { flex-shrink: 0; margin-top: 2px; color: var(--rose-dark); }
.contact-address span {
  font-size: 0.85rem;
  color: var(--gray);
  display: block;
}
.contact-address strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: 2px 0;
}
.contact-address small {
  font-size: 0.8rem;
  color: var(--gray);
}

.booking-form { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-sm); }
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(201,169,154,0.4);
  border-radius: 10px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b5aaa6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 3px rgba(168,121,106,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8796a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--rose-dark);
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 48px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 28px;
}
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 0.88rem;
  margin-bottom: 36px;
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--white); }
.footer-address {
  font-size: 0.82rem;
  opacity: 0.55;
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  opacity: 0.4;
}

/* ===================================================
   MOBIL (max 768px)
   =================================================== */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(253, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    padding: 88px 28px 28px;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid rgba(201,169,154,0.2); }
  .nav-menu li:last-child { border-bottom: none; padding-top: 12px; }
  .nav-menu a { display: block; padding: 15px 0; font-size: 1.05rem; }
  .nav-cta {
    background: none !important;
    color: var(--rose-dark) !important;
    padding: 15px 0 !important;
    border-radius: 0 !important;
    font-size: 1.05rem !important;
  }

  /* Hero */
  .hero-title { font-size: 3rem; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-wrap::before { display: none; }
  .about-img {
    aspect-ratio: 4/3;
    max-width: 420px;
    margin: 0 auto;
  }
  .about-text { text-align: center; }

  /* Prices */
  .prices-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-card.featured { margin-top: 12px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .gallery-grid { gap: 8px; }
  .price-card { padding: 28px 22px; }
}
