@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0;
    --accent-green: #99cc33;
    --accent-blue: #4a9eff;
    --header-bg: rgba(10, 14, 20, 0.95);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
}

.section-title {
    margin-bottom: 4.5rem;
    text-align: center;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles moved to header.css */

/* Nav styles moved to header.css */


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
    /* Solid base */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('gallery/gravity-games/G2ames-1920x1080-6-scaled.jpg') center/cover no-repeat;
    opacity: 0.85;
    /* Increased prominence */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    transform: translateY(12vh);
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-content .tagline {
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    color: var(--accent-green);
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Gallery styles removed and moved to gallery.css */

/* Footer */
footer {
    background: #000000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    list-style: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--accent-blue);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: #050505;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    background: #111;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: block;
}

.project-item:hover {
    background: #1a1a1a;
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.project-icon-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.project-icon {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.project-item.status-under_construction .project-icon {
    filter: grayscale(0.5) opacity(0.8);
}

.project-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--accent-green);
}

.project-item p {
    color: var(--text-secondary);
    margin: 0;
}

.project-item.status-under_construction {
    position: relative;
    border-color: rgba(255, 165, 0, 0.3);
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffa500;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.project-item.status-under_construction:hover {
    border-color: #ffa500;
}

.project-item.status-under_construction h3 {
    color: #ffa500;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    nav ul {
        display: none;
    }

    /* Mobile menu simplified for pure CSS */
}