/* Навигация */
.navbar {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-gold) 100%);
    box-shadow: 0 2px 10px rgba(139, 90, 43, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--warm-dark-brown) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 10px;
}

.nav-link {
    color: var(--warm-dark-brown) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--warm-brown) !important;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Герой-секция */
.hero-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-cream) 100%);
    padding: 4rem 0;
    border-bottom: 3px solid var(--warm-gold);
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23d4a373" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23e67e56" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="%23a3b18a" opacity="0.1"/></svg>');
    background-size: 200px;
    pointer-events: none;
    z-index: -1;
}

.hero-section h1 {
    color: var(--warm-dark-brown);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    color: var(--warm-brown);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Секции */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-terracotta), var(--warm-gold));
    border-radius: 2px;
}

.bg-warm-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-cream) 100%);
}

/* Футер */
footer {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--warm-dark-brown) 100%);
    color: var(--white);
    border-top: 3px solid var(--warm-gold);
    padding: 3rem 0 2rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--warm-gold);
}

footer a {
    color: var(--warm-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--warm-soft-orange);
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--warm-gold);
    transform: translateY(-3px);
}

/* Контактная информация */
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--warm-terracotta);
    margin-right: 10px;
    width: 20px;
}

/* Отзывы */
.review-card {
    border-left: 4px solid var(--warm-terracotta);
}

.rating-stars .fas {
    color: var(--warm-gold);
}

.rating-stars .far {
    color: #ddd;
}

/* Преимущества */
.advantage-card {
    text-align: center;
    padding: 2rem 1rem;
}

.advantage-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--warm-terracotta);
}

/* Портфолио */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}