/* --- Общие стили --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Важно для z-index */
    z-index: 2; /* Поверх фона body и затемняющего слоя */
}

h1, h2, h3 {
    color: #333;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #fff; /* Белый цвет для заголовка hero */
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 1em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    margin-right: 10px;
    margin-top: 15px;
}

.btn:hover {
    background-color: #0056b3;
    color: #fff;
}

.btn-primary {
    background-color: #28a745; /* Пример другого цвета */
}

.btn-primary:hover {
    background-color: #218838;
}

/* --- Header --- */
header {
    background-color: rgba(255, 255, 255, 0.95); /* Полупрозрачный белый для шапки */
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1001; /* Выше, чем ::before у hero */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Высота вашего логотипа */
    /* Если логотип в images/, измените путь: src="images/logo.png" */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

#hero {
    /* background: url('hero-background.jpg') no-repeat center center/cover; */
    /* ЗАМЕНЯЕМ СТАРЫЙ ФОН */
    background: url('https://cdn.techinasia.com/wp-content/uploads/2015/01/elventales-gif.gif') no-repeat center center/cover; /* Ваш размытый GIF - ЗАМЕНИЛ АБСОЛЮТНЫЙ URL! */
    color: #fff;
    text-align: center;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Важно, чтобы GIF не выходил за границы */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Полупрозрачный темный слой */
    z-index: 1;
}

#hero .container {
    z-index: 2; /* Контент hero поверх ::before */
}

#hero h1 {
    font-size: 4.5em;
    margin-bottom: 0.2em;
}

#hero h2 {
    font-size: 2em;
    color: #fff; /* Белый цвет для h2 в hero */
    margin-bottom: 1em;
    font-weight: normal;
}

#hero p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 2em;
    color: #eee; /* Слегка осветленный текст */
}

/* --- Секции с белым фоном --- */
section {
    padding: 80px 0;
}

/* Белый фон для секций, чтобы они выделялись на GIF-фоне */
#about-studio,
#game-dev,
#contact {
    background-color: #ffffff;
    position: relative; /* Для z-index */
    z-index: 2; /* Выше фона body */
}

/* --- About Studio --- */
.studio-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.studio-image {
    flex: 1;
}

.studio-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.studio-text {
    flex: 2;
}

.studio-text h3 {
    margin-top: 0;
    color: #007bff;
}

/* --- Game Development --- */
.game-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.game-image {
    flex: 1;
}

.game-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.game-text {
    flex: 2;
}

.game-text h3 {
    color: #333;
    margin-top: 0;
}

.game-text p strong {
    color: #007bff;
}

.game-text ul {
    list-style: disc;
    padding-left: 20px;
}

.game-text li {
    margin-bottom: 10px;
}

.game-status {
    margin-top: 20px;
    padding: 15px;
    background-color: #d1ecf1;
    border-left: 4px solid #007bff;
    border-radius: 5px;
}

.game-status p {
    margin: 0 0 5px 0;
}

/* --- Contact --- */
.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

#form-message {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}

.contact-info {
    flex: 1;
    padding-left: 20px;
}

.contact-info h3 {
    color: #007bff;
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    font-weight: bold;
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    position: relative; /* Для z-index */
    z-index: 2; /* Выше фона body */
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2em;
    }
    .container {
        width: 95%;
    }
    header .container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li {
        margin: 5px 15px;
    }
    #hero {
        padding: 80px 0;
        min-height: 350px;
    }
    #hero h1 {
        font-size: 3em;
    }
    .studio-content,
    .game-content,
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
    .studio-image,
    .game-image,
    .contact-form,
    .contact-info {
        flex: none;
        width: 100%;
    }
    .contact-info {
        padding-left: 0;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    nav ul li {
        margin: 5px;
    }
}