/**
 * Launching / Under construction page — standalone styles.
 * Use this file only for launchingpage.html; upload separately from css/custom.css.
 * Colors aligned with main site: primary #94001a, secondary #bea15a.
 */

:root {
  --lp-primary: #94001a;
  --lp-secondary: #bea15a;
  --lp-bg: #f8f9fa;
  --lp-text: #212529;
  --lp-muted: #6c757d;
}

.lp-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--lp-text);
  background-color: var(--lp-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--lp-primary);
  color: #fff;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.lp-header {
  background: #fff;
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 0;
}
.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--lp-text);
  font-weight: 600;
  font-size: 1.1rem;
}
.lp-logo:focus-visible {
  outline: 2px solid var(--lp-primary);
  outline-offset: 2px;
}
.lp-logo-img {
  border-radius: 6px;
  object-fit: cover;
}
.lp-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.lp-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.lp-contact-item:hover,
.lp-contact-item:focus {
  color: var(--lp-primary);
}
.lp-contact-item:focus-visible {
  outline: 2px solid var(--lp-primary);
  outline-offset: 2px;
}
.lp-contact-item i {
  color: var(--lp-secondary);
}

/* Main */
.lp-main {
  flex: 1;
}

/* Intro: About + Why */
.lp-intro {
  background: #fff;
}
.lp-about-card {
  padding: 1.5rem 0;
  max-width: 100%;
}
.lp-about-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lp-primary);
  margin-bottom: 1rem;
}
.lp-about-lead {
  color: var(--lp-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.lp-upcoming {
  padding: 1rem 1.25rem;
  background: var(--lp-bg);
  border-left: 4px solid var(--lp-secondary);
  border-radius: 0 8px 8px 0;
}
.lp-upcoming-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-primary);
  margin-bottom: 0.5rem;
}
.lp-upcoming-text {
  font-size: 0.95rem;
  color: var(--lp-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Why choose us card */
.lp-why-card {
  background: linear-gradient(135deg, var(--lp-primary) 0%, #6d0014 100%);
  color: #fff;
  padding: 1.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(148, 0, 26, 0.2);
}
.lp-why-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.lp-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-why-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.lp-why-list li i {
  color: var(--lp-secondary);
  width: 1.25rem;
  flex-shrink: 0;
}

/* Services */
.lp-services {
  background: var(--lp-bg);
}
.lp-services-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-primary);
  margin-bottom: 1.25rem;
}
.lp-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-service-item {
  display: block;
  padding: 0.6rem 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  color: var(--lp-text);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-service-item:hover {
  border-color: var(--lp-secondary);
  box-shadow: 0 2px 8px rgba(190, 161, 90, 0.15);
}

/* Footer */
.lp-footer {
  background: var(--lp-primary);
  color: #fff;
  padding: 1.25rem 0;
  margin-top: auto;
}
.lp-footer-copy {
  font-size: 0.875rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991.98px) {
  .lp-about-title {
    font-size: 1.5rem;
  }
  .lp-why-card {
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .lp-contact-item span {
    font-size: 0.85rem;
  }
}
