.header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b0828;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}   

.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: -36px;
    margin-right: 5px;
}

.logo img {
    width: 100px;
    height: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #fff;
}

.prices-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #0b0828 0%, #1a1640 100%);
    min-height: calc(100vh - 80px);
    box-sizing: border-box;
}

.prices-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: bold;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.room-card.featured {
    border: 3px solid #667eea;
}

.room-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.room-content {
    padding: 30px;
}

.room-name {
    font-size: 28px;
    font-weight: bold;
    color: #0b0828;
    margin-bottom: 15px;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.room-image-content {
    transform: scale(2);
}

.price-amount {
    font-size: 42px;
    font-weight: bold;
    color: #667eea;
}

.price-period {
    color: #666;
    font-size: 16px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: right;
}

.room-features li {
    padding: 10px 0;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-features li::before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
}

.room-size {
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.book-button {
    width: 100%;
    background: #667eea;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'arab';
}

.book-button:hover {
    background: #5568d3;
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
}

.room-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }
}

