/* ========================================
   LAMBANG PROVINSI JAWA TIMUR PAGE STYLING
   ======================================== */

/* Main Content Section */
.landmark-content-section {
    padding: 1rem 0 2rem 0;
    background: white;
    margin-top: -1rem;
}

/* Header Image */
.landmark-header-image {
    width: 100%;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.landmark-header-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Page Title */
.landmark-page-title {
    margin-bottom: 1.25rem;
    text-align: left;
}

.landmark-title-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

/* Landmark Items Grid */
.landmark-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.landmark-item-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.landmark-item-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.landmark-item-content {
    padding: 1rem;
}

.landmark-item-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.landmark-item-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    flex-shrink: 0;
    line-height: 1.2;
}

.landmark-item-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.landmark-item-description {
    color: #374151;
    line-height: 1.5;
    font-size: 0.875rem;
}

.landmark-item-description p {
    margin: 0;
    line-height: 1.6;
}

/* Footer Section */
.landmark-footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.landmark-footer-left {
    display: flex;
    align-items: center;
}

.landmark-footer-right {
    display: flex;
    align-items: center;
}

.landmark-share-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landmark-share-label {
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
}

.landmark-share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landmark-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.landmark-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.landmark-share-btn.facebook {
    background: #1877f2;
}

.landmark-share-btn.facebook:hover {
    background: #166fe5;
}

.landmark-share-btn.twitter {
    background: #1da1f2;
}

.landmark-share-btn.twitter:hover {
    background: #1a91da;
}

.landmark-share-btn.link {
    background: #6b7280;
}

.landmark-share-btn.link:hover {
    background: #4b5563;
}

.landmark-back-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d5a9c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.landmark-back-home:hover {
    background-color: #f0f4ff;
    color: #1e3a5f;
}

.landmark-back-home i {
    font-size: 0.75rem;
}

/* Empty State */
.landmark-empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.landmark-empty-icon {
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.landmark-empty-icon i {
    font-size: 3rem;
}

.landmark-empty-text {
    font-size: 1rem;
    color: #64748b;
}

/* Toast Notification */
.landmark-toast {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #1f2937;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 992px) {
    .landmark-content-section {
        padding: 1.25rem 0 2.5rem 0;
        margin-top: 1.25rem;
    }
    
    .landmark-header-image {
        margin-bottom: 1.5rem;
    }
    
    .landmark-page-title {
        margin-bottom: 1.5rem;
    }
    
    .landmark-title-text {
        font-size: 1.75rem;
    }
    
    .landmark-items-grid {
        gap: 1.25rem;
    }
    
    .landmark-item-content {
        padding: 1.25rem;
    }
    
    .landmark-item-number {
        font-size: 1.375rem;
    }
    
    .landmark-item-subtitle {
        font-size: 1.0625rem;
    }
    
    .landmark-item-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 991.98px) {
    .landmark-content-section {
        margin-top: -0.75rem;
    }
    
    .landmark-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .landmark-content-section {
        padding: 0.75rem 0 2rem 0;
        margin-top: -0.5rem;
    }
    
    .landmark-header-image {
        margin-bottom: 1rem;
        border-radius: 6px 6px 0 0;
    }
    
    .landmark-page-title {
        margin-bottom: 1rem;
    }
    
    .landmark-title-text {
        font-size: 1.25rem;
    }
    
    .landmark-items-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .landmark-item-content {
        padding: 1rem;
    }
    
    .landmark-item-header {
        gap: 0.625rem;
        margin-bottom: 0.625rem;
    }
    
    .landmark-item-number {
        font-size: 1.125rem;
    }
    
    .landmark-item-subtitle {
        font-size: 0.9375rem;
    }
    
    .landmark-item-description {
        font-size: 0.8125rem;
    }
    
    .landmark-footer-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .landmark-share-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .landmark-footer-right {
        width: 100%;
    }
    
    .landmark-back-home {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Classes */
.landmark-item-card.fade-in {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
