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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #150321;
  color: #fdf7ff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Topplinje */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #2b0440;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo-main {
  display: block;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f6d76b;
}

.logo-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f9e7b7;
}

.tel-badge {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 215, 107, 0.8);
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    linear-gradient(to bottom, rgba(10, 0, 20, 0.35), #150321 75%),
    url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
}

.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #ffeec8;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #fbefff;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

/* Dekor – jasmine */

.decor-jasmine {
  position: absolute;
  bottom: -10px;
  width: 150px;
  pointer-events: none;
  opacity: 0.95;
}

.decor-left {
  left: 0;
}

.decor-right {
  right: 0;
}

/* Knapper */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f6d76b, #f9a94b);
  color: #32110b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.btn.outline {
  border-color: rgba(246, 215, 107, 0.8);
  color: #f6d76b;
  background: transparent;
}

.btn.outline:hover {
  background: rgba(246, 215, 107, 0.11);
}

.btn.fullwidth {
  width: 100%;
  margin-top: 1.2rem;
}

/* Seksjoner */

.section {
  padding: 3.5rem 0;
  background: #150321;
}

.section.alt {
  background: radial-gradient(circle at top, #3b0b63 0, #150321 60%);
}

.section h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #ffeec8;
}

.section p {
  color: #f4e6ff;
}

/* Thai-border øverst på seksjon */

.pattern-top {
  position: relative;
  padding-top: 4.5rem;
}

.pattern-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  height: 40px;
  background-image: url("thai-border.png");
  background-repeat: repeat-x;
  background-size: contain;
  opacity: 1;            /* thai-border.png bør ha transparent bakgrunn */
  pointer-events: none;
}

/* Layout – to kolonner */

.two-col {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Cards */

.card {
  background: rgba(20, 2, 33, 0.95);
  border-radius: 1.2rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(246, 215, 107, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.card h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  color: #ffeec8;
}

/* Videoramme */

.video-frame {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.9rem;
  background: #000;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lister */

.checklist {
  list-style: none;
  margin-top: 1rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f6d76b;
}

.info-list {
  list-style: none;
  margin: 0 0 1rem;
}

.info-list li {
  margin-bottom: 0.4rem;
}

/* Tekstdetaljer */

.highlight-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.meta {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #fbdc9a;
}

.note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #f4e6ff;
  opacity: 0.9;
}

/* Grid for behandlinger */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Kontaktknapper */

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b010f;
  padding: 1.5rem 0;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: #d4c4f1;
}

.footer a {
  text-decoration: underline;
}
