/* Projects Grid */
.projects-page {
    padding: 60px 0;
}

.projects-grid {
    margin-top: 40px;
}

.project-card {
    display: block;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card__image {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.project-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.05);
}

.project-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__info {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-card__info {
    transform: translateY(0);
}

.project-card__year {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #D4B78F;
}

.project-card__title {
    font-size: 18px;
    margin: 0 0 10px;
    color: #fff;
}

.project-card__desc {
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

/* Project Detail */
.project-detail {
    padding: 60px 0;
}

.project-header {
    margin-bottom: 40px;
    text-align: center;
}

.project-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    color: #666;
}

.project-meta__item {
    display: inline-flex;
    align-items: center;
}

.project-gallery {
    margin-bottom: 50px;
}

.project-main-photo {
    margin-bottom: 30px;
}

.project-main-photo__img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-additional-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.project-gallery-item {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-gallery-item:hover {
    transform: translateY(-5px);
}

.project-gallery-item__img {
    width: 100%;
    height: auto;
    display: block;
}

.project-content {
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.project-back {
    text-align: center;
    margin-top: 40px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: #D4B78F;
    color: #fff;
    border-color: #D4B78F;
}