/* Hafa Homestay - Guest Styles */
:root {
    --primary: #0d6efd;
    --dark: #1a1a2e;
    --accent: #e6b800;
}

body {
    font-family: 'Inter', sans-serif;
    padding-top: 56px;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-section {
    display: flex;
    align-items: center;
}

.hover-shadow {
    transition: transform 0.2s, box-shadow 0.2s;
}
.hover-shadow:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.card-img-top {
    transition: transform 0.3s;
}
.card:hover .card-img-top {
    transform: scale(1.02);
}

/* Stripe Card Element */
.StripeElement {
    box-sizing: border-box;
    height: 44px;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    transition: box-shadow 150ms ease;
}
.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
    border-color: #86b7fe;
}
.StripeElement--invalid {
    border-color: #fa755a;
}

/* Guest Spinner (+/-) Controls */
.btn-spinner {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    transition: all 0.12s;
    padding: 0;
    user-select: none;
}
.btn-spinner:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}
.btn-spinner:active {
    transform: scale(0.92);
}
.spin-value {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    min-width: 20px;
    text-align: center;
}

/* Professional Booking Search Card */
.booking-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    overflow: hidden;
}
.booking-card .booking-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 4px;
}
.booking-card .booking-input {
    border: none;
    background: #f9fafb;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    padding: 10px 12px;
    width: 100%;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: background 0.15s;
}
.booking-card .booking-input:hover {
    background: #f3f4f6;
}
.booking-card .booking-input:focus {
    background: #eef2ff;
    box-shadow: 0 0 0 2px #2563eb;
}
.booking-card .border-end {
    border-color: #e5e7eb !important;
}
@media (max-width: 768px) {
    .booking-card .border-end {
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* Print */
@media print {
    .navbar, footer, .btn { display: none !important; }
    .main-content { margin-top: 0 !important; }
}
