﻿body{
    font-family: 'Arial', sans-serif;
    background: #000;
}

/* Global typography for Plantaz pages */
:root {
    --plantaz-h1-size: 2.25rem;
    --plantaz-h2-size: 1.75rem;
    --plantaz-h3-size: 1.25rem;
    --plantaz-p-size: 1rem;
    --plantaz-h1-line: 2.6rem;
    --plantaz-h2-line: 2.1rem;
    --plantaz-h3-line: 1.6rem;
    --plantaz-p-line: 1.7rem;
    --plantaz-button-height: 2.5rem;
    --plantaz-button-line: 1;
}

h1,
h2,
h3,
p{
    font-family: Arial, sans-serif !important;
    margin: 0 0 1rem 0;
}

h1 {
    font-size: var(--plantaz-h1-size) !important;
    line-height: var(--plantaz-h1-line) !important;
    font-weight: 700 !important;
}

h2 {
    font-size: var(--plantaz-h2-size) !important;
    line-height: var(--plantaz-h2-line) !important;
    font-weight: 700 !important;
}

h3 {
    font-size: var(--plantaz-h3-size) !important;
    line-height: var(--plantaz-h3-line) !important;
    font-weight: 600 !important;
}

p {
    font-size: var(--plantaz-p-size) !important;
    line-height: var(--plantaz-p-line) !important;
}

button {
    font-size: 1rem !important;
    line-height: var(--plantaz-button-line) !important;
    height: var(--plantaz-button-height) !important;
}

/* Contact popup */
.contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    z-index: 9999;
    padding: 2rem 1rem;
}

.contact-overlay.is-open {
    display: block;
}

.contact-modal {
    position: relative;
    width: min(600px, calc(100vw - 2rem));
    max-height: 90vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    position: absolute;
    top: 7rem;
    left: 50%;
    transform: translateX(-50%);
}

.contact-modal h2 {
    margin: 0 0 1.25rem;
    font-size: 2rem;
    letter-spacing: 0.02em;
}

.contact-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.contact-actions {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.5);
}

.contact-card {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.2);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.contact-name {
    font-weight: 700;
}

.contact-handle {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.contact-bio {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    max-width: 28ch;
}

/* Progress overlay */
#progress-bar-container {
    z-index: 10000;
    position: fixed;
    left: 0;
    top: 0;
    background-color: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#progress-bar {
    height: 10px;
    width: 35%;
    background: black;
    border: 1px solid white;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    color: blue;
    font-size: 20px;
    transform: translateY(1000%);
}

#progress {
    background-color: white;
    margin: 2px;
    width: 0%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Plant section layout */
.plant-content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.plant-video-section {
    flex: 1;
    min-width: 0;
}

.plant-text-section {
    flex: 1;
    min-width: 0;
    padding-left: 1rem;
    align-self: center;
}

.header {
    max-width: 50ch;
    height: 7rem;
    text-align: center;
    padding: 1rem 2rem 0 2rem;
    align-self: center;
    margin: 0 auto 0 auto;
}

.header h1 {
    margin: 0 auto 1rem auto;
    color: white;
}

.header-title-logo {
    display: inline-flex;
    width: 120px;
    height: 2.5rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    background: white;
    border-radius: 10rem;
    text-decoration: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}

.header-title-logo lottie-player {
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {
    .plant-content-wrapper {
        flex-direction: column !important;
        gap: 1rem;
    }

    .plant-text-section {
        padding-left: 0;
        margin-top: 2rem;
    }
}



/* Shared header nav (products style) */
.menu-bar {
    position: fixed;
    right: 0;
    z-index: 60;
    display: grid;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem;
    top: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.menu-bar .menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: end;
}
.menu-bar .burger {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: background 0.2s ease;
}
.menu-bar .burger:hover {
    background: rgba(0,0,0,0.85);
}
.menu-bar .burger #burgerLottie {
    width: 2rem;
    height: 2rem;
    display: block;
}
.menu-bar.open {
    background: transparent;
    box-shadow: none;
}
.menu-bar.open .burger {
    background: #fff;
    border-color: rgba(0,0,0,0.2);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.menu-bar.open #burgerLottie {
    filter: none;
}
.menu-bar .login-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: background 0.2s ease, color 0.2s ease;
}
.menu-bar .login-circle:hover {
    background: rgba(0,0,0,0.85);
    color: #ffd700;
}
.menu-bar .login-circle svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: currentColor;
    display: block;
}
.menu-bar .menu-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 35vw;
    justify-content: right;
}



.menu-bar .menu-links.stacked{
    flex-wrap: wrap;
    row-gap: 0.4rem;
    max-width: 100%;
    justify-content: flex-start;
}
.menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1rem;
    box-sizing: border-box;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 1rem;
    line-height: 1rem;
    height: 2.5rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.menu-link:hover {
    background: rgba(255,255,255,0.15);
    color: #ffd700;
}
.menu-link.active,
.menu-link[aria-current="page"] {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.7);
    color: #ffd700;
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.2) inset;
}

