/* ============================================
   Terra Lanna TRAVEL — BRAND CSS
   Lanna patterns, SVG icons, gold accents
   ============================================ */

/* ============================================================
   SVG ICON SYSTEM
   ============================================================ */
.svg-icon {
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Hero quad icons */
.hero-quad-icon.svg-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 10px;
  display: block;
  color: rgba(240, 240, 255, 0.9);
  stroke-width: 1.25;
}

/* Farm activity icons */
#page-farm .activity-svg-icon {
  width: 2.25rem !important;
  height: 2.25rem !important;
  display: block !important;
  margin: 0 auto 1.1rem !important;
  color: #C9A84C;
  stroke: #C9A84C;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contact icons */
.contact-svg-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #C9A84C;
  fill: none;
  stroke: #C9A84C;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   LANNA DIVIDER
   Central diamond lotus motif with extending lines
   ============================================================ */
.lanna-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.25rem 1rem;
  color: #C9A84C;
  opacity: 0.6;
  overflow: hidden;
  pointer-events: none;
}

.lanna-divider svg {
  width: 100%;
  max-width: 640px;
  height: 32px;
  overflow: visible;
}

/* ============================================================
   HEADER GOLD BAND
   Thin gradient line below header
   ============================================================ */
.lanna-header-band {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.15) 10%,
    rgba(201, 168, 76, 0.5)  50%,
    rgba(201, 168, 76, 0.15) 90%,
    transparent 100%
  );
  flex-shrink: 0;
}

/* ============================================================
   FOOTER LANNA BAND
   ============================================================ */
.lanna-footer-band {
  width: 100%;
  margin-bottom: 2rem;
}

/* ============================================================
   HERO QUAD — LANNA CORNER ACCENTS
   L-shaped gold corners that appear on hover
   ============================================================ */
.hero-quad-lanna-tl,
.hero-quad-lanna-br {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}

.hero-quad-lanna-tl {
  top: 14px;
  left: 14px;
  border-top: 1.5px solid rgba(201, 168, 76, 0.8);
  border-left: 1.5px solid rgba(201, 168, 76, 0.8);
}

.hero-quad-lanna-br {
  bottom: 14px;
  right: 14px;
  border-bottom: 1.5px solid rgba(201, 168, 76, 0.8);
  border-right: 1.5px solid rgba(201, 168, 76, 0.8);
}

.hero-quad:hover .hero-quad-lanna-tl,
.hero-quad:hover .hero-quad-lanna-br {
  opacity: 1;
}

/* ============================================================
   CARD — LANNA GOLD ACCENT
   Subtle gold inner glow on hover (complements existing blue border)
   ============================================================ */
.card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
              inset 0 0 0 1px rgba(201, 168, 76, 0.2);
}

/* ============================================================
   LANNA WATERMARK PATTERN
   Repeating diamond-lotus geometry — very subtle background texture
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M40 5 L75 40 L40 75 L5 40 Z' fill='none' stroke='%23C9A84C' stroke-width='0.5'/><path d='M40 20 L60 40 L40 60 L20 40 Z' fill='none' stroke='%23C9A84C' stroke-width='0.5'/><line x1='40' y1='5' x2='40' y2='20' stroke='%23C9A84C' stroke-width='0.4'/><line x1='40' y1='60' x2='40' y2='75' stroke='%23C9A84C' stroke-width='0.4'/><line x1='5' y1='40' x2='20' y2='40' stroke='%23C9A84C' stroke-width='0.4'/><line x1='60' y1='40' x2='75' y2='40' stroke='%23C9A84C' stroke-width='0.4'/><circle cx='40' cy='40' r='4' fill='none' stroke='%23C9A84C' stroke-width='0.5'/><circle cx='40' cy='0' r='1.5' fill='%23C9A84C'/><circle cx='40' cy='80' r='1.5' fill='%23C9A84C'/><circle cx='0' cy='40' r='1.5' fill='%23C9A84C'/><circle cx='80' cy='40' r='1.5' fill='%23C9A84C'/></svg>");
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.045;
}
