/*
Theme Name:   Reuban Stay
Theme URI:    https://ruebanstay.com
Description:  Astra child theme for Reuban Stay homestay booking website.
Author:       Rueban Stay
Author URI:   https://ruebanstay.com
Template:     astra
Version:      1.0.0
Text Domain:  rueban-stay
Tags:         custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   Brand Color Variables
   ========================================================================== */

:root {
    --rs-primary:       #44027C;
    --rs-primary-dark:  #2e0157;
    --rs-primary-light: #6b2fa0;
    --rs-secondary:     #0566B7;
    --rs-secondary-dark:#044d8a;
    --rs-secondary-light:#2884d4;
    --rs-dark:          #000000;
    --rs-text:          #1a1a1a;
    --rs-text-light:    #555555;
    --rs-bg-light:      #f8f5fc;
    --rs-bg-white:      #ffffff;
    --rs-border:        #e0d6eb;
    --rs-success:       #2e7d32;
    --rs-warning:       #f57c00;
    --rs-error:         #c62828;
    --rs-gold:          #c9a84c;
    --rs-radius:        8px;
    --rs-radius-lg:     16px;
    --rs-shadow:        0 2px 12px rgba(68, 2, 124, 0.10);
    --rs-shadow-hover:  0 6px 24px rgba(68, 2, 124, 0.18);
    --rs-transition:    all 0.25s ease;
}

/* ==========================================================================
   Base Overrides
   ========================================================================== */

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--rs-text);
    background-color: var(--rs-bg-white);
}

a {
    color: var(--rs-secondary);
    text-decoration: none;
    transition: var(--rs-transition);
}

a:hover {
    color: var(--rs-primary);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header,
.ast-header-break-point .main-header-bar,
#masthead {
    background-color: var(--rs-primary) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Fix: push page content below the header on non-hero pages.
   Astra transparent header floats over content when enabled — add offset to clear it. */
.ast-inherit-site-logo-transparent .site-content {
    padding-top: 80px;
}

/* Properties listing page — hide the Astra entry-header since we render our own banner */
.page .entry-header:has(+ .entry-content .rs-listing-header),
.page:has(.rs-listing-header) .entry-header {
    display: none !important;
}

/* Ensure the listing page content area has no extra top padding that would double-space */
.page:has(.rs-listing-header) .entry-content {
    padding-top: 0 !important;
}
.page:has(.rs-listing-header) .entry-content > .rs-listing-header {
    margin-top: 0;
}

.site-title a,
.ast-site-identity .site-title a {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.site-description {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.8rem;
}

/* Navigation */
.main-navigation a,
.ast-main-header-bar-alignment .main-header-bar-navigation a,
#site-navigation a {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--rs-radius);
    transition: var(--rs-transition);
}

.main-navigation a:hover,
#site-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: #ffffff !important;
    background-color: rgba(255,255,255,0.15) !important;
}

/* Book Now button in nav */
.nav-book-now,
.menu-item-book-now > a {
    background-color: var(--rs-secondary) !important;
    color: #ffffff !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: var(--rs-transition) !important;
}

.nav-book-now:hover,
.menu-item-book-now > a:hover {
    background-color: var(--rs-secondary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 102, 183, 0.35) !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.wp-block-button__link,
.ast-button,
.button,
button[type="submit"],
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button {
    background-color: var(--rs-primary);
    color: #ffffff;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer;
    transition: var(--rs-transition) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.wp-block-button__link:hover,
.ast-button:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: var(--rs-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 2, 124, 0.3) !important;
}

/* Secondary / outline button */
.button-secondary,
.btn-outline {
    background-color: transparent !important;
    color: var(--rs-primary) !important;
    border: 2px solid var(--rs-primary) !important;
}

.button-secondary:hover,
.btn-outline:hover {
    background-color: var(--rs-primary) !important;
    color: #ffffff !important;
}

/* CTA / Book Now button */
.btn-book-now,
.wp-block-button.is-style-book-now .wp-block-button__link {
    background: linear-gradient(135deg, var(--rs-primary), var(--rs-secondary)) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(68, 2, 124, 0.25);
}

.btn-book-now:hover {
    box-shadow: 0 8px 25px rgba(68, 2, 124, 0.4) !important;
    transform: translateY(-3px) !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.rs-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(68,2,124,0.85) 0%, rgba(5,102,183,0.75) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 4rem 2rem;
}

.rs-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.rs-hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rs-hero__search-bar {
    background: rgba(255,255,255,0.95);
    border-radius: var(--rs-radius-lg);
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--rs-shadow-hover);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

/* ==========================================================================
   Property / Room Cards
   ========================================================================== */

.rs-room-card {
    background: var(--rs-bg-white);
    border-radius: var(--rs-radius-lg);
    overflow: hidden;
    box-shadow: var(--rs-shadow);
    transition: var(--rs-transition);
    border: 1px solid var(--rs-border);
}

.rs-room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rs-shadow-hover);
}

.rs-room-card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.rs-room-card__body {
    padding: 1.5rem;
}

