/* Photography Page Styles */

/* Photography intro section */
.first-photo-section {
    padding-top: 40px;
    padding-bottom: 30px;
}

.photo-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.photo-intro h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.photo-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Featured photos section */
.featured-photos h2 {
    margin-bottom: 0;
}

.photos-grid {
    column-count: 2;
    column-gap: 8px;
    /* Compact bento-box style */
    margin-top: 0rem;
}

.photo-item {
    break-inside: avoid;
    margin-bottom: 8px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.photo-container {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.photo-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.photo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.photo-item:hover .photo-image {
    transform: scale(1.03);
}

/* Hide captions for denser layout */
.photo-content {
    display: none;
}

/* Flickr section */
.flickr-section {
    padding: 5px 0;
    text-align: center;
}

.flickr-link-container {
    max-width: 500px;
    margin: 0 auto;
}

.flickr-link-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.flickr-link-container p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.flickr-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.flickr-link:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#photo-title {
    margin-top: 5px;
}

.flickr-link .project-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.photo-intro {
    margin-top: 10px;
    line-height: 1.1;
    font-size: 13px;
    margin-bottom: 1.5rem;
}

/* Responsive design */
@media (min-width: 768px) {

    /* Featured photos section */
    .featured-photos h2 {
        margin-bottom: 0rem;
    }

    .photo-intro {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }

    .photos-grid {
        column-count: 3;
        column-gap: 12px;
    }

    .photo-item {
        margin-bottom: 12px;
    }
}

@media (min-width: 1224px) {
    .photo-intro h1 {
        font-size: 3rem;
    }

    .photo-subtitle {
        font-size: 1.2rem;
    }

    .photos-grid {
        column-count: 4;
        column-gap: 12px;
    }
}