/* ============================================
   ACCOMMODATION PAGE ONLY - Само за accommodation.html
   ============================================ */
.contact-hero {
    background-image: url('../images/accomodation/accomodation-header.jpg');
}
/* Rooms Grid */
.accommodation {
    padding: 100px 50px;
    background: #0f0f0f;
    position: relative;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.room-card {
    background: linear-gradient(135deg, #3d3020 0%, #5a4a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 85, 0.1), rgba(245, 230, 211, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.room-card:hover::before {
    opacity: 1;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 168, 85, 0.3);
}

/* Room Image Slider */
.room-image-slider {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #000;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider-container img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 168, 85, 0.8);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.room-card:hover .slider-btn {
    opacity: 1;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-btn:hover {
    background: rgba(212, 168, 85, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #d4a855;
    width: 25px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Room Content */
.room-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-header {
    margin-bottom: 15px;
}

.room-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d4a855;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Room Badges */
.room-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.badge {
    padding: 5px 12px;
    background: rgba(212, 168, 85, 0.2);
    color: #d4a855;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 168, 85, 0.3);
}

.badge.success {
    background: rgba(76, 175, 80, 0.2);
    color: #81C784;
    border-color: rgba(76, 175, 80, 0.3);
}

.badge.featured {
    background: linear-gradient(135deg, #d4a855, #f5e6d3);
    color: #2a1f10;
    border: none;
    animation: pulse-badge 2s ease-in-out infinite;
}

.badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2a1f10;
    border: none;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.room-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Room Features */
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.room-features span {
    padding: 6px 12px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 15px;
    font-size: 13px;
    color: #ccc;
    border: 1px solid rgba(212, 168, 85, 0.2);
}

.room-price {
    font-size: 32px;
    font-weight: bold;
    color: #f5e6d3;
    margin-bottom: 20px;
}

.price-unit {
    font-size: 16px;
    font-weight: normal;
    color: #ccc;
}

.book-button {
    margin-top: auto;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4a855, #f5e6d3);
    border: 1px solid rgba(212, 168, 85, 0.2);
    color: #2a1f10;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    align-self: flex-start;
}

.book-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.book-button:hover::before {
    width: 300px;
    height: 300px;
}

.book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 168, 85, 0.4);
}

/* Featured/Premium Cards */
.room-card.featured {
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.room-card.premium {
    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* Responsive за Accommodation Page */
@media (max-width: 768px) {
    .accommodation {
        padding: 60px 20px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}
