﻿/* Тільки при скролі змінюємо */
.main-menu.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0; /* менший padding */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* Project Section Overlay Styles */
.item {
    position: relative;
    overflow: hidden;
}

.item img {
    display: block;
    width: 100%;
    transition: transform 0.4s ease;
}

.item:hover img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(59, 76, 104, 0.9);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.item:hover .project-info {
    transform: translateY(0);
}

.project-info h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.project-info h4 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-info h4 a:hover {
    color: #f0a500;
}

.project-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #f0a500;
    transform: translateX(5px);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

#container {
    position: relative;
}

