/* ==============================
           ASSET IMPORTS
   ============================== */
@font-face {
    font-family: 'Lora';
    src: url('./fonts/static/Lora-Regular.ttf') format('ttf'),
         url('./fonts/static/Lora-SemiBold.ttf') format('ttf'),
         url('.fonts.static/Lora-Bold.ttf') format('ttf');
}

/* ==============================
         HOME PAGE STYLING
   ============================== */
/* Page Body */
body {
    margin: 0;
    font-family: Sora;
    display: flex;
}

/* Container */
.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Title */
.title {
    text-align: center;
}

#title-line {
    justify-content: flex-start;
    box-shadow: #111111;
    background-color: #111111;
}

/* Screen Sidebar Nav */
.sidebar {
    width: 350px;
    background-color: rgba(255, 120, 56, 0.82);
    color: #111111;
    padding: 1.5rem;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 1rem 0;
}

.sidebar a {
    color: #ffffff;
}

.sidebar a:hover {
    color: #42a6f3;
}

/* Page Link Text */
.page-links {
    font-family: Sora;
    font-size: 1rem;
    text-align: center;
}

.coming-soon::before {
    content: "*";
    color: #42a6f3; /* Forge-style ember orange */
    font-weight: bold;
    margin-left: 4px;
    font-size: 0.8rem;
    vertical-align: super;
}


/* Main Content */
.content {
    padding: 2rem;
    flex-grow: 1;
    background-color: #EAEAEA;
    overflow-y: auto;
}

.content h1, .content h2 {
    margin-top: 0;
}

/* Banner Section */
.banner-section {
    background: url('assets/images/banner.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 70vh; /* or adjust: 80vh, etc. */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-sizing: border-box;
}


.banner-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.banner-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    background-color: #fff9f9;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 10px;
}

/* Contact Section */
.contact {
    background-color: #fff9f9;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 10px;
}

/* NOTICE */
.notice::before {
    content: "*";
    color: #42a6f3; /* Forge-style ember orange */
    font-weight: bold;
    margin-left: 4px;
    font-size: 1.5rem;
    vertical-align: super;
}

/* ==============================
         CONTACT PAGE STYLING
   ============================== */
/* Core Layout */
.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar */
.sidebar {
    width: 200px;
    background-color: rgba(255, 120, 56, 0.82);
    color: #111;
    padding: 1.5rem;
    flex-shrink: 0;
}

.bg-phone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* full viewport width */
    height: auto;
    z-index: 0;
    object-fit: contain;
    pointer-events: none; /* let clicks go through */
}

.contact-cover {
    position: relative; /* REQUIRED for absolute children to align */
    flex-grow: 1;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden; /* or visible, depending on desired overflow */
}


/* Main Contact Content */
.contact-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    color: #111;
}

/* ToolTip Styling (?) */
.tooltip {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    cursor: help;
    background-color: #ff7838;
    color: white;
    font-size: 0.75rem;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
}

/* Hidden text box */
.tooltip .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 8px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.85rem;
}

/* Tooltip arrow */
.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Show on hover or focus */
.tooltip:hover .tooltip-text,
.tooltip:focus .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Each contact block widget */
.contact-widget {
    background: white;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    text-align: left;
}

/* Links */
.contact-widget a {
    color: #2c7edc;
    text-decoration: none;
}
.contact-widget a:hover {
    text-decoration: underline;
}

/* ==============================
        MISSION PAGE STYLES
   ============================== */
.mission {
    background-color: #fff9f9;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

/* About Us Widget */
.aboutus {
    background-color: #fff9f9;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto;
    text-align: center;
}

/* Bios */
.bios {
    background-color: #fff9f9;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

/* ==============================
        PROJECTS PAGE STYLES
   ============================== */
.products-section {
    background-color: #fff9f9;
    padding: 2rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 2rem auto;
}

.product-card {
    background: white;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.product-card h2 {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-tag {
    background-color: #0A9CFF;
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 8px;
}

.product-card.future {
    opacity: 0.6;
    font-style: italic;
}

/* Image Logo */
.logo-image {

}

.site-logo {
    max-width: 550px;

}

/* MOBILE */
@media (max-width: 768px) {
    body, h1, h2, h3, p, a {
        font-family: 'Sora', sans-serif;
    }

    .container {
        flex-direction: column;
        width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .sidebar {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }

    .sidebar ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 0;
    }

    .sidebar li {
        margin: 0;
    }

    .content {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .banner-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        min-height: 10vh;
        background-position: center center;
        background-size: cover;
        text-align: center;
    }

    .banner-overlay {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .banner-section h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .site-logo {
        max-width: 90%;
        height: auto;
        margin: 1rem auto;
        display: block;
    }

    .notice {
        font-size: 1.6rem;
        line-height: 1.5;
        text-align: center;
        padding-top: 0.5rem;
    }

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

    /* Mission Page */
    .aboutus {
    
    }
}
