.heritage-section {
    position: relative;
    min-height: 99vh;
    background-image: url("/assests/Hr-Arham-garden-and-resort/room1.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
}

/* Dark overlay */
.heritage-overlay {
    position: absolute;
    inset: 0;
}

/* Text */
.heritage-title {
  font-size: 64px;
  font-weight: 700;
  font-family: "Georgia", serif;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 30%;
}

.heritage-subtitle {
  font-size: 18px;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto;
  color: #ffd857;
}

/* Tablet */
@media (max-width: 991px) {
    .heritage-title {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .heritage-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .heritage-title {
        font-size: 34px;
    }

    .heritage-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
}


.discover-section {
    background: #f3f3f3;
}

/* Title */
.discover-title {
    font-family: "Georgia", serif;
    font-size: 36px;
    font-weight: 400;
    color: #b8a632;
}

/* Card */
.discover-card {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

/* Image */
.discover-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Content Box */
.discover-content {
    background: #fff;
    width: 85%;
    margin: -60px auto 0;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.discover-content h5 {
    font-family: "Georgia", serif;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Button */
.discover-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.discover-btn:hover {
    background: #b8a632;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .discover-title {
        font-size: 26px;
    }

    .discover-img {
        height: 240px;
    }

    .discover-content {
        margin-top: -40px;
    }
}