/* Shared hover treatment for Lottie arrow controls */
.slideshow-btn,
.arrow-button,
.yourplant-arrow,
.mic-arrow-btn,
.slide-arrows,
.navigation-arrows,
.fullscreen-arrows {
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.slideshow-btn:hover,
.arrow-button:hover,
.yourplant-arrow:hover,
.mic-arrow-btn:hover,
.slide-arrows:hover,
.navigation-arrows:hover,
.fullscreen-arrows:hover {
    color: white;
    background: rgba(255, 215, 0, 0.35);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}
@media (max-width: 900px) {
    .menu-bar .burger {
        display: none;
    }
    .menu-bar .menu-actions {
        flex-direction: row;
        gap: 0.75rem;
    }
    .menu-bar .menu-links {
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        flex-direction: row;
        gap: 0.75rem;
        min-width: auto;
        display: flex;
        max-width: 100%;
        box-sizing: border-box;
    }
    .menu-link {
        justify-content: center;
    }
}

/* Enable burger and dropdown on narrow viewports */
@media (max-width: 720px) {
    .menu-bar .burger {
        display: flex;
    }
    .menu-bar .menu-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    .menu-bar .menu-links {
        position: absolute;
        top: 3.5rem;
        right: 0;
        background: rgba(0,0,0,0.9);
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 1rem;
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 170px;
        display: none;
        max-width: none;
    }
    .menu-bar.open .menu-links {
        display: flex;
    }

    .menu-bar .menu-links{
        width:calc(100vw - 2rem) !important;
    }
}
/* Normalize root sizing across Plantaz pages */
html {
    font-size: 16px !important;
}
/* PLANTAZ styles moved from global theme */
.plantaz-main {
    width: 100%;
}

.plantaz-intro {
    opacity: 1;
    pointer-events: auto;
    padding: 0 1rem;
    height: calc(100dvh - 20rem);
    display: flex;
    gap: 0.5rem;
    align-items: anchor-center;
}

.plantaz-intro-headline {
    text-align: center;
}

.plantaz-intro-text {
    max-width: 70ch;
    margin: 1rem auto 1rem auto;
    width: calc(100vw - 4rem);
    margin-top: auto;
}

.game-intro-video{
    display: flex;
    flex-direction: column;
    position: relative;
}

.game-intro-video img,
.game-intro-video video {
    display: flex;
    border-radius: 1rem;
    width: 100%;
    min-height: 0;
    max-height: 100%;
    object-fit: contain;
}

.game-intro-video p {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    margin: 0;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}


.main-intro{
    border-radius: 1rem;
    border: rgb(255 255 255 / 25%) 1px solid;
    width: calc(100vw - 2rem);
    margin: 0 1rem;
    height: calc(100vh - 9rem);
    display: flex;
    flex-direction: column;
    background: hsl(243.26deg 9.65% 16.18% / 75%);
}

.imginslide {
    position: absolute;
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imginslide video {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imginslide img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-viewing-home-plantaz, .fp-viewing-home-plantaz {
    background: linear-gradient(0deg, rgba(16,25,35,1) 0%, rgba(12,17,24,1) 100%);
}

.fp-viewing-home-plantaz .corner-nav-left {
    display: none !important;
}

@media (max-width: 800px) {
    .plantaz-intro {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem 1rem 0 1rem;
    }
    .game-intro-video video {
        object-fit: cover;
    }
    /* Make intro text column behave like header on mobile */
    .firstvideos column[cols="4"] {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 50ch;
        margin: 0 auto 1.5rem auto;
        gap: 0.35rem;
    }
    .firstvideos column[cols="4"] h1 {
        margin: 0;
    }
    .firstvideos column[cols="4"] p {
        margin: 0;
    }
}

/* Platforms styling */
.platforms {
    height: 2.5rem;
    flex-direction: row;
    padding: 0 0.25rem 0 0;
    background: rgb(255, 255, 255);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    gap: 0.25rem;
}

.platforms column {
    align-items: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    place-content: center;
    align-self: center;
    display: flex;
    padding: 0.05rem;
}
.platforms column:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.35);
}

.platforms :first-child {
    margin-left: 0.25rem;
}

.platforms :last-child {
    margin-right: 0.25rem !important;
}


.platforms column:hover {
    transform: translateY(-5px);
}

.platforms p.lead {
    margin-bottom: 0px !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-shadow: 0 0 5px rgba(0, 0, 255, 0.3);
    text-wrap-mode: nowrap;
    color: black;
    padding-right: 1rem;
}

.platforms img {
    width: 2.5rem;
    height: 2rem;
    transition: all 0.3s ease;

    padding-left: 0.5rem;
}

.platforms:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 1.2rem;
    background: linear-gradient(45deg, rgba(0, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    z-index: -1;
    opacity: 0.7;
}

.platforms:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .platforms {
        flex-direction: row;
        padding: 0;
        display: flex;
    }

    .platforms column {
        margin-bottom: 1rem;
    }

    .platforms p.lead {
        font-size: 0.8rem;
        padding-right: 0;
    }
}

