/* Global Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b132b; /* Deep Dark Blue Background matching main site */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-bottom: 40px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-dark);
    width: 100%; 
}

.logo {
    font-weight: bold;
    letter-spacing: 1px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-right: 25px;
    font-size: 0.95rem;
}

.btn-buy {
    background-color: var(--accent-yellow);
    border: none;
    color: #000;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-buy:hover {
    opacity: 0.9;
}

/* Two-Column Main Layout Grid */
.info-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin-top: 40px;
    padding: 0 20px;
}

/* Container Cards (Mirrors the exact styling from the Contact page UI) */
.info-card, .launch-card {
    background-color: #1c2541; /* Dark Slate Blue Container Card Fill */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Left Column Styling */
.badge-alert {
    display: inline-block;
    background-color: #ffb703; /* Amber alert coloring for production status */
    color: #0b132b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.info-card h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tagline {
    color: #a4b3c6;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.product-preview {
    width: 100%;
    height: 260px;
    background-color: #0b132b;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #2e3856;
    margin-bottom: 32px;
}

.preview-text {
    color: #48cae4;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.specs-preview-list h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.specs-preview-list ul {
    list-style: none;
}

.specs-preview-list li {
    color: #a4b3c6;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* Right Column Timeline Info styling */
.launch-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-header h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.sub-heading {
    color: #a4b3c6;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Launch Callout Box */
.date-announcement-box {
    background-color: #0b132b;
    border-left: 4px solid #3a86ff; /* Clean accent border matching your form layouts */
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.date-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #3a86ff;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.launch-date {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.countdown-note {
    font-size: 0.85rem;
    color: #a4b3c6;
    line-height: 1.4;
}

/* Notification Subscription Form */
.notify-form-wrapper h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.form-instruction {
    color: #a4b3c6;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #a4b3c6;
    margin-bottom: 8px;
}

input {
    background-color: #0b132b;
    border: 1px solid #2e3856;
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

input:focus {
    border-color: #3a86ff;
}

.btn-notify {
    width: 100%;
    background-color: #3a86ff;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-notify:hover {
    background-color: #2563eb;
}

.privacy-note {
    font-size: 0.75rem;
    color: #a4b3c6;
    text-align: center;
    margin-top: 14px;
}



/* ==========================================================================
   1. GLOBAL / DESKTOP STYLES (Default State)
   ========================================================================== */

/* The hamburger button container - Hidden on desktop by default */
.menu-toggle {
  display: none; 
  background: transparent; /* Removes default HTML button background */
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 30px;
  height: 24px;
  
  /* Flexbox settings to perfectly space your 3 lines vertically */
  flex-direction: column;
  justify-content: space-between; 
}

/* The three horizontal lines inside the button */
.bar {
  display: block;
  width: 100%;
  height: 3px;               /* Thickness of the lines */
  background-color: #ffffff; /* Crisp white lines to match your logo */
  border-radius: 2px;        /* Softens the edges of the bars */
  transition: all 0.3s ease; /* For smooth animations if you animate to an 'X' later */
}


/* ==========================================================================
   2. MOBILE STYLES (Triggers when screen is 768px wide or smaller)
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* Reveal the hamburger icon container on mobile */
  .menu-toggle {
    display: flex; 
  }
  
  /* Hide your desktop links header row until someone clicks the menu */
  .nav-menu {
    display: none; 
  }

  /* Target your active state (when JS toggles the menu open) */
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on your header's actual height */
    left: 0;
    width: 100%;
    background-color: #0b132b; /* Match your deep dark background */
    padding: 20px;
  }

    .info-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

}



