/* ===== VISUAL REFINEMENTS FOR PREMIUM LOOK ===== */

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--primary-gold);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--border-medium);
}

/* Room Details Hero */
.room-hero {
    height: 70vh; /* Taller hero */
    margin-top: -80px; /* Under navbar */
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); /* Modern angled cut */
}

.room-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

/* Room Title */
.room-title-lg {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

/* Gallery Thumbnails */
.gallery-thumb {
    height: 120px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    filter: grayscale(20%);
}

.gallery-thumb:hover, .gallery-thumb.active {
    filter: grayscale(0%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

/* Sticky Booking Bar */
.sticky-book-bar {
    border: none;
    box-shadow: var(--shadow-xl);
    background: #fff;
    border-top: 4px solid var(--primary-gold);
    padding: 2.5rem;
    z-index: 100;
}

.sticky-book-bar .form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.sticky-book-bar .form-control,
.sticky-book-bar .form-select {
    background: var(--bg-light);
    border: 1px solid transparent;
    padding: 1rem;
    font-weight: 500;
}

.sticky-book-bar .form-control:focus,
.sticky-book-bar .form-select:focus {
    background: #fff;
    border-color: var(--primary-gold);
    box-shadow: none;
}

/* Typography Polish */
h1, h2, h3 {
    color: var(--text-primary);
}

.lead {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Card Improvements */
.room-card {
    border: none;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.room-card .room-img-container {
    height: 300px; /* Taller card images */
}

.room-card .room-details {
    padding: 2.5rem;
    border-left: 1px solid var(--border-light);
}

/* Refined Buttons */
.btn-gold {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    border-radius: 2px; /* Sharpe/more elegant */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gold-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-gold:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #fff;
}

/* Premium Inputs */
.form-control, .form-select {
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.form-control:focus, .form-select:focus {
    background-color: #fff;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

/* Refined Amenity Tags */
.amenity-tag {
    background: #f9f9f9;
    border: 1px solid #eee;
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.amenity-tag:hover {
    border-color: var(--primary-gold);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
