/*
Theme Name: Steam Studio
Description: High-end custom theme for Steam Studio with GSAP and Lenis.
Template: hello-elementor
Version: 1.0.0
Author: Artificial Intelligence
*/

/* Global Reset & Base Styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding: 0;
    overflow-x: hidden;
}

#debug-dot {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: red;
    z-index: 10000;
    border-radius: 50%;
    pointer-events: none;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
    /* Ensure clicks still work, but drag/select specific logic handles the rest */
}

a {
    color: inherit;
    text-decoration: none;
}

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Rate Card Section Styles */
.rate-card-section {
    padding: 15vh 5vw;
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: 100vw !important;
    /* Force full width override */
    width: 100% !important;
}

/* Header with Brackets */
.services-main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10vh;
    width: 100%;
    position: relative;
}

.bracket {
    font-size: 15vw;
    line-height: 0.8;
    font-weight: 300;
    color: #fff;
}

.services-main-header h1 {
    font-size: 8vw;
    line-height: 0.9;
    text-align: right;
    margin: 0;
    font-weight: 500;
    letter-spacing: -2px;
    flex-grow: 1;
    padding-right: 2vw;
    text-transform: uppercase;
}

/* Grid Layout for Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
    width: 100%;
    margin-bottom: 20vh;
}

.service-category {
    grid-column: span 4;
    margin-bottom: 100px;
}

/* Stagger placement slightly for visual interest (manual masonry) */
.service-category:nth-child(2) {
    grid-column: 6 / span 4;
    margin-top: 150px;
}

.service-category:nth-child(3) {
    grid-column: span 3;
}

.service-category:nth-child(4) {
    grid-column: 5 / span 4;
    margin-top: 100px;
}

.service-category:nth-child(5) {
    grid-column: 10 / span 3;
    margin-top: 200px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Service Item Styles */
.service-item {
    margin-bottom: 50px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    border-left: 1px solid #fff;
}

.service-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    /* Allow wrapping on very small screens */
}

.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    /* Bold as requested */
    color: #fff;
    margin-right: 15px;
    /* Spacing between title and price */
    margin-bottom: 0;
}

.service-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 100%;
    /* Allow full width since it's stacked */
}

.service-meta {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    font-style: italic;
}

/* Pricing Styles - Interactive Reveal */
.service-price {
    font-size: 1.2rem;
    /* Match service name size */
    font-weight: 700;
    /* Match service name bold */
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    /* Hidden by default */
    transform: translateX(-10px);
    /* Slight offset for sliding in */
    transition: all 0.3s ease-out;
}

/* Interaction: Hover (Desktop) or Active (Mobile Touch) */
.service-item:hover .service-price,
.service-item:active .service-price {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Section */
.capabilities-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.corp-statement {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 3rem;
    /* Increased to header size */
    line-height: 1.1;
    /* Tighter line height for header feel */
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
    /* Allow more width */
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    /* Bolder */
}



/* Responsive adjustments - Stack earlier for Rate Card */
@media (max-width: 1024px) {
    .services-grid {
        display: block;
    }

    .service-category {
        margin-top: 0 !important;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .bracket {
        font-size: 8rem;
    }

    .services-main-header h1 {
        font-size: 4rem;
    }
}

/* Sticky Menu Styles */
.sticky-menu {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 9999;
    mix-blend-mode: difference;
}

.menu-items {
    display: flex;
    gap: 30px;
}

.menu-btn {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    /* FAILSAFE: Visible by default */
    /* FAILSAFE: In position by default */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-btn:hover {
    opacity: 0.8;
}

/* New Footer Styles (White Mode) */
.site-footer {
    padding: 10vh 5vw 5vh 5vw;
    background-color: #ffffff;
    /* White Background */
    color: #000000;
    /* Black Text */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    /* Separator */
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5vh;
    padding-bottom: 5vh;
}

.footer-cta-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    color: #000;
}

.footer-email {
    font-size: 8vw;
    line-height: 0.85;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
    color: #000000;
    /* Black Link */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.6;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    /* Solid Black Line */
    margin-bottom: 5vh;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    /* Muted Black Label */
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #000000;
}

.footer-text a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.footer-text a:hover {
    border-color: #000000;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-cta-label {
        margin-bottom: 30px;
    }

    .footer-email {
        font-size: 11vw;
        /* Reduced from 14vw to prevent overflow */
        text-align: left;
        line-height: 0.9;
        word-break: break-word;
        /* Ensure it wraps if absolutely needed */
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}



/* New Footer Styles (White Mode) */
.site-footer {
    padding: 10vh 5vw 5vh 5vw;
    background-color: #ffffff;
    /* White Background */
    color: #000000;
    /* Black Text */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    /* Separator */
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5vh;
    padding-bottom: 5vh;
}

.footer-cta-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    color: #000;
}

.footer-email {
    font-size: 8vw;
    line-height: 0.85;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
    color: #000000;
    /* Black Link */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.6;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    /* Solid Black Line */
    margin-bottom: 5vh;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5) !important;
    /* Force visibility */
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #000000 !important;
    /* Force visibility */
}

.footer-text a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.footer-text a:hover {
    border-color: #000000;
}

/* Mobile Footer Optimization */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-cta-label {
        margin-bottom: 30px;
    }

    .footer-email {
        font-size: 11vw;
        /* Reduced from 14vw for better fit */
        text-align: left;
        line-height: 0.9;
        word-break: break-word;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}