/* --- AESTHETIC: High-energy, swagger-y ramen temple --- */
/* --- Dark background, bold fonts, neon accents, rock-and-roll vibe --- */

/* --- VARIABLES & RESET --- */
:root {
    --background-color: #121212; /* Dark, almost black */
    --surface-color: #1E1E1E; /* Slightly lighter for cards */
    --primary-text-color: #EAEAEA;
    --secondary-text-color: #A0A0A0;
    --accent-color: #FF4500; /* Bold, neon-like orange-red */
    --accent-hover: #FF6347;
    --font-heading: 'Work Sans', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
    --font-shodo: 'Yuji Syuku', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background-color);
    color: var(--primary-text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TYPOGRAPHY & SHARED ELEMENTS --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-text-color);
}

.hero-content h1,
.page-header h1,
.problem-section h2,
.solution-section h2,
.trusted-by h3 {
    font-family: var(--font-shodo);
    letter-spacing: 0.12em;
    font-weight: 400;
}

h1 { font-size: 3.5rem; letter-spacing: 1px;}
h2 { font-size: 2.5rem; text-align: center;}
h3 { font-size: 1.5rem; }

p {
    color: var(--secondary-text-color);
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--primary-text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 35px;
    font-family: var(--font-mono);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.4);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.cta-button.disabled {
    background-color: #555;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}
.cta-button.disabled:hover {
    transform: none;
}

/* --- HEADER / NAVBAR --- */
.navbar {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-shodo);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--primary-text-color);
    text-decoration: none;
    letter-spacing: 0.18em;
}
.nav-brand:hover {
    color: var(--accent-color);
}

.navbar nav a {
    color: var(--primary-text-color);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--accent-color);
}

/* --- HERO SECTION (index.html) --- */
.hero {
    position: relative;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide overflow from the image scaling */
    display: flex; /* For centering the content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    padding: 0; /* Remove original padding as image will fill */
}

.jumbotron-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Behind the content */
}

.hero-logo-jumbotron {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area, maintaining aspect ratio */
    filter: brightness(0.5); /* Darken the image to make text more readable */
}

.hero-content {
    position: relative; /* Ensure it's above the image */
    z-index: 2; /* Ensure text is above the image */
    text-align: center;
    max-width: 800px; /* Retain original max-width */
    margin: 0 auto; /* Retain original margin auto */
    padding: 20px; /* Add some padding around the text */
}

.community-hero {
    height: 80vh;
    min-height: 500px;
    text-align: center;
}

/* Remove or comment out the old .hero-logo style if it's no longer used as a standalone logo */
/* .hero-logo {
    max-width: 250px;
    margin-bottom: 30px;
} */


/* --- PROBLEM SECTION (index.html) --- */
.problem-section {
    padding: 80px 0;
    background-color: var(--surface-color);
    text-align: center;
}
.problem-cards {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
}
.problem-section .card {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    border: 1px solid #333;
}
.problem-section .card h3 {
    font-size: 3rem;
    color: var(--accent-color);
    font-family: var(--font-mono);
}

/* --- SOLUTION SECTION (index.html) --- */
.solution-section {
    padding: 100px 0;
}
.solution-section h2 {
    margin-bottom: 40px;
}
.feature-showcase {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}
.feature-showcase.reverse {
    flex-direction: row-reverse;
}
.feature-text { flex: 1; }
.feature-showcase img {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
    border: 1px solid #444;
}

/* --- TRUSTED BY SECTION (index.html) --- */
.trusted-by {
    padding: 60px 0;
    text-align: center;
    background-color: var(--surface-color);
}
.trusted-by h3 {
    color: var(--secondary-text-color);
    font-weight: 400;
    margin-bottom: 30px;
}
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: #888;
}

/* --- PAGE HEADER (Shared by Pricing/About) --- */
.page-header {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

/* --- PRICING PAGE --- */
.pricing-table {
    padding: 80px 0;
}
.pricing-table .container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}
.price-card {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #333;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.price-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}
.price-card h3 {
    text-align: center;
    color: var(--accent-color);
}
.price-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin: 20px 0;
    font-family: var(--font-mono);
}
.price-card .price-unit {
    font-size: 1rem;
    color: var(--secondary-text-color);
    font-weight: 400;
}
.price-card .card-desc {
    text-align: center;
    min-height: 60px;
}
.price-card ul {
    list-style: '✓ ';
    padding-left: 20px;
    margin: 20px 0;
    flex-grow: 1;
}
.price-card ul li {
    margin-bottom: 10px;
}
.price-card .cta-button {
    text-align: center;
    width: 100%;
}

/* --- ABOUT PAGE --- */
.team-section {
    padding: 80px 0;
}
/* Removed .team-grid as it's replaced by individual .team-member-showcase elements */
/* .team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
} */
.team-member-showcase {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px; /* Space between team members */
}
.team-member-showcase.reverse {
    flex-direction: row-reverse;
}
.team-member-photo-wrapper {
    flex: 0 0 300px; /* Fixed width for the photo wrapper */
    height: 300px; /* Fixed height for the photo wrapper */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--surface-color); /* Background for the wrapper */
    border: 1px solid #444;
}
.team-member-photo-placeholder {
    width: 200px; /* Smaller placeholder inside the wrapper */
    height: 200px;
    background-color: #333;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}
.team-member-text {
    flex: 1; /* Take remaining space */
}
.team-member-text h3 {
    text-align: left; /* Align name to left */
    color: var(--primary-text-color);
    margin-bottom: 10px;
}
.team-member-title {
    color: var(--secondary-text-color);
    font-family: var(--font-mono);
    margin-bottom: 15px;
}
.team-member-bio {
    color: var(--primary-text-color); /* Keep bio readable */
    margin-bottom: 0;
}


/* --- FOOTER --- */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    color: var(--secondary-text-color);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }

    .hero {
        height: auto;
        min-height: 80vh;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .feature-showcase {
        gap: 30px;
    }

    .feature-showcase img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }

    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.3rem; }

    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .navbar nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .navbar nav a {
        margin: 0;
        padding: 6px 0;
    }

    .hero {
        min-height: unset;
        padding: 100px 0 60px;
    }

    .hero-content {
        text-align: left;
        padding: 20px;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-left: 0;
        margin-right: 0;
    }

    .problem-section {
        padding: 60px 0;
    }

    .problem-cards {
        flex-direction: column;
    }

    .feature-showcase,
    .feature-showcase.reverse {
        flex-direction: column;
    }

    .feature-showcase img {
        width: 100%;
    }

    .logos {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-table .container {
        flex-direction: column;
    }

    .price-card {
        transform: none;
    }

    .team-member-showcase,
    .team-member-showcase.reverse {
        flex-direction: column;
        text-align: left;
    }

    .team-member-photo-wrapper {
        flex: none;
        width: 200px;
        height: 200px;
    }

    .team-member-photo-placeholder {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .problem-section {
        padding: 40px 0;
    }

    .solution-section {
        padding: 60px 0;
    }

    .team-section {
        padding: 60px 0;
    }

    .footer {
        padding: 30px 0;
        font-size: 0.85rem;
    }
}