/* =========================================================================
   Maroon Door Communications — "Coming Soon" landing page
   Rebuilt on Bootstrap 5. The original background photo (bg-img-1.jpg)
   was a flat maroon fill (#4f071d), so it's used here as a CSS color
   instead of an image — same look, zero extra weight.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Coustard:400,900');

:root {
  --mdc-maroon: #4f071d;
  --mdc-accent: #ffa800;
  --font-heading: 'Coustard', serif;
  --font-body: 'Open Sans', sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #cfc2c6;
  background-color: var(--mdc-maroon);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.5px;
}

a {
  color: #cfc2c6;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------------------------------------------------------------------
   Landing layout
   --------------------------------------------------------------------- */
.landing {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Social nav — top-left, stacked icon strip */
.social-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.social-nav ul li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1.75rem 0.85rem 0.6rem;
  margin: 1px;
  opacity: 0.6;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.social-nav ul li a {
  color: #fff;
  font-size: 0.95rem;
}

.social-nav ul li:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.16);
}

/* Logo — bottom-left */
.landing-logo {
  position: absolute;
  left: 2.5rem;
  bottom: 2.5rem;
  z-index: 20;
  width: 160px;
}

.landing-logo img {
  width: 100%;
  height: auto;
}

/* Main nav — bottom-right, Home / Contact pill switcher */
.landing-nav {
  position: absolute;
  right: 2.5rem;
  bottom: 2.75rem;
  z-index: 20;
}

.landing-nav .nav-pills {
  gap: 0;
}

.landing-nav .nav-link {
  background: none;
  border: 0;
  border-left: 1px solid #6a6a6a;
  border-radius: 0;
  color: #b7b7b7;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  padding: 0 0.9rem;
}

.landing-nav .nav-item:first-child .nav-link {
  border-left: 0;
}

.landing-nav .nav-link.active,
.landing-nav .nav-link:hover {
  background: none;
  color: var(--mdc-accent);
}

/* Content panes — centered-left message block */
.landing-content {
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translateY(-60%);
  z-index: 10;
  max-width: 620px;
  padding-right: 1.5rem;
}

.landing-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.landing-content h2 {
  font-size: 1.65rem;
  line-height: 1.35;
  color: #d9c8ce;
  margin-bottom: 1.25rem;
}

.landing-content p {
  font-size: 1rem;
  color: #cfc2c6;
  margin-bottom: 0.4rem;
}

.landing-content a {
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 767.98px) {
  .landing-content {
    left: 1.25rem;
    right: 1.25rem;
    max-width: none;
    padding-right: 1.25rem;
  }
  .landing-content h1 { font-size: 2.4rem; }
  .landing-content h2 { font-size: 1.2rem; }
  .landing-logo { left: 1.25rem; bottom: 1.25rem; width: 120px; }
  .landing-nav { right: 1.25rem; bottom: 1.5rem; }
  .landing-nav .nav-link { font-size: 0.75rem; padding: 0 0.6rem; }
}
