/* Flamants Roses Palace — public landing page */

:root {
  --land-bg: #F9F6F0;
  --land-bg-2: #F3EDE3;
  --land-text: #3A2E1C;
  --land-text-soft: #5C4A3A;
  --land-muted: #8A7355;
  --land-gold: #B8943C;
  --land-gold-light: #D4B56A;
  --land-border: rgba(184, 148, 60, 0.22);
  --land-card: rgba(255, 255, 255, 0.82);
  --land-shadow: 0 12px 40px rgba(58, 46, 28, 0.08);
  --land-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--land-bg);
  color: var(--land-text-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.land-page { overflow-x: hidden; }

.land-cinzel { font-family: Cinzel, Georgia, serif; }

.land-gold-text {
  background: linear-gradient(135deg, #8B6914, #C9A84C, #E8C86A, #C9A84C);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: land-shimmer 6s linear infinite;
}

@keyframes land-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes land-fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes land-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes land-scaleIn {
  from { transform: scale(0.88); }
  to { transform: scale(1); }
}

@keyframes land-lineGrow {
  from { width: 0; opacity: 0; }
  to { width: 88px; opacity: 1; }
}

@keyframes land-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes land-sparkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 0.55; transform: scale(1.1); }
}

@keyframes land-heroGlow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.05); }
}

/* Scroll reveals — always visible; land-visible keeps scroll-in transition */
.land-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.land-reveal.land-visible {
  opacity: 1;
  transform: translateY(0);
}

html.land-intro-done .land-reveal {
  opacity: 1;
  transform: translateY(0);
}

.land-reveal-delay-1 { transition-delay: 0.1s; }
.land-reveal-delay-2 { transition-delay: 0.2s; }
.land-reveal-delay-3 { transition-delay: 0.3s; }

/* Nav */
.land-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.land-nav-scrolled {
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--land-border);
  padding-top: 10px;
  padding-bottom: 10px;
}

.land-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--land-text);
}

.land-nav-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.land-nav-brand span {
  font-family: Cinzel, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--land-gold);
}

.land-nav-links {
  display: none;
  gap: 28px;
}

.land-nav-links a {
  font-family: Cinzel, serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--land-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.land-nav-links a:hover { color: var(--land-gold); }

.land-nav-cta {
  font-family: Cinzel, serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(184, 148, 60, 0.45);
  background: linear-gradient(135deg, rgba(184, 148, 60, 0.15), rgba(184, 148, 60, 0.28));
  color: var(--land-text);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.land-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 148, 60, 0.2);
}

@media (min-width: 860px) {
  .land-nav-links { display: flex; }
}

/* Hero */
.land-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.land-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 148, 60, 0.12), transparent 70%),
    linear-gradient(180deg, var(--land-bg-2) 0%, var(--land-bg) 55%, var(--land-bg) 100%);
  z-index: 0;
}

.land-hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: land-heroGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.land-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--land-gold-light);
  animation: land-sparkle 4s ease-in-out infinite;
  pointer-events: none;
}

.land-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.land-hero-logo {
  width: 108px;
  height: 108px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(184, 148, 60, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08), 0 0 0 6px rgba(184, 148, 60, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
}

html.land-animate .land-hero-logo {
  animation: land-scaleIn 1.1s ease both;
}

.land-hero-logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.land-hero-line {
  height: 1px;
  background: var(--land-gold);
  margin: 0 auto 20px;
  width: 88px;
  opacity: 1;
}

html.land-animate .land-hero-line {
  width: 0;
  opacity: 0;
  animation: land-lineGrow 1s ease 0.35s forwards;
}

html.land-animate .land-hero-eyebrow {
  animation: land-fadeUp 0.9s ease 0.5s both;
}

html.land-intro-done .land-hero-eyebrow,
html.land-intro-done .land-hero-title,
html.land-intro-done .land-hero-sub,
html.land-intro-done .land-hero-actions {
  opacity: 1;
  transform: none;
}

.land-hero-eyebrow {
  font-family: Cinzel, serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--land-gold);
  margin: 0 0 16px;
}

html.land-animate .land-hero-title {
  animation: land-fadeUp 1s ease 0.65s both;
}

.land-hero-title {
  font-family: Cinzel, serif;
  font-size: clamp(28px, 6vw, 46px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--land-text);
  text-transform: uppercase;
}

html.land-animate .land-hero-sub {
  animation: land-fadeUp 1s ease 0.8s both;
}

