/* Portfolio Page Specific Styles */

/* Hero Section - Portfolio specific */
.hero {
    min-height: 60vh;
    background: linear-gradient(rgba(45, 74, 43, 0.6), rgba(45, 74, 43, 0.4)), 
                url('images/IMG_1128.jpg') center/cover no-repeat;
}

/* Gallery Section */
.gallery {
    background: var(--white);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Image overlay effect */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(45, 74, 43, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Specific image backgrounds for gallery items */
.gallery-item:nth-child(1) {
    background: url('images/IMG_2981.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(2) {
    background: url('images/IMG_6404.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(3) {
    background: url('images/IMG_7828.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(4) {
    background: url('images/IMG_3711.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(5) {
    background: url('images/IMG_5051.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(6) {
    background: url('images/IMG_8169.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(7) {
    background: url('images/IMG_9300.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(8) {
    background: url('images/IMG_1128.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(9) {
    background: url('images/IMG_3720.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(10) {
    background: url('images/IMG_4005.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(11) {
    background: url('images/IMG_5442.jpg') center/cover no-repeat;
}

.gallery-item:nth-child(12) {
    background: url('images/IMG_8628.jpg') center/cover no-repeat;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(122, 142, 111, 0.1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Responsive adjustments for portfolio */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        min-height: 250px;
    }
} 