﻿/* ================================= */
/* GLOBAL */
/* ================================= */

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

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: white;
    position: relative;
}

    /* subtle background noise texture */

    body::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("https://www.transparenttextures.com/patterns/noise.png");
        opacity: 0.03;
        pointer-events: none;
        z-index: 9999;
    }


.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}



/* ================================= */
/* NAVBAR */
/* ================================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #151515;
    z-index: 1000;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 60px;
}

.studio-name {
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
}

    .nav-menu a {
        color: white;
        text-decoration: none;
        margin-left: 30px;
        font-size: 15px;
        transition: 0.25s;
    }

        .nav-menu a:hover {
            color: #ff7a00;
        }

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}



/* ================================= */
/* FEATURED SLIDER */
/* ================================= */

.featured {
    margin-top: 84px;
    display: flex;
    justify-content: center;
}

.slider {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 620px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s;
    background: #000;
}

    .slide.active {
        opacity: 1;
        pointer-events: auto;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 8s ease;
        display: block;
    }

    .slide.active img {
        transform: scale(1.05);
    }

    .slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

.slide-content {
    position: absolute;
    bottom: 100px;
    left: 80px;
    z-index: 5;
    max-width: 600px;
}

    .slide-content h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .slide-content button {
        background: #ff7a00;
        border: none;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: bold;
        color: white;
        cursor: pointer;
        transition: 0.3s;
    }

        .slide-content button:hover {
            background: #ff8c1a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 122, 0, 0.5);
        }



/* arrows */

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.arrow {
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}

    .arrow:hover {
        color: #ff7a00;
    }



/* dots */

.slider-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background: #888;
    border-radius: 50%;
    cursor: pointer;
}

    .dot.active {
        background: #ff7a00;
    }



/* ================================= */
/* DEVLOG */
/* ================================= */

.devlog {
    padding: 80px 0;
    background: #0f0f0f;
    width: 100%;
    overflow-x: hidden;
}

    .devlog h2 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 50px;
    }

.devlog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.devlog-card {
    background: #181818;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    min-width: 0;
}

    .devlog-card:hover {
        transform: translateY(-8px);
        background: #202020;
    }

    .devlog-card h3 {
        margin-bottom: 10px;
    }

    .devlog-card p {
        color: #aaa;
        margin-bottom: 15px;
    }

    .devlog-card span {
        font-size: 14px;
        color: #ff7a00;
    }



/* hidden text */

.devlog-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.devlog-card.active .devlog-full {
    max-height: 200px;
}



/* read more button */