.land-hero-sub {
  font-size: clamp(18px, 3vw, 22px);
  font-style: italic;
  color: var(--land-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

html.land-animate .land-hero-actions {
  animation: land-fadeUp 1s ease 0.95s both;
}

.land-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.land-btn {
  font-family: Cinzel, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.land-btn-primary {
  background: linear-gradient(135deg, #A88432, #C9A84C);
  color: #fff;
  border: none;
  box-shadow: 0 8px 28px rgba(184, 148, 60, 0.35);
}

.land-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 148, 60, 0.42);
}

.land-btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--land-text);
  border: 1px solid var(--land-border);
}

.land-btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 148, 60, 0.5);
}

.land-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--land-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: Cinzel, serif;
  animation: land-float 3s ease-in-out infinite;
  opacity: 0.7;
}

.land-scroll-cue span:last-child {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--land-gold), transparent);
}

/* Sections */
.land-section {
  padding: 88px 24px;
}

.land-section-alt {
  background: var(--land-bg-2);
}

.land-container {
  max-width: var(--land-max);
  margin: 0 auto;
}

.land-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.land-section-label {
  font-family: Cinzel, serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--land-gold);
  margin: 0 0 12px;
}

.land-section-title {
  font-family: Cinzel, serif;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--land-text);
  margin: 0 0 14px;
  font-weight: 600;
}

.land-section-desc {
  margin: 0;
  font-size: 19px;
  color: var(--land-muted);
  font-style: italic;
}

.land-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 200px;
  margin: 0 auto 20px;
}

.land-divider::before,
.land-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(184, 148, 60, 0.35);
}

.land-divider-diamond {
  width: 7px;
  height: 7px;
  background: var(--land-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* About */
.land-about-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .land-about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.land-about-text p {
  margin: 0 0 16px;
  font-size: 19px;
}

.land-about-text p:last-child { margin-bottom: 0; }

.land-about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--land-shadow);
  border: 1px solid var(--land-border);
  aspect-ratio: 4 / 3;
}

.land-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.land-about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58, 46, 28, 0.25));
  pointer-events: none;
}

/* Event cards */
.land-events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.land-event-card {
  background: var(--land-card);
  border: 1px solid var(--land-border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.land-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--land-shadow);
}

.land-event-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.land-event-card h3 {
  font-family: Cinzel, serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--land-text);
  margin: 0 0 8px;
  font-weight: 600;
}

.land-event-card p {
  margin: 0;
  font-size: 15px;
  color: var(--land-muted);
  line-height: 1.45;
}

/* Features */
.land-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.land-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--land-card);
  border-radius: 14px;
  border: 1px solid var(--land-border);
}

.land-feature-num {
  font-family: Cinzel, serif;
  font-size: 22px;
  color: var(--land-gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.land-feature h3 {
  font-family: Cinzel, serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--land-text);
}

.land-feature p {
  margin: 0;
  font-size: 16px;
  color: var(--land-muted);
}

/* Steps */
.land-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: land-step;
}

.land-step {
  text-align: center;
  position: relative;
}

.land-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--land-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Cinzel, serif;
  font-size: 16px;
  color: var(--land-gold);
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(184, 148, 60, 0.12);
}

.land-step h3 {
  font-family: Cinzel, serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--land-text);
}

.land-step p {
  margin: 0;
  font-size: 16px;
  color: var(--land-muted);
}

/* Contact */
.land-contact-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 800px) {
  .land-contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.land-contact-card {
  background: var(--land-card);
  border: 1px solid var(--land-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--land-shadow);
}

.land-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.land-contact-item:last-child { margin-bottom: 0; }

.land-contact-item strong {
  font-family: Cinzel, serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--land-gold);
  display: block;
  margin-bottom: 4px;
}

.land-contact-item a {
  color: var(--land-text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.land-contact-item a:hover {
  color: var(--land-gold);
  border-bottom-color: var(--land-gold);
}

.land-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: Cinzel, serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--land-gold);
  text-decoration: none;
}

.land-map-link:hover { text-decoration: underline; }

/* CTA band */
.land-cta-band {
  text-align: center;
  padding: 72px 24px;
  background:
    linear-gradient(135deg, rgba(184, 148, 60, 0.08), rgba(184, 148, 60, 0.02)),
    var(--land-bg-2);
  border-top: 1px solid var(--land-border);
  border-bottom: 1px solid var(--land-border);
}

.land-cta-band h2 {
  font-family: Cinzel, serif;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--land-text);
}

.land-cta-band p {
  margin: 0 0 28px;
  font-size: 19px;
  font-style: italic;
  color: var(--land-muted);
}