.rs-room-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rs-primary);
    margin-bottom: 0.5rem;
}

.rs-room-card__price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--rs-secondary);
    margin-bottom: 1rem;
}

.rs-room-card__price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--rs-text-light);
}

.rs-room-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rs-amenity-badge {
    background: var(--rs-bg-light);
    color: var(--rs-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--rs-border);
}

/* ==========================================================================
   Property Listing Cards  [rs_properties]
   ========================================================================== */

.rs-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rs-property-card {
    background: var(--rs-bg-white);
    border-radius: var(--rs-radius-lg);
    overflow: hidden;
    box-shadow: var(--rs-shadow);
    transition: var(--rs-transition);
    border: 1px solid var(--rs-border);
}

.rs-property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rs-shadow-hover);
}

.rs-property-card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.rs-property-card__image--placeholder {
    background: linear-gradient(135deg, var(--rs-primary) 0%, var(--rs-secondary) 100%);
}

.rs-property-card__body {
    padding: 1.5rem;
}

.rs-property-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rs-primary);
    margin-bottom: 0.4rem;
}

.rs-property-card__title a {
    color: inherit;
    text-decoration: none;
}

.rs-property-card__title a:hover {
    color: var(--rs-primary-light);
}

.rs-property-card__location {
    font-size: 0.875rem;
    color: var(--rs-text-light);
    margin-bottom: 0.75rem;
}

.rs-property-card__meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.rs-property-card__price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--rs-secondary);
    margin-bottom: 1rem;
}

.rs-property-card__price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--rs-text-light);
}

/* Property Detail — Hero
   ========================================================================== */

.rs-property-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: var(--rs-radius-lg);
    margin-bottom: 2rem;
}

.rs-property-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rs-property-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
}

.rs-property-hero__title {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Property Detail — Info bar
   ========================================================================== */

.rs-property-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: var(--rs-bg-light);
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.rs-property-info-bar__item {
    font-size: 0.9rem;
    color: var(--rs-text);
}

.rs-property-info-bar__item strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rs-primary);
    margin-bottom: 0.2rem;
}

.rs-property-info-bar__item a {
    color: var(--rs-secondary);
    text-decoration: none;
}

.rs-property-info-bar__item a:hover {
    text-decoration: underline;
}

/* Property Detail — Whole-property CTA
   ========================================================================== */

.rs-property-whole-cta {
    background: var(--rs-bg-light);
    border: 2px solid var(--rs-primary);
    border-radius: var(--rs-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 600px) {
    .rs-property-hero { height: 260px; }
    .rs-property-hero__title { font-size: 1.4rem; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; }
    .rs-properties-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Availability Calendar
   ========================================================================== */

.mphb_sc_calendar,
.mphb-calendar {
    border-radius: var(--rs-radius);
    overflow: hidden;
    border: 1px solid var(--rs-border);
}

.mphb-calendar th {
    background-color: var(--rs-primary) !important;
    color: #ffffff !important;
}

.mphb-calendar .mphb-calendar__day--available:hover {
    background-color: var(--rs-secondary-light) !important;
    color: #ffffff !important;
}

.mphb-calendar .mphb-calendar__day--selected,
.mphb-calendar .mphb-calendar__day--in-range {
    background-color: var(--rs-primary) !important;
    color: #ffffff !important;
}

/* ==========================================================================
   Booking Form
   ========================================================================== */

.mphb_sc_search-wrap,
.mphb-booking-form {
    background: var(--rs-bg-light);
    border-radius: var(--rs-radius-lg);
    padding: 2rem;
    border: 1px solid var(--rs-border);
}

.mphb_sc_search-wrap label,
.mphb-booking-form label {
    font-weight: 600;
    color: var(--rs-primary);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: block;
}

.mphb_sc_search-wrap input,
.mphb_sc_search-wrap select,
.mphb-booking-form input,
.mphb-booking-form select {
    border: 1.5px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 0.65rem 1rem;
    width: 100%;
    font-size: 0.95rem;
    transition: var(--rs-transition);
}

.mphb_sc_search-wrap input:focus,
.mphb-booking-form input:focus,
.mphb_sc_search-wrap select:focus,
.mphb-booking-form select:focus {
    border-color: var(--rs-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(68,2,124,0.1);
}

.mphb-book-button,
.mphb_sc_search-submit input {
    background: linear-gradient(135deg, var(--rs-primary), var(--rs-secondary)) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.85rem 2.5rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: var(--rs-transition) !important;
    width: 100%;
}

/* ==========================================================================
   Booking Summary / Confirmation
   ========================================================================== */

.rs-booking-summary {
    background: var(--rs-bg-light);
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius-lg);
    padding: 2rem;
}

.rs-booking-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rs-border);
    font-size: 0.95rem;
}

.rs-booking-summary__row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--rs-primary);
}

.rs-booking-confirmed {
    text-align: center;
    padding: 3rem 2rem;
}

