/* =========================================================
   GLOBAL RESET & BASE
   ========================================================= */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    background-color: #e9ecef;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

/* =========================================================
   TYPOGRAPHY SYSTEM
   ========================================================= */

/* Body text */
body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

/* GLOBAL DEFAULT HEADINGS = Inter */
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* NAVIGATION uses Bowlby */
.nav h1,
.menu a,
.mobile-menu a,
.dropdown-content a {
    font-family: 'Bowlby One SC', sans-serif;
    letter-spacing: 2px;
}

/* PARALLAX HERO uses Bowlby */
.parallax-content h2 {
    font-family: 'Bowlby One SC', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
}

/* PRODUCT 1 HERO uses Bowlby */
.product1-hero h2 {
    font-family: 'Bowlby One SC', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
}

/* INTRO SECTION uses Inter */
.intro h2,
.intro h3,
.intro p {
    font-family: 'Inter', sans-serif;
}

.parallax-description {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* DESCRIPTION BLOCK (Inter) */
.parallax-description h3,
.parallax-description p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    text-shadow:
        0 0 3px rgba(0,0,0,0.9),
        0 0 8px rgba(0,0,0,0.7),
        0 0 14px rgba(0,0,0,0.5);
}

.inline-link {
    color: #ccc;
    text-decoration: none;
    font-weight: normal;
}

.inline-link:hover {
    color: #fff;
    opacity: 0.8;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.nav {
    background: #181818;
    color: #eee;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    margin-right: 20px;
}

.nav h1 {
    margin: 0;
    text-align: center;
    justify-self: center;
    font-size: 32px;
    color: #fafafa;
    margin-left: 40px;
}

@media (max-width: 900px) { .nav h1 { font-size: 26px; } }
@media (max-width: 600px) { .nav h1 { font-size: 22px; } }
@media (max-width: 400px) { .nav h1 { font-size: 18px; } }

.menu {
    display: flex;
    align-items: center;
}

.menu a {
    color: #ccc;
    text-decoration: none;
    margin: 0 48px;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.menu a:hover {
    opacity: 0.7;
}

/* =========================================================
   HAMBURGER MENU (MOBILE)
   ========================================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #eee;
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #111;
    padding: 20px;
    text-align: center;
}

.mobile-menu a {
    color: #ccc;
    text-decoration: none;
    padding: 10px 0;
    font-size: 20px;
}

@media (max-width: 1300px) {
    .menu { display: none; }
    .hamburger { display: flex; }
}

/* =========================================================
   MOBILE DROPDOWN
   ========================================================= */
.mobile-dropdown {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

.mobile-dropdown-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.mobile-products-link {
    color: #ccc;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 0;
}

.mobile-dropbtn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    background: #222;
    padding: 10px 0;
    border-radius: 8px;
}

.mobile-dropdown-content a {
    color: #ddd;
    text-decoration: none;
    padding: 10px 0;
    font-size: 18px;
}

.mobile-dropdown-content a:hover {
    background: #111;
    color: #fff;
    text-shadow: 0 0 6px #0ff;
}

/* =========================================================
   MOBILE NESTED SUBMENU
   ========================================================= */
.mobile-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.mobile-sub-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    padding: 6px 0;
}

.mobile-sub-content {
    display: none;
    flex-direction: column;
    background: #222;
    padding: 10px 0;
    border-radius: 8px;
}

.mobile-sub-content a {
    padding: 10px 0;
    font-size: 18px;
    color: #ddd;
}

.mobile-sub-content a:hover {
    background: #111;
    color: #fff;
    text-shadow: 0 0 6px #0ff;
}

/* =========================================================
   DESKTOP DROPDOWN
   ========================================================= */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0 15px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #000;
    min-width: 480px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 2000;
    top: 100%;
}

.dropdown-content a {
    color: #ddd;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-weight: 600;
}

.dropdown-content a:hover {
    background: #111;
    color: #fff;
    text-shadow: 0 0 6px #0ff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.submenu-item {
    padding-left: 40px !important;
    font-size: 13px;
    opacity: 0.85;
}

/* =========================================================
   PRODUCT 1 HERO
   ========================================================= */
.product1-hero {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;

    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.product1-hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,.95);
}

.product1-hero p {
    font-size: 22px;
    color: #e0e0e0;
    margin-top: 10px;
    text-shadow: 0 2px 18px rgba(0,0,0,.95);
}

.product1-hero .hero-img {
    max-width: 1000px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;

    filter: none !important;
    box-shadow: none !important;
    background: none !important;
}

.product1-hero .hero-icons img {
    max-width: 100px;
}

/* =========================================================
   PARALLAX HERO SECTION
   ========================================================= */
