/* Dashboard Section */
.dashboard-section {
    padding: 8rem 0 5rem;
    background-color: var(--light-gray);
    min-height: calc(100vh - 80px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.user-welcome h2 {
    margin-bottom: 0.5rem;
}

.user-welcome h2:after {
    display: none;
}

.user-welcome p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery Stats */
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(201, 161, 62, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h3 {
    margin-bottom: 0.2rem;
    font-size: 2rem;
}

.stat-info p {
    margin-bottom: 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.gallery-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.media-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.media-count.video {
    left: auto;
    right: 10px;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.gallery-date {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-actions {
    display: flex;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Book More Section */
.book-more-section {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.book-more-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.book-more-content p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--dark-gray);
}

/* Change Password Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-dark);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .gallery-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .gallery-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .dashboard-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .dashboard-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
    }
}