/*
  StayLume Premium Site – Stylesheet
  ------------------------------------------------------------
  This stylesheet defines a restrained, luxury‑oriented design system
  for the StayLume website. It leverages a dark palette with gold
  accents, high‑contrast typography, and generous but controlled
  spacing. The layout adapts gracefully to smaller screens.
*/

:root {
  /* Color palette */
  --dark-bg: #071a2c;
  --medium-bg: #0e2540;
  --light-bg: #152b49;
  --primary-color: #b4975a;
  --secondary-color: #987441;
  --text-primary: #e2e6ee;
  --text-secondary: #b8c4d9;
  --text-muted: #6e7a8c;
}

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

html,
body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background-color: var(--dark-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--primary-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: rgba(7, 26, 44, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.brand-logo {
  /* Increase the logo size in the header for added prominence */
  height: 64px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-primary {
  font-family: 'Playfair Display', serif;
  /* Slightly larger brand name for stronger visibility */
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}
.brand-secondary {
  /* Increase the size of the secondary line to balance the primary */
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav a:hover {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  gap: 0.8rem;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}
.button-primary {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}
.button-primary:hover {
  background-color: var(--secondary-color);
}
.button-secondary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}
.button-secondary:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}

/* Hero */
.hero {
  text-align: center;
  /* Adjusted padding to bring content higher now that the central logo is removed */
  padding: 5rem 0 3.5rem;
}

/* Large logo displayed in the hero section */
/* Large logo displayed in the hero section */
.hero-logo {
  /* Increase the base logo size to create a stronger brand statement */
  width: 200px;
  height: auto;
  margin: 0 auto 1.8rem;
  display: block;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .hero-logo {
    /* Enlarge the logo on larger screens for added prominence */
    width: 320px;
    margin-bottom: 2.2rem;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Sections */
.section {
  /* Reduce default section spacing to tighten the flow between sections. */
  padding: 3.5rem 0;
}
.section.dark {
  background-color: var(--dark-bg);
}
.section.medium {
  background-color: var(--medium-bg);
}
.section.light {
  background-color: var(--light-bg);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  text-align: center;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: center;
}

/* Proof section */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.placeholder-logo {
  background-color: rgba(180, 151, 90, 0.15);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Challenges list */
.list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
}
.list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.list li::before {
  content: '';
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Difference / feature grid */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Challenges content wrapper centres heading and list within the section */
/* Constrain the challenges section to a slightly narrower width for better alignment */
.challenges-content {
  max-width: 700px;
  margin: 0 auto;
}


/* Hotel Staffing Challenges (icon grid) */
#challenges .challenges-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}
#challenges .section-title,
#challenges .section-subtitle {
  text-align: center;
}

#challenges .challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
#challenges .challenge-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.15rem;
  text-align: left;
}
#challenges .challenge-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
#challenges .challenge-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-color);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#challenges .challenge-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.45rem;
}
#challenges .challenge-text {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

#challenges .challenge-bridge {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  #challenges .challenge-grid {
    grid-template-columns: 1fr;
  }
  #challenges .challenge-card {
    padding: 1.15rem;
  }
}


.feature {
  background-color: var(--medium-bg);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.feature-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-item {
  background-color: var(--medium-bg);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.service-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Process / Timeline */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.step {
  flex: 1 1 200px;
  background-color: var(--medium-bg);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.step-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* About */
.about .section-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Forms */
.request-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--medium-bg);
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group.full-width {
  flex: 1 1 100%;
}
.form-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.7rem;
  border-radius: 4px;
  font-size: 1rem;
}
.form-group textarea {
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(180, 151, 90, 0.4);
}
.submit-button {
  margin-top: 1rem;
  width: 100%;
}

.form-status {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.35;
  white-space: pre-line;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(46, 204, 113, 0.10);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: #d7ffe8;
}
.form-status.error {
  display: block;
  background: rgba(231, 76, 60, 0.10);
  border: 1px solid rgba(231, 76, 60, 0.25);
  color: #ffd6d1;
}
.schedule-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.schedule-note a {
  color: var(--primary-color);
  text-decoration: underline;
}
.schedule-note a:hover {
  color: var(--secondary-color);
}

/* Footer */
.site-footer {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  gap: 1rem;
}
.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-nav a:hover {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  /* Mobile header tightening + hero spacing so the fixed header never overlaps the hero */
  .brand-logo { height: 48px; }

  .brand-primary { font-size: 1.35rem; }
  .brand-secondary { font-size: 0.7rem; letter-spacing: 0.12rem; }

  .nav a { font-size: 0.95rem; padding: 0.45rem 0.6rem; }

  .header-actions .button { padding: 0.55rem 1rem; font-size: 0.9rem; }

  .hero { padding-top: 10.5rem; padding-right: 0; padding-left: 0; padding-bottom: 5rem; }
  .hero-title { font-size: 2.2rem; line-height: 1.15; }
  .hero-subtitle { font-size: 1rem; }

  .header-inner { flex-wrap: wrap; gap: 1rem; }
  .header-actions { display: none; }
  .timeline { flex-direction: column; }
}

/* Hero authority line */
.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.35rem;
}

/* Process footnote */
.process-footnote {
  max-width: 820px;
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--text-secondary);
}

/* About section readability */
#about .about-lead {
  max-width: 820px;
  margin: 0.25rem auto 1rem;
  text-align: center;
  color: var(--text-secondary);
}
#about .section-text {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