.rs-booking-confirmed__icon {
    width: 80px;
    height: 80px;
    background: var(--rs-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.rs-booking-ref {
    background: var(--rs-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin: 1rem 0;
}

/* ==========================================================================
   Amenities Grid
   ========================================================================== */

.rs-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.rs-amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--rs-bg-light);
    border-radius: var(--rs-radius);
    border: 1px solid var(--rs-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rs-text);
    text-align: center;
}

.rs-amenity-item svg,
.rs-amenity-item img {
    width: 28px;
    height: 28px;
    color: var(--rs-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer,
#colophon {
    background-color: var(--rs-dark) !important;
    color: rgba(255,255,255,0.8) !important;
}

.site-footer a {
    color: rgba(255,255,255,0.7);
    transition: var(--rs-transition);
}

.site-footer a:hover {
    color: var(--rs-gold);
}

.rs-footer__brand-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
}

.rs-footer__tagline {
    color: var(--rs-gold);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.rs-footer__heading {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--rs-primary);
}

.rs-footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.rs-footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--rs-transition);
}

.rs-footer__social a:hover {
    background: var(--rs-primary);
    transform: translateY(-2px);
}

.rs-footer__copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* ==========================================================================
   Guest Portal
   ========================================================================== */

.rs-guest-portal {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.rs-portal-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--rs-border);
    padding-bottom: 1rem;
}

.rs-portal-nav__item {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rs-text-light);
    cursor: pointer;
    transition: var(--rs-transition);
}

.rs-portal-nav__item.active,
.rs-portal-nav__item:hover {
    background: var(--rs-primary);
    color: white;
}

.rs-booking-list-item {
    background: white;
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--rs-transition);
}

.rs-booking-list-item:hover {
    box-shadow: var(--rs-shadow);
    border-color: var(--rs-primary);
}

.rs-status-badge {
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rs-status-badge--confirmed {
    background: #e8f5e9;
    color: var(--rs-success);
}

.rs-status-badge--pending {
    background: #fff3e0;
    color: var(--rs-warning);
}

.rs-status-badge--cancelled {
    background: #ffebee;
    color: var(--rs-error);
}

.rs-status-badge--completed {
    background: #e3f2fd;
    color: var(--rs-secondary);
}

/* ==========================================================================
   Forms (Login, Register, Profile)
   ========================================================================== */

.rs-form-card {
    background: white;
    border-radius: var(--rs-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--rs-shadow);
    border: 1px solid var(--rs-border);
    max-width: 480px;
    margin: 2rem auto;
}

.rs-form-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rs-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.rs-form-card__subtitle {
    color: var(--rs-text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.rs-form-group {
    margin-bottom: 1.25rem;
}

.rs-form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rs-text);
    margin-bottom: 0.4rem;
    display: block;
}

.rs-form-group input,
.rs-form-group select,
.rs-form-group textarea {
    width: 100%;
    border: 1.5px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--rs-transition);
    box-sizing: border-box;
}

.rs-form-group input:focus,
.rs-form-group select:focus,
.rs-form-group textarea:focus {
    border-color: var(--rs-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(68,2,124,0.1);
}

/* ==========================================================================
   Razorpay / Payment Section
   ========================================================================== */

.rs-payment-section {
    background: var(--rs-bg-light);
    border-radius: var(--rs-radius-lg);
    padding: 2rem;
    border: 1px solid var(--rs-border);
}

.rs-payment-methods {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.rs-payment-method-badge {
    background: white;
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rs-text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rs-razorpay-seal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--rs-text-light);
    margin-top: 1rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.rs-section {
    padding: 5rem 0;
}

.rs-section--light {
    background-color: var(--rs-bg-light);
}

.rs-section__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--rs-primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

.rs-section__title span {
    color: var(--rs-secondary);
}

.rs-section__subtitle {
    text-align: center;
    color: var(--rs-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.rs-section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--rs-primary), var(--rs-secondary));
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.rs-testimonial {
    background: white;
    border-radius: var(--rs-radius-lg);
    padding: 2rem;
    box-shadow: var(--rs-shadow);
    border-left: 4px solid var(--rs-primary);
}

.rs-testimonial__text {
    font-style: italic;
    color: var(--rs-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.rs-testimonial__author {
    font-weight: 700;
    color: var(--rs-primary);
}

.rs-stars {
    color: var(--rs-gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .rs-hero__search-bar {
        flex-direction: column;
    }

    .rs-booking-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .rs-amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .rs-portal-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .rs-form-card {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* ==========================================================================
   Rooms — Hide author & date meta
   ========================================================================== */

.post-type-archive-rs_room .entry-meta,
.single-rs_room .entry-meta,
.post-type-archive-rs_room .posted-on,
.single-rs_room .posted-on,
.post-type-archive-rs_room .byline,
.single-rs_room .byline,
.post-type-archive-rs_room .ast-blog-single-element.posted-on,
.single-rs_room .ast-blog-single-element.posted-on,
.post-type-archive-rs_room .ast-blog-single-element.byline,
.single-rs_room .ast-blog-single-element.byline, 
.posted-on {
    display: none !important;
}
