/* Import fonts: change this import to switch options:
   Option A (Poppins + Inter) - current
   Option B (Orbitron + Inter)  - replace import with Orbitron + Inter
   Option C (Manrope + Inter)   - replace import with Manrope + Inter
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

/* Fallbacks included */
:root{
    --font-display: 'Poppins', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --heading-weight: 600;
    --accent-font-color: #111827;
}

/* Base */
* { box-sizing: border-box; }
html,body { height:100%; }
body {
    font-family: var(--font-body);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    color: #111827;
    background-color: #ffffff;
}

/* Apply display font to headings and a utility class */
h1,h2,h3,h4,h5,h6, .font-display {
    font-family: var(--font-display);
    font-weight: var(--heading-weight);
    letter-spacing: -0.01em;
}

/* Specific tuning for hero / big headings */
h1 { line-height: 1.02; letter-spacing: -0.02em; }

/* Product card titles */
.product-card h3, .site-nav .brand-name, .modal-content h2 {
    font-family: var(--font-display);
}

/* Optional utilities */
.text-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #111827 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Keep card typography consistent */
.product-card p, .product-card .actions span {
    font-family: var(--font-body);
    color: #374151;
}

/* Small responsive adjustments */
@media (max-width: 640px) {
    h1 { font-size: 1.75rem; }
}

/* ============================================
   TRANSITIONS & ANIMATIONS
   ============================================ */
.transition-smooth {
    transition: all 0.3s ease;
}

/* ============================================
   GRADIENTS
   ============================================ */
.btn-gradient {
    background: linear-gradient(90deg, #60a5fa 0%, #111827 100%);
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #111827 0%, #60a5fa 100%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    padding: 0.75rem 2rem;
    background-color: #3b82f6;
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-secondary {
    padding: 0.75rem 2rem;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: white;
    color: #3b82f6;
}

.btn-large {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 9999px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-full {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-full:hover {
    background-color: #1d4ed8;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    border: 2px solid #d1d5db;
    color: #374151;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

.btn-white-hover-dark {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 9999px;
    background-color: white;
    color: #2563eb;
    transition: all 0.3s ease;
}

.btn-white-hover-dark:hover {
    border: 2px solid white;
    background-color: #111827;
    color: white;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 1.5rem 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 2rem;
    width: 2rem;
    margin-right: 0.75rem;
}

.nav-logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: none;
}

.nav-link {
    color: white;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #bfdbfe;
}

/* ============================================
   MOBILE MENU ADDITIONS
   ============================================ */

/* Mobile Menu Button */
.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 50;
    position: relative;
}

.mobile-menu-button svg {
    width: 1.75rem;
    height: 1.75rem;
}

.mobile-menu-button .hidden {
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    transition: right 0.3s ease;
    z-index: 40;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #60a5fa;
    padding-left: 0.5rem;
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
    
    .site-nav {
        padding: 1.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .site-nav {
        padding: 1.5rem 2rem;
    }
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.product-card {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.product-card > .p-6 {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-card .p-6 > .actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-card .p-6 > .actions > button,
.product-card .p-6 > .actions > a {
    margin-top: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-card-image {
    border-radius: 0.5rem; /* rounded-lg */
    margin-bottom: 1.5rem; /* mb-6 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.product-card-image i {
    width: 8rem;
    height: 8rem;
    font-size: 2rem;
    color: #3b82f6; /* text-blue-500 */
    display: block;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.product-card-description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.product-card-price {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.125rem;
}

/* ============================================
   MODALS
   ============================================ */
/* Modal overlay */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto; /* allows modal itself to scroll */
}

/* Modal box */
.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh; /* ensures it fits on screen */
    overflow-y: auto; /* scroll INSIDE modal, not page */
    padding: 2rem;
}

/* When body is locked (modal open) */
body.modal-open {
    overflow: hidden; /* prevents page background scroll */
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: #111827;
    color: white;
    padding: 3rem 1rem;
}

.footer-link {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: black;
    opacity: 0.25;
}

/* ============================================
   COMING SOON PAGE
   ============================================ */
.coming-soon-container {
    background-color: #111827;
    display: flex;
    flex-direction: column;     /* Stack vertically */
    min-height: 100vh;
}

.coming-soon-container > .text-center {
    flex: 1;                    /* Push footer to bottom */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PURCHASING / TERMS OF SERVICE PAGE
   ============================================ */

        /* Small page-specific helpers */
        .timeline {
            position: relative;
            padding-left: 1.25rem;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 0.625rem;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(74,85,104,0.12);
        }
        .timeline-item {
            position: relative;
            padding: 1rem 0 1.25rem 1.5rem;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -0.25rem;
            top: 1rem;
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 9999px;
            background: linear-gradient(90deg,#3b82f6,#60a5fa);
            box-shadow: 0 0 0 4px rgba(59,130,246,0.08);
        }

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Headings */
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.modal-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

.modal-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.modal-subsection-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

/* Paragraphs & Body Text */
.text-body {
    color: #4b5563;
    margin-bottom: 1rem;
}

.text-body-large {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.text-intro {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Text Colors */
.text-primary {
    color: #111827;
}

.text-secondary {
    color: #4b5563;
}

.text-muted {
    color: #6b7280;
}

.text-white {
    color: white;
}

.text-blue-light {
    color: #bfdbfe;
}

.text-blue-accent {
    color: #60a5fa;
}

/* Lists */
.list-styled {
    list-style-type: disc;
    list-style-position: inside;
    color: #4b5563;
    margin-bottom: 1rem;
}

.list-styled li {
    margin-bottom: 0.25rem;
}

.list-styled-spaced {
    list-style-type: disc;
    list-style-position: inside;
    color: #4b5563;
    margin-bottom: 1rem;
}

.list-styled-spaced li {
    margin-bottom: 1rem;
}

.list-checkmarks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-checkmarks li {
    display: flex;
    align-items: flex-start;
}

.list-checkmarks li > span {
    color: #374151;
}

/* Links */
.link-primary {
    color: #2563eb;
    transition: all 0.3s ease;
}

.link-primary:hover {
    color: #1d4ed8;
}

/* Responsive Typography */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* ============================================
   SPACING & LAYOUT
   ============================================ */
.section-padding {
    padding: 5rem 1rem;
}

.section-spacing {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.container-narrow {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.container-medium {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.container-wide {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .section-padding {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}