/* Page Header */
.page-header h1 {
    padding-left: 50px;
}

.page-header hr {
    border-color: #000;
}

/* Card */
.marriage-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.marriage-card:hover {
    transform: scale(1.03);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}

/* Card Image */
.card-img-container {
    position: relative;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-img-top:hover {
    transform: scale(1.1);
}

/* Special Badge */
.special-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6b5c;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Card Content */
.card-body {
    padding: 1rem 1.25rem;
}

.hall-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hall-description {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    background: #e6681e;
    color: #fff;
    border-radius: 2rem;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg,#ff3d2f,#ff6b5c);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Pagination */
.pagination .page-link {
    color: #e6681e;
    border: 1px solid #e6681e;
    border-radius: 6px;
    margin-left:10px;
}

.pagination .page-item.active .page-link {
    background-color: #e6681e;
    color: #fff;
    border-color: #e6681e;
}

/* Add gap between pagination numbers */
.pagination .page-item {
    margin: 0 5px; /* Adjust the value as needed */
}