.parallax {
    height: 900px;
    background-image: url('assets/images/home-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.parallax-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.parallax-content h2,
.parallax-content p {
    color: #fff;
    text-shadow:
        0 0 4px rgba(0,0,0,0.9),
        0 0 12px rgba(0,0,0,0.7),
        0 0 22px rgba(0,0,0,0.5);
}

.parallax-text-bg {
    padding: 20px;
    display: inline-block;
}

/* =========================================================
   HERO IMAGE + ICONS + BUTTON
   ========================================================= */
.hero-img {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 20px 0 40px 0;
    flex-wrap: wrap;
}

.hero-icons img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: none;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #0ff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}

.hero-btn:hover {
    opacity: 0.8;
}

.platform-bar {
    background: #f7f7f7;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;

    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.platform-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: none;
}

/* =========================================================
   ACCORDION
   ========================================================= */
.accordion-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s ease;

    font-weight: bold;
    letter-spacing: 1px;
}

.accordion-btn:hover {
    color: #0ff;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.accordion-panel.open {
    max-height: 300px;
    opacity: 1;
    padding: 10px 0 5px 0;
}

.accordion-item {
    margin-bottom: 25px;
}

.accordion-panel p {
    color: #111;
    font-weight: normal;
    line-height: 1.5;
}

/* =========================================================
   INTRO SECTION
   ========================================================= */
.intro {
    text-align: center;
    padding: 140px 20px;
}

.intro-img {
    display: block;
    margin: 0 auto 30px auto;
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
}

/* =========================================================
   PAGE BACKGROUNDS
   ========================================================= */
.below-parallax {
    flex: 1;
    display: flex;
    background-image: url('assets/images/gamvtnbg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.products-bg {
    background-image: url('assets/images/bikes2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.product1-parallax {
    background-image: url('assets/images/gambg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-bg {
    background-image: url('assets/images/gamvtnbg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.product2-bg {
    background-image: url('assets/images/home-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
}

.contact-bg {
    background-image: url('assets/images/placeholder3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: flex-start;
}


/* =========================================================
   GLASS PANE — FINAL MERGED VERSION WITH CYAN TINT 
   ========================================================= */
.glass-pane {
    flex: 1;
    display: flex;
    flex-direction: column;

    max-width: 900px;
    margin: 60px auto;
    padding: 40px;

    background: rgba(20, 20, 20, 0.28);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.content {
    flex: 1;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    color: #000;
    text-align: center;
}



/* Product 1 FAQ — Pink Glass Tint */
.product1-faq-pane {
    background: rgba(20, 20, 20, 0.28);

}



/* =========================================================
   CONTACT PAGE — RESTORED ORIGINAL LOOK WITH GLASS PANE
   ========================================================= */

.contact-bg .glass-pane {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;

    /* Light charcoal glass tint */
    background: rgba(30, 30, 30, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.25);

    text-align: center;   /* center headings + button */
}

.contact-bg .content {
    margin: 0 auto;
    padding: 0;
    text-align: center !important;   /* restore centered headings */
    color: #fff;
}

/* Bowlby headings restored */
.contact-bg h2 {
    font-family: 'Bowlby One SC', sans-serif;
    letter-spacing: 2px;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Contact form layout restored */
.contact-bg .contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;   /* labels left, layout centered */
}

/* Labels restored */
.contact-bg .contact-form label {
    font-family: 'Bowlby One SC', sans-serif;
    letter-spacing: 2px;
    font-size: 18px;
    color: #fff;
    text-align: left;
}

/* Inputs restored */
.contact-bg .contact-form input,
.contact-bg .contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

/* Send Message button restored */
.contact-bg .contact-form button {
    width: 100% !important;
    display: block !important;

    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #00ffff;
    color: #000;
    font-size: 20px;
    font-family: 'Bowlby One SC', sans-serif;
    cursor: pointer;
    transition: 0.2s;
    letter-spacing: 2px;
    margin-top: 10px;
}


.contact-bg .contact-form button:hover {
    background: #0ff;
    box-shadow: 0 0 10px #0ff;
}

/* Hide honeypot */
.contact-bg .honeypot {
    display: none !important;
}




/* =========================================================
   PRODUCT TILES
   ========================================================= */
.product-tile img {
    max-width: 1200px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #111;
    padding: 36px 0;
    color: #eee;
    text-align: center;
    border-top: 1px solid #222;
}

.footer,
.footer p,
.footer a,
.footer-text {
    font-family: 'Bowlby One SC', sans-serif;
    letter-spacing: 2px;
    color: #eee;
    line-height: 1.2;
}

.footer-link {
    color: #ddd;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
    font-size: 15px;
    padding-top: 2px;
}

.footer-link:hover {
    color: #fff;
    opacity: 0.8;
}
