/*
  Corporate styling for Breakwall Holding's portfolio landing page.
  This stylesheet sets up the colour palette, typography and layout so
  that the site feels professional, balanced and on-brand. The design
  emphasises Breakwall Holding while presenting subsidiary brands as
  curated entries within the portfolio.
*/

:root {
  --navy: #0b2c44;      /* Deep blue inspired by Lake Michigan */
  --marigold: #f3a600;  /* Bright marigold accent */
  --bg: #faf9f7;        /* Off‑white background for warmth */
  --ink: #1b1f23;       /* Dark ink for general copy */
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* Header containing the Breakwall Holding logo */
.header {
  padding: 16px 20px;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  height: 48px;
  width: 48px;
}
.wordmark .breakwall {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 20px;
  line-height: 1;
}
.wordmark .holding {
  color: var(--navy);
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1;
}

/* Hero tagline */
.hero {
  text-align: center;
  padding: 40px 20px 20px;
}
.tagline {
  font-size: 36px;
  color: var(--navy);
  margin: 0;
  font-weight: 700;
}

/* Brand tiles section */
.brands {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 24px;
  flex-wrap: wrap;
}
.brand-tile {
  text-align: center;
  flex: 1 1 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.brand-logo {
  width: 100%;
  max-width: 200px;
  max-height: 140px;
  object-fit: contain;
  border-radius: 4px;
}
.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.brand-positioning {
  font-size: 16px;
  font-weight: 500;
  color: var(--marigold);
}
/* Divider line used between brand tiles on wider screens */
.brand-divider {
  display: none;
  width: 2px;
  background: var(--marigold);
  flex-shrink: 0;
  align-self: stretch;
}

/* Footer styling */
.footer {
  background: var(--navy);
  color: #ffffff;
  padding: 20px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}
.footer-nav a:hover {
  opacity: 0.8;
}
.investor-access {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.investor-access input {
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #999;
  background: #e6e6e6;
  color: #666;
  width: 180px;
  font-size: 14px;
  cursor: not-allowed;
}
.investor-access button {
  background: #d0d0d0;
  border: 1px solid #999;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: not-allowed;
  color: #666;
  font-size: 14px;
}

/* Show divider on medium and larger screens */
@media (min-width: 600px) {
  .brand-divider {
    display: block;
  }
  .brands {
    flex-wrap: nowrap;
  }
}

/* Responsive adjustments for small mobile screens */
@media (max-width: 480px) {
  /* Reduce tagline size and spacing on small screens so it fits without overwhelming */
  .tagline {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .hero {
    padding: 30px 10px 10px;
  }
  /* Compress brand area on mobile for better visual hierarchy */
  .brands {
    flex-direction: column;
    padding: 30px 10px;
    gap: 30px;
  }
  .brand-tile {
    max-width: 100%;
  }
  .brand-logo {
    max-width: 120px;
    max-height: 100px;
    margin-bottom: 6px;
  }
  .brand-name {
    font-size: 14px;
  }
  .brand-positioning {
    font-size: 12px;
  }
  /* Adjust navigation layout on small screens */
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  /* Stack investor inputs vertically on small screens */
  .investor-access {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .investor-access input {
    width: 100%;
    max-width: 200px;
  }
  .investor-access button {
    width: fit-content;
  }
  /* Scale wordmark text down slightly */
  .wordmark .breakwall {
    font-size: 18px;
  }
  .wordmark .holding {
    font-size: 10px;
  }
}