/**
 * Album Styles for AMF Theme
 */

/* Album Archive Styles */
.albums-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.albums-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.albums-archive-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

/* Album Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Album Card */
.album-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.album-card-link {
    text-decoration: none;
    color: inherit;
}

.album-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.album-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-cover-image {
    transform: scale(1.05);
}

.album-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.image-count {
    font-size: 14px;
    font-weight: 500;
}

.album-card-content {
    padding: 20px;
}

.album-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.album-card-date {
    font-size: 14px;
    color: #666;
}

/* Single Album Styles */
.single-album-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-album-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-album-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.single-album-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.single-album-meta i {
    margin-right: 8px;
    color: #FF001B;
}

.single-album-description {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #444;
}

/* Album Gallery */
.album-gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #fff;
}

.gallery-item {
    border: 1px solid #ffffff;
    position: relative;
}

.gallery-item a {
    display: block;
    width: 100%;
}

.gallery-item img {
    max-width: 100%;
    display: block;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Album Navigation */
.album-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.album-nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    color: #FF001B;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.nav-title {
    font-weight: 600;
    font-size: 16px;
} 