﻿#heritage-section {
    overflow: hidden;
}

.mb-100 {
    margin-bottom: 60px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #f3a100;
    border-radius: 2px;
    margin-bottom: 20px;
}

.heritage-main-title {
    font-family: 'Playfair Display', serif;
    color: #1C3D5E;
    font-weight: 700;
}

.heritage-card-main, .heritage-card-vertical {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .heritage-card-main:hover, .heritage-card-vertical:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(28, 61, 94, 0.12) !important;
    }

.heritage-img-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    background: #000;
}

    .heritage-img-wrapper.v-small {
        height: 320px;
    }

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accent-line {
    width: 45px;
    height: 3px;
    background: #f3a100;
    margin-bottom: 20px;
}

.heritage-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1C3D5E;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

    .heritage-name.fs-2 {
        font-size: 1.8rem !important;
    }

.heritage-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.info-box {
    background: #fdfaf5;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1C3D5E;
    font-size: 0.85rem;
}

    .info-box i {
        color: #f3a100;
    }

    .info-box.full {
        grid-column: span 2;
    }

.btn-vr {
    display: inline-flex;
    align-items: center;
    background: #f3a100;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .btn-vr:hover {
        background: #1C3D5E;
        transform: translateX(5px);
        color: white;
    }

.vr-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.vr-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-close-vr {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    background: #f3a100;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .heritage-img-wrapper {
        height: 300px;
    }

    .heritage-name {
        font-size: 2rem;
    }

    .mb-100 {
        margin-bottom: 60px;
    }
}
