
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
}
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95); /* semi-transparent white */
    background-color: #ffffff; /* solid white */
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}
/*
.logo {
    font-size: 1.75rem;
    font-weight: bold;
    align-items: center;
    gap: 0.5rem;
    color: #222;
}
    */
.logo-text {
    font-size: 1.75rem;
    font-weight: bold;
    color: #222;
    position: relative;
    top: -15px; /* Tweak as needed: 0.5px to 2px is usually enough */
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6600;
}

header img {
    height: 50px;
    margin-right: 15px;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    margin-right: 15px;
}
nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

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

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    text-align: center;
    background: rgba(0, 0, 0, 0); /* Optional: add background for readability */
    padding: 1.5rem 2rem;
    border-radius: 8px;
    max-width: 90%;
}

.hero-text h1 {
    font-size: 6rem;
    margin: 0.5rem 0;
    margin-bottom: 1.5rem;
    color: #fef9f3;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-text h2 {
    font-size: 4rem;
    margin: 0.5rem 0;
    margin-bottom: 1.5rem;
    color: #fef9f3;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-text p {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #fef9f3;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.intro {
    padding: 4rem 2rem;
    text-align: center;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 2rem;
    width: 280px;
    text-decoration: none;
    color: #222;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #fffcf5;
}

.games {
    padding: 4rem 2rem;
    text-align: center;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    color: #222;
}

.game-card:hover {
    transform: translateY(-5px);
    background: #fff9f2;
}

.game-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.game-link {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: #ff6600;
    font-weight: bold;
}

.screenshot-gallery {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-gallery h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
}

.art-gallery {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.art-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.art-gallery .subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.art-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fafafa;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.art-item img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.art-grid img:hover {
    transform: scale(2);
}

.caption {
    font-size: 1rem;
    color: #444;
    text-align: center;
}

.books-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.books-section .subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.book-card {
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.book-card:hover {
    transform: translateY(-5px);
    background: #fff9f2;
}

.book-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.book-card img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    background: #ddd;
}

.book-info {
    padding: 1rem;
    text-align: left;
}

.book-info h3 {
    margin: 0 0 0.5rem;
}

.book-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.in-progress {
    opacity: 0.75;
    pointer-events: none;
}

.models-gallery {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.models-gallery .subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, max-content));
    justify-content: center;
    gap: 2rem;
}

.model-card {
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    background: #fff9f2;
}

.model-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.model-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #ddd;
    max-width: 320px;
    margin: 0 auto;
}

.model-info {
    padding: 1rem;
    text-align: left;
}

.model-info h3 {
    margin: 0 0 0.5rem;
    color: black;
}

.model-info p {
    margin: 0;
    font-size: 0.95rem;
    color: black; 
}

.about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.05rem;
    color: whitesmoke;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    max-width: 200px;
    border-radius: 8px; 
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: whitesmoke;
    border-radius: 8px;
}

/* Make all form text and labels readable */
.hs-form label,
.hs-form legend,
.hs-form .hs-richtext,
.hs-form .hs-form-required,
.hs-form fieldset,
.hs-form div,
.hs-form span {
    color: #f0f0f0 !important;
}

/* Override link color if needed */
.hs-form a {
    color: #aeeaff !important;
    /* soft cyan or pick a light highlight */
    text-decoration: underline;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Optional: Input field styling already handled, but here’s a refresher */
.hs-form input,
.hs-form textarea,
.hs-form select {
    background-color: #2a2a2a !important;
    color: #f0f0f0 !important;
    border: 1px solid #555 !important;
}

.hs-form input::placeholder,
.hs-form textarea::placeholder {
    color: #ccc !important;
}

.hs-form .input .hs-form-checkbox {
    margin-bottom: 0.5rem; 
}