/**
 * SkyGarden - Landing Page Stylesheet
 * Luxury Rooftop & Lounge Aesthetics
 */

/* --------------------------------------------------------------------------
   1. Global Container & Layout
   -------------------------------------------------------------------------- */
.landing-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 80px;
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   2. Landing Navigation Header
   -------------------------------------------------------------------------- */
.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.landing-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.35);
}

.landing-brand-text {
  display: flex;
  flex-direction: column;
}

.landing-brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-brand-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.landing-cta-btn-sm {
  background: rgba(212, 175, 55, 0.12) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  color: var(--text-gold) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 7px 14px !important;
  border-radius: var(--radius-full) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.landing-cta-btn-sm,
.landing-cta-btn-sm *,
.landing-cta-btn-sm span,
.landing-cta-btn-sm strong {
  color: var(--text-gold) !important;
  -webkit-text-fill-color: var(--text-gold) !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.landing-cta-btn-sm:hover {
  background: var(--gold-gradient-soft) !important;
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3) !important;
  transform: translateY(-2px);
}

.landing-cta-btn-sm:hover * {
  color: var(--text-gold-light) !important;
  -webkit-text-fill-color: var(--text-gold-light) !important;
}

/* Hide top menu button on mobile/tablets since sticky floating bottom bar is used */
@media (max-width: 768px) {
  .landing-cta-btn-sm {
    display: none !important;
  }
}

@media (max-width: 580px) {
  .landing-header {
    padding: 12px 0;
    gap: 8px;
  }
  .landing-brand {
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
  }
  .landing-brand-logo {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }
  .landing-brand-title {
    font-size: 14px;
  }
  .landing-brand-sub {
    font-size: 9px;
  }
  .landing-nav-actions {
    gap: 6px;
    flex-shrink: 0;
  }
  .landing-header .header-btn.lang-toggle {
    min-width: 58px;
    height: 34px;
    font-size: 12px;
    padding: 0 8px;
  }
  .landing-header .header-btn.icon-only {
    width: 34px;
    height: 34px;
  }
}

/* --------------------------------------------------------------------------
   3. Hero Banner Showcase
   -------------------------------------------------------------------------- */
.landing-hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.landing-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.65);
  transform: scale(1.02);
  transition: transform 6s ease-out;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 18, 0.2) 0%,
    rgba(10, 14, 18, 0.75) 60%,
    rgba(10, 14, 18, 0.96) 100%
  );
}

.landing-hero-content {
  position: relative;
  z-index: 3;
  padding: 32px 24px;
  width: 100%;
  max-width: 750px;
}

.landing-hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.landing-hero-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8) !important;
}

.landing-hero-desc {
  font-size: 15px;
  color: rgba(248, 250, 252, 0.92) !important;
  -webkit-text-fill-color: rgba(248, 250, 252, 0.92) !important;
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7) !important;
}

.landing-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.landing-main-cta-btn {
  background: linear-gradient(135deg, #f6e58d 0%, #d4af37 50%, #aa820a 100%) !important;
  color: #000000 !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  transition: all var(--transition-smooth);
}

.landing-main-cta-btn,
.landing-main-cta-btn *,
.landing-main-cta-btn span,
.landing-main-cta-btn strong {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.landing-main-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
  color: #000000 !important;
}

.landing-secondary-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-smooth);
}

.landing-secondary-btn,
.landing-secondary-btn *,
.landing-secondary-btn span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700 !important;
}

.landing-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Highlight Features Section
   -------------------------------------------------------------------------- */
.landing-section-title-box {
  text-align: center;
  margin-bottom: 30px;
}

.landing-section-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.landing-section-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 45px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5. Story / About Ambiance Section
   -------------------------------------------------------------------------- */
.story-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 45px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .story-section {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 36px;
  }
}

.story-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  position: relative;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.story-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   6. Contact, Location & Hours Info Grid
   -------------------------------------------------------------------------- */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 45px;
}

.info-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-smooth);
}

.info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   7. Sticky Mobile Menu Button
   -------------------------------------------------------------------------- */
.mobile-sticky-menu-cta {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 99;
  display: flex;
  justify-content: center;
}

.mobile-sticky-btn {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, #f6e58d 0%, #d4af37 50%, #aa820a 100%) !important;
  color: #000000 !important;
  font-weight: 900 !important;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.5);
  animation: pulseGold 2.5s infinite;
}

.mobile-sticky-btn,
.mobile-sticky-btn *,
.mobile-sticky-btn span,
.mobile-sticky-btn div {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

@media (min-width: 768px) {
  .mobile-sticky-menu-cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   8. Light Theme Support for Landing Page
   -------------------------------------------------------------------------- */
[data-theme="light"] .landing-header {
  border-bottom-color: rgba(180, 140, 40, 0.2);
}

[data-theme="light"] .landing-brand-title {
  color: #0f172a !important;
}

[data-theme="light"] .landing-brand-sub {
  color: #9e7412 !important;
}

[data-theme="light"] .landing-section-heading {
  color: #0f172a !important;
}

[data-theme="light"] .landing-section-tag {
  color: #9e7412 !important;
}

[data-theme="light"] .feature-card {
  background: #ffffff !important;
  border-color: rgba(180, 140, 40, 0.22) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .feature-title {
  color: #0f172a !important;
}

[data-theme="light"] .feature-desc {
  color: #475569 !important;
}

[data-theme="light"] .story-section {
  background: #ffffff !important;
  border-color: rgba(180, 140, 40, 0.25) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .story-title {
  color: #0f172a !important;
}

[data-theme="light"] .story-text {
  color: #334155 !important;
}

[data-theme="light"] .info-card {
  background: #ffffff !important;
  border: 1px solid rgba(180, 140, 40, 0.25) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .info-card:hover {
  border-color: var(--gold-primary) !important;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.15) !important;
}

[data-theme="light"] .info-label {
  color: #64748b !important;
}

[data-theme="light"] .info-value {
  color: #0f172a !important;
}

[data-theme="light"] .landing-cta-btn-sm {
  background: rgba(180, 140, 40, 0.1) !important;
  border-color: rgba(180, 140, 40, 0.4) !important;
  color: #9e7412 !important;
}

[data-theme="light"] .landing-cta-btn-sm,
[data-theme="light"] .landing-cta-btn-sm * {
  color: #9e7412 !important;
  -webkit-text-fill-color: #9e7412 !important;
}

