/* ============================================================
   LANDING PAGE — Anglo Eastern Hotel Director Daily Report
   Tone: Luxury / Refined — Cormorant Garamond + Manrope
   Palette: Deep Navy, Warm Gold, Ivory
   ============================================================ */

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

:root {
  --navy:      #0D1B2A;
  --navy-mid:  #1A2E45;
  --navy-light:#243B55;
  --gold:      #C9A84C;
  --gold-light:#E8C97A;
  --gold-pale: #F5E9C8;
  --ivory:     #FAF7F2;
  --ivory-dark:#F0EBE0;
  --white:     #FFFFFF;
  --cape:      #8B4513;
  --cape-light:#D4896A;
  --hut:       #2E5090;
  --hut-light: #6B8EC4;
  --crew:      #2D6A4F;
  --crew-light:#74C69D;
  --text-dark: #1A1A2E;
  --text-mid:  #3D3D5C;
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.35);
  --shadow-md: 0 8px 30px rgba(13,27,42,0.2);
  --shadow-sm: 0 3px 12px rgba(13,27,42,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--navy);
  color: var(--ivory);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── Background Watermark ── */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,46,69,0.8) 0%, transparent 50%),
    linear-gradient(160deg, #0D1B2A 0%, #1A2E45 50%, #0D1B2A 100%);
  z-index: 0;
}

/* Full-bleed logo watermark — covers entire viewport */
.logo-watermark {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.logo-watermark img {
  width: 70vw;
  max-width: 900px;
  object-fit: contain;
  opacity: 0.07;
  filter: invert(1) brightness(2) saturate(0);
  transform: scale(1.0);
}

/* ── Layout ── */
.landing-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* ── Header ── */
.landing-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.ae-logo-top {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ae-logo-top img {
  height: 56px;
  filter: none;
  opacity: 1;
  border-radius: 4px;
}

.ae-logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--ivory);
  opacity: 0.9;
}

.header-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.header-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

.header-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

.header-main em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.header-date {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(250,247,242,0.5);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── Intro ── */
.landing-intro {
  text-align: center;
  max-width: 520px;
}

.landing-intro p {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(250,247,242,0.6);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ── Venue Cards ── */
.venue-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.venue-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 36px 28px 32px;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}

.venue-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.venue-card:hover::before { opacity: 1; }

/* Cape Denison */
.cape-card { border-top: 3px solid var(--cape-light); }
.cape-card::before { background: linear-gradient(135deg, rgba(139,69,19,0.12), transparent); }
.cape-card .venue-card-icon { color: var(--cape-light); }

/* The Hut */
.hut-card { border-top: 3px solid var(--hut-light); }
.hut-card::before { background: linear-gradient(135deg, rgba(46,80,144,0.15), transparent); }
.hut-card .venue-card-icon { color: var(--hut-light); }

/* Crew Mess */
.crew-card { border-top: 3px solid var(--crew-light); }
.crew-card::before { background: linear-gradient(135deg, rgba(45,106,79,0.15), transparent); }
.crew-card .venue-card-icon { color: var(--crew-light); }

.venue-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px;
}

.venue-card-icon svg {
  width: 100%;
  height: 100%;
}

.venue-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.venue-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
}

.venue-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.venue-card-desc {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.55);
  line-height: 1.5;
  font-weight: 400;
  margin-top: 4px;
}

.venue-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.buffet-tag  { background: rgba(201,168,76,0.15); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); }
.alacarte-tag{ background: rgba(107,142,196,0.15); color: var(--hut-light); border: 1px solid rgba(107,142,196,0.3); }
.crew-tag    { background: rgba(116,198,157,0.15); color: var(--crew-light); border: 1px solid rgba(116,198,157,0.3); }

.venue-card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.2rem;
  color: rgba(250,247,242,0.25);
  transition: color 0.3s, transform 0.3s;
}

.venue-card:hover .venue-card-arrow {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* ── Full Report CTA ── */
.full-report-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.full-report-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.full-report-btn svg {
  width: 18px;
  height: 18px;
}

.full-report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}

.cta-sub {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.4);
  letter-spacing: 0.05em;
}

/* ── Platform Action Row ── */
.platform-action-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 1.5px solid transparent;
}

.platform-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.submit-action {
  background: linear-gradient(135deg, #2D6A4F, #1B4332);
  color: #A7F3D0;
  border-color: rgba(167,243,208,0.2);
}

.view-action {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.35);
}

.view-action:hover { background: rgba(201,168,76,0.25); }

.setup-action {
  background: rgba(255,255,255,0.07);
  color: rgba(250,247,242,0.65);
  border-color: rgba(255,255,255,0.15);
}

.setup-action:hover {
  background: rgba(255,255,255,0.12);
  color: var(--ivory);
}

/* ── Footer ── */
.landing-footer {
  font-size: 0.72rem;
  color: rgba(250,247,242,0.3);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot { opacity: 0.4; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .venue-cards { grid-template-columns: 1fr; max-width: 480px; }
  .landing-wrapper { padding: 40px 20px 60px; gap: 40px; }
}

@media (max-width: 600px) {
  .header-main { font-size: 2.4rem; }
  .venue-card { padding: 28px 22px 26px; }
}