.devlog-toggle {
    background: none;
    border: none;
    color: #ff7a00;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}



/* ================================= */
/* DEVLOG THUMBNAILS */
/* ================================= */

.devlog-thumb {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.devlog-card:hover .devlog-thumb {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
}



/* ================================= */
/* FOOTER */
/* ================================= */

.footer {
    background: #0b0b0b;
    padding: 30px 0;
    margin-top: 80px;
    border-top: 1px solid #222;
}

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

.footer p {
    color: #aaa;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

    .footer-links a {
        color: #aaa;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: #ff7a00;
        }



/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width: 1000px) {
    .devlog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #151515;
        flex-direction: column;
        display: none;
        text-align: center;
        padding: 20px 0;
    }

        .nav-menu a {
            margin: 12px 0;
            font-size: 18px;
        }

        .nav-menu.active {
            display: flex;
        }

    .slider {
        height: 480px;
    }

    .slide-content {
        left: 30px;
        bottom: 60px;
        max-width: 75%;
    }

        .slide-content h1 {
            font-size: 28px;
        }

        .slide-content p {
            font-size: 15px;
        }
}



/* MOBILE PHONE */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .featured {
        margin-top: 84px;
    }

    .slider {
        width: 94%;
        height: 250px;
        border-radius: 8px;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        background: #000;
    }

    .slide::after {
        background: linear-gradient( to top, rgba(0,0,0,0.78), rgba(0,0,0,0.38), rgba(0,0,0,0.08) );
    }

    .slide-content {
        left: 18px;
        right: 18px;
        bottom: 22px;
        max-width: none;
    }

        .slide-content h1 {
            font-size: 20px;
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .slide-content p {
            font-size: 13px;
            margin-bottom: 12px;
            line-height: 1.35;
        }

        .slide-content button {
            padding: 9px 16px;
            font-size: 12px;
            border-radius: 20px;
            box-shadow: 0 6px 18px rgba(255, 122, 0, 0.35);
        }

            .slide-content button:active {
                background: #ff8c1a;
                transform: translateY(-1px);
                box-shadow: 0 8px 20px rgba(255, 122, 0, 0.45);
            }

    .slider-arrows {
        padding: 0 10px;
    }

    .arrow {
        font-size: 28px;
    }

    .slider-dots {
        bottom: 12px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .devlog-grid {
        grid-template-columns: 1fr;
    }

    .devlog-thumb {
        height: 200px;
        object-fit: contain;
        margin-bottom: 12px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}



/* ================================= */
/* ABOUT PAGE */
/* ================================= */

.about-hero {
    background: #151515;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    /* orange glow behind hero title */

    .about-hero::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient( circle, rgba(255,122,0,0.18) 0%, rgba(255,122,0,0.08) 35%, rgba(255,122,0,0.03) 55%, transparent 70% );
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: blur(40px);
        z-index: 0;
    }

/* keep text above glow */

.hero-content {
    position: relative;
    z-index: 1;
}

    .about-hero h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .about-hero p {
        font-size: 18px;
        color: #ccc;
    }

.our-story {
    background: #0f0f0f;
    padding: 80px 0;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.our-story h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.our-story p {
    font-size: 18px;
    color: #aaa;
    line-height: 1.6;
}

.cta-follow {
    background: #151515;
    padding: 60px 0;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

    .cta-follow h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .cta-follow p {
        font-size: 16px;
        color: #ccc;
        margin-bottom: 20px;
    }

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

    .social-links a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #1e1e1e;
        color: #ff7a00;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        font-size: 20px;
        font-weight: normal;
        margin: 0;
        transition: 0.3s ease;
        border: 1px solid #2a2a2a;
    }

        .social-links a:hover {
            background: #ff7a00;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 122, 0, 0.35);
        }

@media (max-width: 800px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .our-story h2 {
        font-size: 26px;
    }

    .our-story p {
        font-size: 16px;
    }

    .cta-follow h2 {
        font-size: 24px;
    }

    .cta-follow p {
        font-size: 14px;
    }
}



/* ================================= */
/* DEVLOG PAGE */
/* ================================= */

.devlog-load-more {
    text-align: center;
    margin-top: 40px;
}

#loadMore {
    background: #ff7a00;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

    #loadMore:hover {
        background: #ff8c1a;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 122, 0, 0.5);
    }



/* ================================= */
/* CONTACT PAGE */
/* ================================= */

.contact-section {
    padding: 80px 20px;
    text-align: center;
}

    .contact-section h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

.contact-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: #ccc;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    text-align: left;
}

    .contact-info h2 {
        margin-bottom: 15px;
    }

    .contact-info p {
        margin-bottom: 15px;
        line-height: 1.6;
        color: #ccc;
    }

.email {
    font-weight: bold;
    color: #ff7a00;
}

.contact-card {
    max-width: 560px;
    margin: 40px auto;
    padding: 35px;
    background: #1b1b1b;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

    .form-row input {
        flex: 1;
    }

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #ff7a00;
        box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.15);
    }

.contact-form textarea {
    resize: none;
    min-height: 140px;
}

.contact-form button {
    align-self: center;
    background: #ff7a00;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s ease;
}

    .contact-form button:hover {
        background: #ff8f2b;
        transform: translateY(-2px);
    }

    .contact-form button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-form button {
        width: 100%;
        align-self: center;
    }
}



/* ================================= */
/* PROJECT WHISKERS OF WAR PAGE */
/* ================================= */

.game-hero {
    margin-top: 120px;
    width: 100%;
}

.hero-frame {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    background: #0f0f0f;
    aspect-ratio: 14 / 5;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    padding: 70px 0 100px 80px;
    max-width: 100%;
}

.hero-copy {
    max-width: 520px;
    width: 42%;
}

    .hero-copy h1 {
        font-size: clamp(20px, 3vw, 44px);
        margin-bottom: 8px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        line-height: 0.95;
    }

    .hero-copy .tagline {
        font-size: clamp(14px, 1.6vw, 22px);
        margin-bottom: 10px;
        color: #ff7a00;
        line-height: 1.25;
    }

    .hero-copy .status {
        font-size: clamp(12px, 1.1vw, 16px);
        color: #aaa;
        margin-bottom: 24px;
    }

.cta-button {
    background: #ff7a00;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
    max-width: 100%;
}

    .cta-button:hover {
        background: #ff8c1a;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 122, 0, 0.5);
    }

.gameplay-section {
    padding: 80px 0;
    background: #0f0f0f;
    width: 100%;
    overflow-x: hidden;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.gameplay-card {
    background: #181818;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
    min-width: 0;
}

    .gameplay-card:hover {
        transform: translateY(-8px);
        background: #202020;
    }

.gameplay-thumb {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 1000px) {
    .gameplay-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-copy {
        width: 48%;
        max-width: 430px;
    }
}

@media (max-width: 800px) {
    .hero-overlay {
        padding: 70px 0 5% 4%;
    }

    .hero-copy {
        width: 52%;
        max-width: 360px;
    }

        .hero-copy h1 {
            font-size: 20px;
        }

        .hero-copy .tagline {
            font-size: 15px;
        }

        .hero-copy .status {
            font-size: 13px;
            margin-bottom: 18px;
        }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .hero-copy {
        width: 58%;
        max-width: 260px;
    }

        .hero-copy h1 {
            font-size: 24px;
        }

        .hero-copy .tagline {
            font-size: 12px;
            margin-bottom: 8px;
        }

        .hero-copy .status {
            font-size: 11px;
            margin-bottom: 14px;
        }

    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .gameplay-grid {
        grid-template-columns: 1fr;
    }

    .gameplay-card {
        width: 100%;
    }

    .gameplay-thumb {
        height: 200px;
    }
}