/* Footer */
.land-footer {
  padding: 40px 24px 32px;
  text-align: center;
  color: var(--land-muted);
  font-size: 14px;
}

.land-footer-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  opacity: 0.85;
}

.land-footer-name {
  font-family: Cinzel, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--land-gold);
  margin-bottom: 16px;
}

.land-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.land-footer-links a {
  font-family: Cinzel, serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--land-muted);
  text-decoration: none;
}

.land-footer-links a:hover { color: var(--land-gold); }

.land-footer-copy {
  font-size: 12px;
  opacity: 0.75;
}

/* Public availability page */
.land-avail-section {
  padding-top: 120px;
  min-height: 100vh;
}

.land-avail-card {
  background: var(--land-card);
  border: 1px solid var(--land-border);
  border-radius: 16px;
  padding: 28px 24px 32px;
  box-shadow: var(--land-shadow);
}

.avail-calendar-block {
  width: 100%;
}

.avail-calendar-block label.req {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 10px;
  font-size: 12px;
  color: #7A6555;
  margin: 0 0 10px;
}

.avail-calendar-block .lbl-fr {
  display: inline;
  font-size: 12px;
  color: #7A6555;
}

.avail-calendar-block .lbl-ar {
  display: inline;
  font-family: "Noto Sans Arabic", sans-serif;
  font-size: 11px;
  color: #9A8474;
  direction: rtl;
  text-align: right;
  margin-left: auto;
}

.avail-calendar-block .req > .lbl-fr::after {
  content: ' *';
  color: #B8943C;
}

/* Date picker — same styles as reservation, bundled with landing layout */
.avail-calendar-block .date-picker {
  border: 1px solid #E0D5C8;
  border-radius: 6px;
  padding: 12px;
  background: #FDFBF7;
}

.avail-calendar-block .date-picker-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.avail-calendar-block .date-picker-title {
  font-family: Cinzel, Georgia, serif;
  font-size: 13px;
  color: #B8943C;
  letter-spacing: .06em;
}

.avail-calendar-block .date-nav {
  border: 1px solid #E0D5C8;
  background: #fff;
  color: #5C4A3A;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  font-family: inherit;
}

.avail-calendar-block .date-picker-weekdays,
.avail-calendar-block .date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.avail-calendar-block .date-picker-weekdays span {
  font-size: 11px;
  color: #9A8474;
  padding: 4px 0;
}

.avail-calendar-block .date-picker-days .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 4px;
}

.avail-calendar-block .date-picker-days .empty {
  visibility: hidden;
}

.avail-calendar-block .date-picker-days .busy {
  color: #C4B8A8;
  background: #F3EEE6;
  cursor: not-allowed;
}

.avail-calendar-block .date-picker-days button.available {
  border: 1px solid #C9A962;
  background: #F5F0E3;
  color: #5C4A3A;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.avail-calendar-block .date-picker-days button.available:hover {
  background: #EBE0C8;
}

.avail-calendar-block .date-picker-days button.selected {
  background: #B8943C;
  color: #fff;
  border-color: #B8943C;
}

.avail-calendar-block .hint {
  font-size: 11px;
  color: #9A8474;
  margin-top: 4px;
}

.avail-calendar-block .date-selected {
  margin: 8px 0 0;
  font-size: 13px;
  color: #5C4A3A;
  font-weight: 500;
}

.land-avail-status {
  text-align: center;
  color: var(--land-muted);
  font-style: italic;
  margin: 0;
}

.land-avail-list-title {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--land-gold);
  margin: 24px 0 14px;
}

.land-avail-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.land-avail-list li {
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--land-border);
  font-size: 16px;
  color: var(--land-text-soft);
  text-align: center;
}

.land-avail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Navigation & page loading overlays */
.land-nav-loading,
.land-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(249, 246, 240, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.land-nav-loading[hidden],
.land-loading-overlay[hidden] {
  display: none !important;
}

.land-loading-box {
  text-align: center;
  background: var(--land-card);
  border: 1px solid var(--land-border);
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 360px;
  width: 100%;
  box-shadow: var(--land-shadow);
}

.land-loading-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  border: 3px solid var(--land-border);
  border-top-color: var(--land-gold);
  border-radius: 50%;
  animation: land-spin 0.85s linear infinite;
}

@keyframes land-spin {
  to { transform: rotate(360deg); }
}

.land-loading-title {
  font-family: Cinzel, serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--land-text);
  margin: 0 0 8px;
}

.land-loading-sub {
  font-size: 14px;
  color: var(--land-muted);
  margin: 0;
  font-style: italic;
}
