/* public/css/custom.css */

.card img {
    height: 180px;           /* Increase or decrease as needed */
    object-fit: contain;
    margin-top: 20px;
    width: 100%;             /* Ensure full width inside card */
}

.card {
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.hover-scale {
  transition: transform .2s, box-shadow .2s;
}
.hover-scale:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

footer a.text-white:hover {
    color: #0dcaf0; /* Light blue on hover */
    text-decoration: underline;
}

/* Add this at bottom of custom.css */
.btn-book {
    background: linear-gradient(135deg, #1f2123, #263337);
    border: none;
    border-radius: 40px;
    color: #ffffff !important;   /* ✅ Ensures white text */
    font-weight: 700;            /* ✅ Bolder text */
    font-size: 1rem;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(61, 70, 79, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}


.btn-book:hover {
    background: linear-gradient(135deg, #17191b, #1b222a);
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(61, 70, 79, 0.3);
}

.location-option {
    cursor: pointer;
    transition: background 0.2s;
}

.location-option:hover {
     background-color: #f0f0f0;
}

.price-summary-box {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.price-summary-box .line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
