@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

/* Основные стили */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Цветовая палитра */
:root {
    --gold: #D4AF37;
    --dark-bg: #0a0a0a;
    --light-bg: #1a1a1a;
    --text-light: #f0f0f0;
    --text-muted: #aaa;
}

/* Заголовки */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Шапка сайта */
header {
    background-color: var(--light-bg);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold);
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

 a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

/* Секции */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://tint.creativemarket.com/tSccnBXRc5-N0e6giVAUPINamWp2fWa4ALMpgnL6v5w/width:1820/height:1213/gravity:ce/rt:fill-down/el:1/czM6Ly9maWxlcy5jcmVhdGl2ZW1hcmtldC5jb20vaW1hZ2VzL3NjcmVlbnNob3RzL3Byb2R1Y3RzLzQxMi80MTIxLzQxMjE1ODgvdjRka3VrbmdseHV2NnJicWRseWZqZXJidmZ1bWJkeGYyNWdtcDB6aXY3ZWtpZXJ2MHZtOHp6NXZhczBoa2tzeC1vLmpwZw?1709564632');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Секция "О нас" */
#about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

#about img {
    max-width: 45%;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

/* Карточки для услуг, цен и преимуществ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin: 10px 0;
}

/* Секция "Как мы работаем" */
.process-steps {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.step {
    max-width: 200px;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
}

/* Подвал */
footer {
    background-color: #000;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    border-top: 1px solid #333;
    color: var(--text-muted);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    nav {
        margin-top: 15px;
    }
    #about .container {
        flex-direction: column;
    }
    #about img {
        max-width: 100%;
        margin-top: 30px;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* --- СТИЛИ ДЛЯ КОНТАКТНОЙ ФОРМЫ --- */

#contacts {
    background-color: var(--dark-bg);
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    color: var(--text-muted);
    font-weight: bold;
}

form input,
form textarea {
    background-color: var(--light-bg);
    border: 1px solid #333;
    color: var(--text-light);
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

form button {
    background-color: var(--gold);
    color: var(--dark-bg);
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
}

form button:hover {
    background-color: #e6bf47; /* Более светлый оттенок золота при наведении */
    transform: translateY(-2px);
}