body {
    cursor: auto !important;
}

.cave-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0e6 0%, #e8ddd0 100%);
}

.cave-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}

.cave-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.cave-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.cave-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cave-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

.cave-detail-section {
    padding: 4rem 2rem;
    background-color: #faf8f5;
}

.cave-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cave-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.cave-description-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.info-title {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4c4a8;
}

.cave-description-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-indent: 2em;
}

.cave-description-text h3 {
    font-size: 1.3rem;
    color: #8b7355;
    margin: 2rem 0 1rem 0;
}

.cave-artifacts-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.artifacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

.artifact-card {
    background: #faf8f5;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e0d5;
}

.artifact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.artifact-card-with-image {
    display: flex;
    flex-direction: column;
}

.artifact-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

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

.artifact-info {
    padding: 1.5rem;
}

.artifact-info h3 {
    font-size: 1.2rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

.artifact-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.view-detail {
    display: inline-block;
    font-size: 0.9rem;
    color: #8b7355;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-detail:hover {
    color: #a67c52;
}

@media (max-width: 768px) {
    .cave-hero-title {
        font-size: 2.5rem;
    }
    
    .cave-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cave-detail-section {
        padding: 2rem 1rem;
    }
    
    .cave-description-card,
    .cave-artifacts-section {
        padding: 1.5rem;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
    
    .artifacts-grid {
        grid-template-columns: 1fr;
    }
}
