/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Color Palette Variables - Based on palette2 */
:root {
  --slate-blue: #5F8A96;
  --light-gray: #D1D1D1;
  --medium-gray: #8A8A8A;
  --dark-gray: #3D3D3D;
  --black: #000000;
  --white: #FFFFFF;

  /* Additional palette colors */
  --teal-dark: #215974;
  --teal-medium: #699AA8;
  --gray-light: #DFE0E5;
  --slate-medium: #72798A;
  --slate-dark: #555A68;
}

/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--black);
  overflow-x: hidden;
}

.landing-page {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.25rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo a {
  font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.navbar-logo a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-title {
  font-size: 5rem;
  font-weight: 200;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
  max-width: 1000px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mission Section - Anduril Style */
.mission {
  padding: 10rem 0;
  background-color: #D1D1D1;
  position: relative;
}

.mission-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.mission-header {
  margin-bottom: 4rem;
}

.mission-label {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal-medium);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

.mission-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.mission-left {
  padding-right: 2rem;
}

.mission-headline {
  font-size: 3rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

.mission-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-description {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.8;
  margin: 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Target Market Section - Hero Style */
.target-market {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.target-market-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("/images/warehouse_talking2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.target-market-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.target-market-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8rem 0 6rem;
  max-width: 1600px;
  margin: 0 0 0 0;
}

.target-market-inner {
  max-width: 650px;
}

.target-market-label {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal-medium);
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 1.5rem 0;
}

.target-market-headline {
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.target-market-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--teal-medium);
  margin-bottom: 2rem;
  opacity: 0.95;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  padding: 4rem 0;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-contact {
  margin: 0;
}

.footer-contact a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--teal-medium);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-light);
  opacity: 0.6;
  margin: 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 1.25rem 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .mission-container {
    padding: 0 3rem;
  }

  .mission-content-wrapper {
    gap: 4rem;
  }

  .mission-headline {
    font-size: 2.5rem;
  }

  .target-market-headline {
    font-size: 2.5rem;
  }

  .target-market-content {
    padding: 0 3rem;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 1rem 2rem;
  }

  .navbar-logo a {
    font-size: 1.25rem;
  }

  .footer-brand {
    font-size: 1.25rem;
  }

  .footer-contact a {
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .hero-content {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .mission {
    padding: 6rem 0;
  }

  .mission-container {
    padding: 0 2rem;
  }

  .mission-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-left {
    padding-right: 0;
  }

  .mission-headline {
    font-size: 2rem;
  }

  .mission-description {
    font-size: 1rem;
  }

  .target-market-headline {
    font-size: 2rem;
  }

  .target-market-text {
    font-size: 1rem;
  }

  .target-market-content {
    padding: 0 2rem;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 1rem 1.5rem;
  }

  .navbar-logo a {
    font-size: 1.125rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .mission {
    padding: 4rem 0;
  }

  .mission-container {
    padding: 0 1.5rem;
  }

  .mission-header {
    margin-bottom: 2.5rem;
  }

  .mission-content-wrapper {
    gap: 2rem;
  }

  .mission-headline {
    font-size: 1.75rem;
  }

  .target-market-headline {
    font-size: 1.75rem;
  }

  .target-market-text {
    font-size: 1rem;
  }

  .target-market-content {
    padding: 0 1.5rem;
  }
}
