/* =============================================
   RESET & BASE
============================================= */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #07191C;
  color: #F4FAF9;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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


/* =============================================
   TOP BAR
============================================= */

.topbar {
  background: #114347;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-main {
  font-family: "Georgia", serif;
  font-size: 1.4rem;
  color: #E7D8A1;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.75rem;
  color: #C4E0DA;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -0.1rem;
}

.tel-badge {
  border: 1px solid #E7D8A1;
  color: #E7D8A1;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}


/* =============================================
   HERO SECTION
============================================= */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background: radial-gradient(circle at top,
    #1B4D53 0%,
    #07191C 70%
  );
}

/* --- LOGO MED GLØD --- */

.brand-logo {
  max-width: 600px;
  margin: 0 auto 2rem;
  filter:
    drop-shadow(0 0 18px rgba(255, 220, 140, 0.55))
    drop-shadow(0 0 36px rgba(255, 200, 90, 0.28))
    drop-shadow(0 0 60px rgba(255, 185, 40, 0.15));
  transition: filter 0.3s ease;
}

@media (hover: hover) {
  .brand-logo:hover {
    filter:
      drop-shadow(0 0 24px rgba(255, 230, 160, 0.8))
      drop-shadow(0 0 60px rgba(255, 200, 80, 0.45))
      drop-shadow(0 0 90px rgba(255, 180, 50, 0.25));
  }
}

@media (max-width: 600px) {
  .brand-logo {
    max-width: 380px;
    margin-bottom: 1.5rem;
  }
}

/* --- HERO CONTENT --- */

.hero-content {
  position: relative;
  z-index: 10;
}

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

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

/* --- THAI DAMER --- */

.decor-person {
  position: absolute;
  bottom: 0;
  width: 240px;
  opacity: 0.96;
  pointer-events: none;
  z-index: 3;
}

.decor-left  { left: 0; }
.decor-right { right: 0; }

@media (max-width: 900px) {
  .decor-person {
    width: 170px;
  }
}

@media (max-width: 640px) {
  .decor-person {
    display: none;
  }
}

/* --- HERO BUTTONS --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #D9B650, #E7D8A1);
  color: #261F13;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

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

.btn.outline {
  border-color: #E7D8A1;
  color: #E7D8A1;
}

.btn.outline:hover {
  background: rgba(231,216,161,0.15);
}

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


/* =============================================
   SECTIONS
============================================= */

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

.section.alt {
  background: #0F3135;
}

.section h2 {
  font-family: "Georgia", serif;
  font-size: 1.8rem;
  color: #FBEED0;
  margin-bottom: 1.3rem;
}

/* --- THAI BORDER --- */

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

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


/* =============================================
   GRID
============================================= */

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

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

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

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


/* =============================================
   CARDS & VIDEO
============================================= */

.card {
  background: rgba(8, 33, 36, 0.9);
  border: 1px solid rgba(231,216,161,0.25);
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

.card h3 {
  font-size: 1.2rem;
  color: #F4E7BC;
  margin-bottom: 0.5rem;
}

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

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

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

.meta {
  font-size: 0.85rem;
  color: #D9B650;
  margin-top: 0.4rem;
}


/* =============================================
   LISTS
============================================= */

.checklist {
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #E7D8A1;
  font-weight: bold;
}

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

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


/* =============================================
   FOOTER
============================================= */

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

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

.footer a {
  text-decoration: underline;
}
